diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.json b/descriptions/api.github.com/api.github.com.2022-11-28.json index 9e3326deeb..be57ad26b8 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions/api.github.com/api.github.com.2022-11-28.json @@ -7524,6 +7524,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -26979,6 +26982,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -35194,6 +35200,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -55972,6 +56029,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -86987,6 +87047,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -126726,6 +126837,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -309147,7 +309262,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -309372,7 +309488,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -326255,7 +326372,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -326413,7 +326531,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -326535,7 +326654,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -326681,7 +326801,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -339976,6 +340097,14 @@ ] } }, + "dependabot-alert-relationship": { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, "dependabot-alert-sort": { "name": "sort", "in": "query", diff --git a/descriptions/api.github.com/api.github.com.2022-11-28.yaml b/descriptions/api.github.com/api.github.com.2022-11-28.yaml index 8e09d49885..f3fb50bce0 100644 --- a/descriptions/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions/api.github.com/api.github.com.2022-11-28.yaml @@ -5768,6 +5768,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -20190,6 +20191,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-runtime-risk" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -26100,6 +26102,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -41362,6 +41405,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -63747,6 +63791,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -92781,6 +92866,10 @@ components: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, or for a multi-user + budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget to. @@ -231550,6 +231639,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -231734,6 +231824,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -246185,6 +246276,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -246304,6 +246396,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -246389,6 +246482,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -246495,6 +246589,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -258048,6 +258143,16 @@ components: enum: - development - runtime + dependabot-alert-relationship: + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string dependabot-alert-sort: name: sort in: query diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.json b/descriptions/api.github.com/api.github.com.2026-03-10.json index f6b0aa81f8..9527f4f0a7 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.json +++ b/descriptions/api.github.com/api.github.com.2026-03-10.json @@ -7524,6 +7524,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -26939,6 +26942,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -35153,6 +35159,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -55899,6 +55956,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -86910,6 +86970,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -126235,6 +126346,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -308388,7 +308503,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -308613,7 +308729,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -325485,7 +325602,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -325643,7 +325761,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -325765,7 +325884,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -325911,7 +326031,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -339116,6 +339237,14 @@ ] } }, + "dependabot-alert-relationship": { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, "dependabot-alert-sort": { "name": "sort", "in": "query", diff --git a/descriptions/api.github.com/api.github.com.2026-03-10.yaml b/descriptions/api.github.com/api.github.com.2026-03-10.yaml index 82e4d721bc..fbec46e368 100644 --- a/descriptions/api.github.com/api.github.com.2026-03-10.yaml +++ b/descriptions/api.github.com/api.github.com.2026-03-10.yaml @@ -5768,6 +5768,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -20157,6 +20158,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-runtime-risk" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -26069,6 +26071,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -41302,6 +41345,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -63679,6 +63723,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -92394,6 +92479,10 @@ components: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, or for a multi-user + budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget to. @@ -230863,6 +230952,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -231047,6 +231137,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -245488,6 +245579,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -245607,6 +245699,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -245692,6 +245785,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -245798,6 +245892,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -257266,6 +257361,16 @@ components: enum: - development - runtime + dependabot-alert-relationship: + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string dependabot-alert-sort: name: sort in: query diff --git a/descriptions/api.github.com/api.github.com.json b/descriptions/api.github.com/api.github.com.json index 81079c6ba2..a248592518 100644 --- a/descriptions/api.github.com/api.github.com.json +++ b/descriptions/api.github.com/api.github.com.json @@ -7538,6 +7538,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -27081,6 +27084,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -35373,6 +35379,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -56241,6 +56298,9 @@ { "$ref": "#/components/parameters/dependabot-alert-scope" }, + { + "$ref": "#/components/parameters/dependabot-alert-relationship" + }, { "$ref": "#/components/parameters/dependabot-alert-sort" }, @@ -87356,6 +87416,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -127466,6 +127577,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -311289,7 +311404,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -311514,7 +311630,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -328468,7 +328585,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -328626,7 +328744,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -328748,7 +328867,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -328894,7 +329014,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -342317,6 +342438,14 @@ ] } }, + "dependabot-alert-relationship": { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, "dependabot-alert-sort": { "name": "sort", "in": "query", diff --git a/descriptions/api.github.com/api.github.com.yaml b/descriptions/api.github.com/api.github.com.yaml index 38c7544306..9f435d4553 100644 --- a/descriptions/api.github.com/api.github.com.yaml +++ b/descriptions/api.github.com/api.github.com.yaml @@ -5776,6 +5776,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -20244,6 +20245,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-runtime-risk" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -26195,6 +26197,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -41530,6 +41573,7 @@ paths: - "$ref": "#/components/parameters/dependabot-alert-comma-separated-has" - "$ref": "#/components/parameters/dependabot-alert-comma-separated-assignees" - "$ref": "#/components/parameters/dependabot-alert-scope" + - "$ref": "#/components/parameters/dependabot-alert-relationship" - "$ref": "#/components/parameters/dependabot-alert-sort" - "$ref": "#/components/parameters/direction" - "$ref": "#/components/parameters/pagination-before" @@ -63968,6 +64012,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -93265,6 +93350,10 @@ components: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, or for a multi-user + budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget to. @@ -232955,6 +233044,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -233139,6 +233229,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -247626,6 +247717,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -247745,6 +247837,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -247830,6 +247923,7 @@ components: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -247936,6 +248030,7 @@ components: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -259553,6 +259648,16 @@ components: enum: - development - runtime + dependabot-alert-relationship: + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string dependabot-alert-sort: name: sort in: query diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index d207fe3a90..13ab650aa7 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -26992,6 +26992,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -28348,7 +28356,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -28573,7 +28582,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -76511,6 +76521,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -129238,6 +129252,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -130594,7 +130616,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -130819,7 +130842,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -204470,6 +204494,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -355282,6 +355357,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -356218,7 +356301,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -356376,7 +356460,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -357566,7 +357651,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -358772,7 +358858,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -695878,6 +695965,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index c573aaa56d..e632daa3bd 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -864,7 +864,7 @@ paths: - subscriptions_url - type - url - type: &348 + type: &349 type: string description: The type of credit the user is receiving. enum: @@ -1030,7 +1030,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &719 + - &720 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 - - &232 + - &233 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 - - &233 + - &234 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: &234 + items: &235 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4362,7 +4362,7 @@ paths: - installation_id - repository_id examples: - default: &235 + default: &236 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4490,7 +4490,7 @@ paths: description: Response content: application/json: - schema: &236 + schema: &237 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4604,7 +4604,7 @@ paths: - request - response examples: - default: &237 + default: &238 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5593,7 +5593,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &311 + properties: &312 id: description: Unique identifier of the repository example: 42 @@ -6044,7 +6044,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &312 + required: &313 - archive_url - assignees_url - blobs_url @@ -12233,7 +12233,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 - - &511 + - &512 name: has in: query description: |- @@ -12267,6 +12267,16 @@ paths: - development - runtime - &221 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &222 name: sort in: query description: |- @@ -12292,7 +12302,7 @@ paths: application/json: schema: type: array - items: &222 + items: &223 type: object description: A Dependabot alert. properties: @@ -12359,7 +12369,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &512 + security_advisory: &513 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12628,14 +12638,14 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &513 + auto_dismissed_at: &514 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &514 + dismissal_request: &515 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12697,7 +12707,7 @@ paths: - repository additionalProperties: false examples: - default: &223 + default: &224 value: - number: 2 state: dismissed @@ -12707,6 +12717,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -12893,6 +12904,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -13082,7 +13094,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &225 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13108,7 +13120,7 @@ paths: nullable: true additionalProperties: false examples: - default: &225 + default: &226 value: default_level: public accessible_repositories: @@ -14323,7 +14335,7 @@ paths: properties: action: type: string - discussion: &816 + discussion: &817 title: Discussion description: A Discussion in a repository. type: object @@ -14690,7 +14702,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &565 + properties: &566 id: type: integer format: int64 @@ -14803,7 +14815,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &295 + properties: &296 url: type: string format: uri @@ -14873,7 +14885,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &296 + required: &297 - closed_issues - creator - description @@ -14952,7 +14964,7 @@ paths: timeline_url: type: string format: uri - type: &258 + type: &259 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15068,7 +15080,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &731 + sub_issues_summary: &732 title: Sub-issues Summary type: object properties: @@ -15155,7 +15167,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &594 + properties: &595 pinned_at: type: string format: date-time @@ -15167,7 +15179,7 @@ paths: properties: *20 required: *21 nullable: true - required: &595 + required: &596 - pinned_at - pinned_by nullable: true @@ -15176,13 +15188,13 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &596 + properties: &597 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &597 + required: &598 - reason nullable: true required: &91 @@ -15195,7 +15207,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &732 + issue_dependencies_summary: &733 title: Issue Dependencies Summary type: object properties: @@ -15214,7 +15226,7 @@ paths: - total_blocking issue_field_values: type: array - items: &576 + items: &577 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15306,7 +15318,7 @@ paths: - node_id - data_type - value - required: &566 + required: &567 - assignee - closed_at - comments @@ -15344,7 +15356,7 @@ paths: action: type: string issue: *89 - comment: &561 + comment: &562 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -16008,7 +16020,7 @@ paths: type: string release: allOf: - - &643 + - &644 title: Release description: A release. type: object @@ -16079,7 +16091,7 @@ paths: author: *4 assets: type: array - items: &644 + items: &645 title: Release Asset description: Data related to a release. type: object @@ -16670,7 +16682,7 @@ paths: url: type: string format: uri - user: &740 + user: &741 title: Public User description: Public User type: object @@ -18547,7 +18559,7 @@ paths: - closed - all default: open - - &261 + - &262 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18598,7 +18610,7 @@ paths: type: array items: *89 examples: - default: &262 + default: &263 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19997,14 +20009,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &357 + - &358 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &358 + - &359 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20066,7 +20078,7 @@ paths: '404': *6 '403': *29 '304': *38 - '301': &361 + '301': &362 description: Moved permanently content: application/json: @@ -20088,7 +20100,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &617 + - &618 name: all description: If `true`, show notifications marked as read. in: query @@ -20096,7 +20108,7 @@ paths: schema: type: boolean default: false - - &618 + - &619 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20106,7 +20118,7 @@ paths: type: boolean default: false - *96 - - &619 + - &620 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: @@ -20142,7 +20154,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &227 + properties: &228 id: type: integer format: int64 @@ -20428,7 +20440,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &313 + security_and_analysis: &314 nullable: true type: object properties: @@ -20548,7 +20560,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &228 + required: &229 - archive_url - assignees_url - blobs_url @@ -20636,7 +20648,7 @@ paths: - url - subscription_url examples: - default: &620 + default: &621 value: - id: '1' repository: @@ -21625,6 +21637,10 @@ paths: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -22550,7 +22566,7 @@ paths: parameters: - *79 - *125 - - &792 + - &793 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 @@ -22662,7 +22678,7 @@ paths: - *125 - *126 - *127 - - &793 + - &794 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22670,7 +22686,7 @@ paths: schema: type: string - *130 - - &794 + - &795 name: sku description: The SKU to query for usage. in: query @@ -23572,7 +23588,7 @@ paths: type: integer repository_cache_usages: type: array - items: &368 + items: &369 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24914,7 +24930,7 @@ paths: - all - local_only - selected - selected_actions_url: &373 + selected_actions_url: &374 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` @@ -24997,7 +25013,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &378 type: object properties: days: @@ -25039,7 +25055,7 @@ paths: required: true content: application/json: - schema: &378 + schema: &379 type: object properties: days: @@ -25096,7 +25112,7 @@ paths: required: - approval_policy examples: - default: &379 + default: &380 value: approval_policy: first_time_contributors '404': *6 @@ -25155,7 +25171,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &381 type: object required: - run_workflows_from_fork_pull_requests @@ -25209,7 +25225,7 @@ paths: required: true content: application/json: - schema: &381 + schema: &382 type: object required: - run_workflows_from_fork_pull_requests @@ -25844,7 +25860,7 @@ paths: description: Response content: application/json: - schema: &382 + schema: &383 type: object properties: default_workflow_permissions: &157 @@ -25895,7 +25911,7 @@ paths: required: false content: application/json: - schema: &383 + schema: &384 type: object properties: default_workflow_permissions: *157 @@ -27035,7 +27051,7 @@ paths: application/json: schema: type: array - items: &384 + items: &385 title: Runner Application description: Runner Application type: object @@ -27060,7 +27076,7 @@ paths: - download_url - filename examples: - default: &385 + default: &386 value: - os: osx architecture: x64 @@ -27146,7 +27162,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &386 + '201': &387 description: Response content: application/json: @@ -27257,7 +27273,7 @@ paths: - token - expires_at examples: - default: &387 + default: &388 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -27296,7 +27312,7 @@ paths: application/json: schema: *168 examples: - default: &388 + default: &389 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -27330,7 +27346,7 @@ paths: application/json: schema: *166 examples: - default: &389 + default: &390 value: id: 23 name: MBP @@ -27557,7 +27573,7 @@ paths: - *79 - *165 responses: - '200': &390 + '200': &391 description: Response content: application/json: @@ -27614,7 +27630,7 @@ paths: parameters: - *79 - *165 - - &391 + - &392 name: name description: The name of a self-hosted runner's custom label. in: path @@ -30549,12 +30565,12 @@ paths: required: - subject_digests examples: - default: &773 + default: &774 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &774 + withPredicateType: &775 value: subject_digests: - sha256:abc123 @@ -30612,7 +30628,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &775 + default: &776 value: attestations_subject_digests: - sha256:abc: @@ -30962,7 +30978,7 @@ paths: initiator: type: string examples: - default: &417 + default: &418 value: attestations: - repository_id: 1 @@ -31242,7 +31258,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &273 + properties: &274 id: description: Unique identifier of the team type: integer @@ -31314,7 +31330,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &274 + required: &275 - id - node_id - url @@ -31820,7 +31836,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *79 - - &444 + - &445 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`, @@ -31830,7 +31846,7 @@ paths: schema: &196 type: string description: The name of the tool used to generate the code scanning analysis. - - &445 + - &446 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 @@ -31853,7 +31869,7 @@ paths: be returned. in: query required: false - schema: &447 + schema: &448 type: string description: State of a code scanning alert. enum: @@ -31876,7 +31892,7 @@ paths: be returned. in: query required: false - schema: &448 + schema: &449 type: string description: Severity of a code scanning alert. enum: @@ -31910,7 +31926,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: &449 + instances_url: &450 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -31933,7 +31949,7 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: &450 + dismissed_reason: &451 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -31942,13 +31958,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &451 + dismissed_comment: &452 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &452 + rule: &453 type: object properties: id: @@ -32001,7 +32017,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &453 + tool: &454 type: object properties: name: *196 @@ -32011,26 +32027,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *197 - most_recent_instance: &454 + most_recent_instance: &455 type: object properties: - ref: &446 + ref: &447 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &465 + analysis_key: &466 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: &466 + environment: &467 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: &467 + category: &468 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -32050,7 +32066,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: &468 + location: &469 type: object description: Describe a region within a file for the alert. properties: @@ -32071,7 +32087,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: &469 + items: &470 type: string description: A classification of the file. For example to identify it as generated. @@ -33372,7 +33388,7 @@ paths: type: integer codespaces: type: array - items: &263 + items: &264 type: object title: Codespace description: A codespace. @@ -33402,7 +33418,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &481 + properties: &482 name: type: string description: The name of the machine. @@ -33444,7 +33460,7 @@ paths: - ready - in_progress nullable: true - required: &482 + required: &483 - name - display_name - operating_system @@ -33649,7 +33665,7 @@ paths: - pulls_url - recent_folders examples: - default: &264 + default: &265 value: total_count: 3 codespaces: @@ -34312,7 +34328,7 @@ paths: - updated_at - visibility examples: - default: &483 + default: &484 value: total_count: 2 secrets: @@ -34350,7 +34366,7 @@ paths: description: Response content: application/json: - schema: &484 + schema: &485 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -34379,7 +34395,7 @@ paths: - key_id - key examples: - default: &485 + default: &486 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34411,7 +34427,7 @@ paths: application/json: schema: *204 examples: - default: &487 + default: &488 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -36475,7 +36491,7 @@ paths: currently being billed. seats: type: array - items: &266 + items: &267 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -37683,6 +37699,7 @@ paths: type: string - *220 - *221 + - *222 - *63 - *48 - *49 @@ -37694,9 +37711,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '304': *38 '400': *14 '403': *29 @@ -37745,9 +37762,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '403': *29 '404': *6 x-github: @@ -37910,7 +37927,7 @@ paths: type: integer secrets: type: array - items: &226 + items: &227 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -37987,7 +38004,7 @@ paths: description: Response content: application/json: - schema: &517 + schema: &518 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38004,7 +38021,7 @@ paths: - key_id - key examples: - default: &518 + default: &519 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38034,7 +38051,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: default: value: @@ -38333,7 +38350,7 @@ paths: application/json: schema: type: array - items: &276 + items: &277 title: Package description: A software package type: object @@ -38383,8 +38400,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *227 - required: *228 + properties: *228 + required: *229 nullable: true created_at: type: string @@ -38403,7 +38420,7 @@ paths: - created_at - updated_at examples: - default: &277 + default: &278 value: - id: 197 name: hello_docker @@ -38573,7 +38590,7 @@ paths: application/json: schema: type: array - items: &252 + items: &253 title: Organization Invitation description: Organization Invitation type: object @@ -38620,7 +38637,7 @@ paths: - invitation_teams_url - node_id examples: - default: &253 + default: &254 value: - id: 1 login: monalisa @@ -38687,7 +38704,7 @@ paths: application/json: schema: type: array - items: &229 + items: &230 title: Org Hook description: Org Hook type: object @@ -38858,9 +38875,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: &230 + default: &231 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -38908,7 +38925,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *79 - - &231 + - &232 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. @@ -38921,9 +38938,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '404': *6 x-github: githubCloudOnly: false @@ -38951,7 +38968,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *79 - - *231 + - *232 requestBody: required: false content: @@ -38996,7 +39013,7 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: default: value: @@ -39038,7 +39055,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *79 - - *231 + - *232 responses: '204': description: Response @@ -39066,7 +39083,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *79 - - *231 + - *232 responses: '200': description: Response @@ -39097,7 +39114,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *79 - - *231 + - *232 requestBody: required: false content: @@ -39148,10 +39165,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *79 - - *231 - - *17 - *232 + - *17 - *233 + - *234 responses: '200': description: Response @@ -39159,9 +39176,9 @@ paths: application/json: schema: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '400': *14 '422': *15 x-github: @@ -39187,16 +39204,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *79 - - *231 + - *232 - *16 responses: '200': description: Response content: application/json: - schema: *236 + schema: *237 examples: - default: *237 + default: *238 '400': *14 '422': *15 x-github: @@ -39222,7 +39239,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *79 - - *231 + - *232 - *16 responses: '202': *40 @@ -39252,7 +39269,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *79 - - *231 + - *232 responses: '204': description: Response @@ -39277,7 +39294,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *79 - - &242 + - &243 name: actor_type in: path description: The type of the actor @@ -39290,14 +39307,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &243 + - &244 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &238 + - &239 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`.' @@ -39305,7 +39322,7 @@ paths: required: true schema: type: string - - &239 + - &240 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) @@ -39401,12 +39418,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *79 - - *238 - *239 + - *240 - *19 - *17 - *63 - - &248 + - &249 name: sort description: The property to sort the results by. in: query @@ -39486,14 +39503,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *79 - - *238 - *239 + - *240 responses: '200': description: Response content: application/json: - schema: &240 + schema: &241 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -39509,7 +39526,7 @@ paths: type: integer format: int64 examples: - default: &241 + default: &242 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -39532,23 +39549,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *79 - - &244 + - &245 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *238 - *239 + - *240 responses: '200': description: Response content: application/json: - schema: *240 + schema: *241 examples: - default: *241 + default: *242 x-github: enabledForGitHubApps: true category: orgs @@ -39568,18 +39585,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *79 - - *238 - *239 - - *242 + - *240 - *243 + - *244 responses: '200': description: Response content: application/json: - schema: *240 + schema: *241 examples: - default: *241 + default: *242 x-github: enabledForGitHubApps: true category: orgs @@ -39599,9 +39616,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *79 - - *238 - *239 - - &245 + - *240 + - &246 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -39614,7 +39631,7 @@ paths: description: Response content: application/json: - schema: &246 + schema: &247 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -39630,7 +39647,7 @@ paths: type: integer format: int64 examples: - default: &247 + default: &248 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -39669,18 +39686,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *79 - - *244 - - *238 - - *239 - *245 + - *239 + - *240 + - *246 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 x-github: enabledForGitHubApps: true category: orgs @@ -39700,19 +39717,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *79 - - *242 - *243 - - *238 + - *244 - *239 - - *245 + - *240 + - *246 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 x-github: enabledForGitHubApps: true category: orgs @@ -39732,13 +39749,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *79 - - *244 - - *238 + - *245 - *239 + - *240 - *19 - *17 - *63 - - *248 + - *249 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -39819,7 +39836,7 @@ paths: application/json: schema: *22 examples: - default: &555 + default: &556 value: id: 1 account: @@ -39985,12 +40002,12 @@ paths: application/json: schema: anyOf: - - &250 + - &251 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &249 + limit: &250 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -40015,7 +40032,7 @@ paths: properties: {} additionalProperties: false examples: - default: &251 + default: &252 value: limit: collaborators_only origin: organization @@ -40044,13 +40061,13 @@ paths: required: true content: application/json: - schema: &556 + schema: &557 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *249 + limit: *250 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -40074,9 +40091,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: - default: *251 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -40286,9 +40303,9 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: - default: *253 + default: *254 headers: Link: *71 '404': *6 @@ -40365,7 +40382,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -40420,7 +40437,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *79 - - &254 + - &255 name: invitation_id description: The unique identifier of the invitation. in: path @@ -40451,7 +40468,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *79 - - *254 + - *255 - *17 - *19 responses: @@ -40463,7 +40480,7 @@ paths: type: array items: *211 examples: - default: &275 + default: &276 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -40506,7 +40523,7 @@ paths: application/json: schema: type: array - items: &255 + items: &256 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -40759,9 +40776,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: - default: &256 + default: &257 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -40817,7 +40834,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *79 - - &257 + - &258 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -40925,9 +40942,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: - default: *256 + default: *257 '404': *6 '422': *7 x-github: @@ -40952,7 +40969,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *79 - - *257 + - *258 responses: '204': *60 '404': *6 @@ -40982,9 +40999,9 @@ paths: application/json: schema: type: array - items: *258 + items: *259 examples: - default: &560 + default: &561 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -41067,9 +41084,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - default: &259 + default: &260 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -41102,7 +41119,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *79 - - &260 + - &261 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -41155,9 +41172,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - default: *259 + default: *260 '404': *6 '422': *7 x-github: @@ -41182,7 +41199,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *79 - - *260 + - *261 responses: '204': description: Response @@ -41245,7 +41262,7 @@ paths: - closed - all default: open - - *261 + - *262 - name: type description: Can be the name of an issue type. in: query @@ -41276,7 +41293,7 @@ paths: type: array items: *89 examples: - default: *262 + default: *263 headers: Link: *71 '404': *6 @@ -41435,9 +41452,9 @@ paths: type: integer codespaces: type: array - items: *263 + items: *264 examples: - default: *264 + default: *265 '304': *38 '500': *56 '401': *25 @@ -41464,7 +41481,7 @@ paths: parameters: - *79 - *75 - - &265 + - &266 name: codespace_name in: path required: true @@ -41499,15 +41516,15 @@ paths: parameters: - *79 - *75 - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: &480 + default: &481 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -41687,7 +41704,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *266 + schema: *267 examples: default: value: @@ -41763,7 +41780,7 @@ paths: description: Response content: application/json: - schema: &267 + schema: &268 title: Org Membership description: Org Membership type: object @@ -41830,7 +41847,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &268 + response-if-user-has-an-active-admin-membership-with-organization: &269 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -41931,9 +41948,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - response-if-user-already-had-membership-with-organization: *268 + response-if-user-already-had-membership-with-organization: *269 '422': *15 '403': *29 x-github: @@ -42004,7 +42021,7 @@ paths: application/json: schema: type: array - items: &269 + items: &270 title: Migration description: A migration. type: object @@ -42333,7 +42350,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -42512,7 +42529,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *79 - - &270 + - &271 name: migration_id description: The unique identifier of the migration. in: path @@ -42539,7 +42556,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -42709,7 +42726,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *79 - - *270 + - *271 responses: '302': description: Response @@ -42731,7 +42748,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *79 - - *270 + - *271 responses: '204': description: Response @@ -42755,8 +42772,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *79 - - *270 - - &756 + - *271 + - &757 name: repo_name description: repo_name parameter in: path @@ -42784,7 +42801,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *79 - - *270 + - *271 - *17 - *19 responses: @@ -42796,7 +42813,7 @@ paths: type: array items: *164 examples: - default: &282 + default: &283 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -42951,7 +42968,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &272 + items: &273 title: Organization Role description: Organization roles type: object @@ -43126,7 +43143,7 @@ paths: parameters: - *79 - *81 - - &271 + - &272 name: role_id description: The unique identifier of the role. in: path @@ -43163,7 +43180,7 @@ paths: parameters: - *79 - *81 - - *271 + - *272 responses: '204': description: Response @@ -43216,7 +43233,7 @@ paths: parameters: - *79 - *75 - - *271 + - *272 responses: '204': description: Response @@ -43248,7 +43265,7 @@ paths: parameters: - *79 - *75 - - *271 + - *272 responses: '204': description: Response @@ -43277,13 +43294,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *79 - - *271 + - *272 responses: '200': description: Response content: application/json: - schema: *272 + schema: *273 examples: default: value: @@ -43334,7 +43351,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *79 - - *271 + - *272 - *17 - *19 responses: @@ -43412,8 +43429,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *273 - required: *274 + properties: *274 + required: *275 nullable: true type: description: The ownership type of the team @@ -43445,7 +43462,7 @@ paths: - type - parent examples: - default: *275 + default: *276 headers: Link: *71 '404': @@ -43475,7 +43492,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *79 - - *271 + - *272 - *17 - *19 responses: @@ -43503,13 +43520,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &349 + items: &350 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *273 - required: *274 + properties: *274 + required: *275 name: nullable: true type: string @@ -43797,7 +43814,7 @@ paths: - nuget - container - *79 - - &757 + - &758 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43833,12 +43850,12 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *277 + default: *278 '403': *29 '401': *25 - '400': &759 + '400': &760 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -43860,7 +43877,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &278 + - &279 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 @@ -43878,7 +43895,7 @@ paths: - docker - nuget - container - - &279 + - &280 name: package_name description: The name of the package. in: path @@ -43891,7 +43908,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: default: value: @@ -43943,8 +43960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *278 - *279 + - *280 - *79 responses: '204': @@ -43977,8 +43994,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - name: token description: package token @@ -44011,8 +44028,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: - - *278 - *279 + - *280 - *79 - *19 - *17 @@ -44033,7 +44050,7 @@ paths: application/json: schema: type: array - items: &280 + items: &281 title: Package Version description: A version of a software package type: object @@ -44158,10 +44175,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - - &281 + - &282 name: package_version_id description: Unique identifier of the package version. in: path @@ -44173,7 +44190,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -44209,10 +44226,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - - *281 + - *282 responses: '204': description: Response @@ -44244,10 +44261,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - - *281 + - *282 responses: '204': description: Response @@ -44277,7 +44294,7 @@ paths: - *79 - *17 - *19 - - &283 + - &284 name: sort description: The property by which to sort the results. in: query @@ -44288,7 +44305,7 @@ paths: - created_at default: created_at - *63 - - &284 + - &285 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -44299,7 +44316,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &285 + - &286 name: repository description: The name of the repository to use to filter the results. in: query @@ -44307,7 +44324,7 @@ paths: schema: type: string example: Hello-World - - &286 + - &287 name: permission description: The permission to use to filter the results. in: query @@ -44315,7 +44332,7 @@ paths: schema: type: string example: issues_read - - &287 + - &288 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) @@ -44325,7 +44342,7 @@ paths: schema: type: string format: date-time - - &288 + - &289 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) @@ -44335,7 +44352,7 @@ paths: schema: type: string format: date-time - - &289 + - &290 name: token_id description: The ID of the token in: query @@ -44648,7 +44665,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 x-github: @@ -44674,14 +44691,14 @@ paths: - *79 - *17 - *19 - - *283 - - *63 - *284 + - *63 - *285 - *286 - *287 - *288 - *289 + - *290 responses: '500': *56 '422': *15 @@ -44963,7 +44980,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 x-github: @@ -45005,7 +45022,7 @@ paths: type: integer configurations: type: array - items: &290 + items: &291 title: Organization private registry description: Private registry configuration for an organization type: object @@ -45516,7 +45533,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &291 + org-private-registry-with-selected-visibility: &292 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -45612,9 +45629,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *290 + schema: *291 examples: - default: *291 + default: *292 '404': *6 x-github: githubCloudOnly: false @@ -45865,7 +45882,7 @@ paths: application/json: schema: type: array - items: &292 + items: &293 title: Projects v2 Project description: A projects v2 project type: object @@ -45935,7 +45952,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &847 + properties: &848 id: type: number description: The unique identifier of the status update. @@ -45983,7 +46000,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &848 + required: &849 - id - node_id - created_at @@ -46008,7 +46025,7 @@ paths: - deleted_at - deleted_by examples: - default: &293 + default: &294 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -46111,7 +46128,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &294 + - &295 name: project_number description: The project's number. in: path @@ -46124,9 +46141,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *293 + default: *294 headers: Link: *71 '304': *38 @@ -46149,7 +46166,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *79 - - *294 + - *295 requestBody: required: true description: Details of the draft item to create in the project. @@ -46183,7 +46200,7 @@ paths: description: Response content: application/json: - schema: &300 + schema: &301 title: Projects v2 Item description: An item belonging to a project type: object @@ -46197,7 +46214,7 @@ paths: content: oneOf: - *89 - - &455 + - &456 title: Pull Request Simple description: Pull Request Simple type: object @@ -46303,8 +46320,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 nullable: true active_lock_reason: type: string @@ -46397,7 +46414,7 @@ paths: _links: type: object properties: - comments: &297 + comments: &298 title: Link description: Hypermedia Link type: object @@ -46406,13 +46423,13 @@ paths: type: string required: - href - commits: *297 - statuses: *297 - html: *297 - issue: *297 - review_comments: *297 - review_comment: *297 - self: *297 + commits: *298 + statuses: *298 + html: *298 + issue: *298 + review_comments: *298 + review_comment: *298 + self: *298 required: - comments - commits @@ -46423,7 +46440,7 @@ paths: - review_comment - self author_association: *86 - auto_merge: &627 + auto_merge: &628 title: Auto merge description: The status of auto merging a pull request. type: object @@ -46448,7 +46465,7 @@ paths: - commit_title - commit_message nullable: true - stack: &628 + stack: &629 title: Pull Request Stack description: The stack information associated with a pull request. @@ -46564,7 +46581,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &299 + content_type: &300 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -46604,7 +46621,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &301 + draft_issue: &302 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -46678,7 +46695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *294 + - *295 - *79 - *17 - *48 @@ -46690,7 +46707,7 @@ paths: application/json: schema: type: array - items: &298 + items: &299 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -46840,7 +46857,7 @@ paths: - updated_at - project_url examples: - default: &779 + default: &780 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46970,7 +46987,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *294 + - *295 - *79 requestBody: required: true @@ -47017,7 +47034,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &780 + items: &781 type: object properties: name: @@ -47054,7 +47071,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &781 + iteration_configuration: &782 type: object description: The configuration for iteration fields. properties: @@ -47104,7 +47121,7 @@ paths: value: name: Due date data_type: date - single_select_field: &782 + single_select_field: &783 summary: Create a single select field value: name: Priority @@ -47131,7 +47148,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &783 + iteration_field: &784 summary: Create an iteration field value: name: Sprint @@ -47155,9 +47172,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *298 + schema: *299 examples: - text_field: &784 + text_field: &785 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47166,7 +47183,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: &785 + number_field: &786 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47175,7 +47192,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: &786 + date_field: &787 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47184,7 +47201,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: &787 + single_select_field: &788 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47218,7 +47235,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &788 + iteration_field: &789 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47263,8 +47280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *294 - - &789 + - *295 + - &790 name: field_id description: The unique identifier of the field. in: path @@ -47277,9 +47294,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *299 examples: - default: &790 + default: &791 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47335,7 +47352,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *294 + - *295 - *79 - 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) @@ -47368,7 +47385,7 @@ paths: application/json: schema: type: array - items: &302 + items: &303 title: Projects v2 Item description: An item belonging to a project type: object @@ -47384,7 +47401,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *299 + content_type: *300 content: type: object additionalProperties: true @@ -47427,7 +47444,7 @@ paths: - updated_at - archived_at examples: - default: &303 + default: &304 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -48125,7 +48142,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *79 - - *294 + - *295 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -48195,22 +48212,22 @@ paths: description: Response content: application/json: - schema: *300 + schema: *301 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *301 + value: *302 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *301 + value: *302 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *301 + value: *302 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *301 + value: *302 '304': *38 '403': *29 '401': *25 @@ -48230,9 +48247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *294 + - *295 - *79 - - &304 + - &305 name: item_id description: The unique identifier of the project item. in: path @@ -48258,9 +48275,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -48281,9 +48298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *294 + - *295 - *79 - - *304 + - *305 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -48353,13 +48370,13 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - text_field: *303 - number_field: *303 - date_field: *303 - single_select_field: *303 - iteration_field: *303 + text_field: *304 + number_field: *304 + date_field: *304 + single_select_field: *304 + iteration_field: *304 '401': *25 '403': *29 '404': *6 @@ -48379,9 +48396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *294 + - *295 - *79 - - *304 + - *305 responses: '204': description: Response @@ -48405,7 +48422,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *79 - - *294 + - *295 requestBody: required: true content: @@ -48441,6 +48458,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -48476,7 +48534,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &770 + schema: &771 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48574,7 +48632,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &305 + value: &306 value: id: 1 number: 1 @@ -48620,10 +48678,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *305 + value: *306 roadmap_view: summary: Response for creating a roadmap view - value: *305 + value: *306 '304': *38 '403': *29 '401': *25 @@ -48651,9 +48709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *294 + - *295 - *79 - - &791 + - &792 name: view_number description: The number that identifies the project view. in: path @@ -48685,9 +48743,9 @@ paths: application/json: schema: type: array - items: *302 + items: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -48720,7 +48778,7 @@ paths: application/json: schema: type: array - items: &306 + items: &307 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -48788,7 +48846,7 @@ paths: - property_name - value_type examples: - default: &307 + default: &308 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48848,7 +48906,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *306 + items: *307 minItems: 1 maxItems: 100 required: @@ -48878,9 +48936,9 @@ paths: application/json: schema: type: array - items: *306 + items: *307 examples: - default: *307 + default: *308 '403': *29 '404': *6 x-github: @@ -48902,7 +48960,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *79 - - &308 + - &309 name: custom_property_name description: The custom property name in: path @@ -48914,9 +48972,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *307 examples: - default: &309 + default: &310 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48951,7 +49009,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *79 - - *308 + - *309 requestBody: required: true content: @@ -49022,9 +49080,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *307 examples: - default: *309 + default: *310 '403': *29 '404': *6 x-github: @@ -49048,7 +49106,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *79 - - *308 + - *309 responses: '204': *60 '403': *29 @@ -49109,7 +49167,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &310 + items: &311 title: Custom Property Value description: Custom property name and associated value type: object @@ -49196,7 +49254,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *310 + items: *311 required: - repository_names - properties @@ -49388,7 +49446,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 x-github: @@ -49590,7 +49648,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &361 title: Full Repository description: Full Repository type: object @@ -49878,8 +49936,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *311 - required: *312 + properties: *312 + required: *313 nullable: true temp_clone_token: type: string @@ -49994,7 +50052,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &501 + properties: &502 url: type: string format: uri @@ -50010,12 +50068,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &502 + required: &503 - url - key - name - html_url - security_and_analysis: *313 + security_and_analysis: *314 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -50099,7 +50157,7 @@ paths: - network_count - subscribers_count examples: - default: &362 + default: &363 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -50620,7 +50678,7 @@ paths: - *79 - *17 - *19 - - &652 + - &653 name: targets description: | A comma-separated list of rule targets to filter by. @@ -50638,7 +50696,7 @@ paths: application/json: schema: type: array - items: &340 + items: &341 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -50673,7 +50731,7 @@ paths: source: type: string description: The name of the source - enforcement: &316 + enforcement: &317 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -50686,7 +50744,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &317 + items: &318 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -50757,7 +50815,7 @@ paths: conditions: nullable: true anyOf: - - &314 + - &315 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -50781,7 +50839,7 @@ paths: match. items: type: string - - &318 + - &319 title: Organization ruleset conditions type: object description: |- @@ -50795,7 +50853,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *314 + - *315 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -50829,7 +50887,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *314 + - *315 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -50851,7 +50909,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *314 + - *315 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -50864,7 +50922,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &315 + items: &316 title: Repository ruleset property targeting definition type: object @@ -50897,17 +50955,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *315 + items: *316 required: - repository_property rules: type: array - items: &653 + items: &654 title: Repository Rule type: object description: A repository rule. oneOf: - - &319 + - &320 title: creation description: Only allow users with bypass permission to create matching refs. @@ -50919,7 +50977,7 @@ paths: type: string enum: - creation - - &320 + - &321 title: update description: Only allow users with bypass permission to update matching refs. @@ -50940,7 +50998,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &321 + - &322 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -50952,7 +51010,7 @@ paths: type: string enum: - deletion - - &322 + - &323 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -50964,7 +51022,7 @@ paths: type: string enum: - required_linear_history - - &650 + - &651 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -51042,7 +51100,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &323 + - &324 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -51066,7 +51124,7 @@ paths: type: string required: - required_deployment_environments - - &324 + - &325 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -51078,7 +51136,7 @@ paths: type: string enum: - required_signatures - - &325 + - &326 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -51221,7 +51279,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &326 + - &327 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -51269,7 +51327,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &327 + - &328 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -51281,7 +51339,7 @@ paths: type: string enum: - non_fast_forward - - &328 + - &329 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -51318,7 +51376,7 @@ paths: required: - operator - pattern - - &329 + - &330 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -51355,7 +51413,7 @@ paths: required: - operator - pattern - - &330 + - &331 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -51392,7 +51450,7 @@ paths: required: - operator - pattern - - &331 + - &332 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -51429,7 +51487,7 @@ paths: required: - operator - pattern - - &332 + - &333 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -51466,7 +51524,7 @@ paths: required: - operator - pattern - - &337 + - &338 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -51516,7 +51574,7 @@ paths: - repository_id required: - workflows - - &338 + - &339 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -51577,7 +51635,7 @@ paths: - tool required: - code_scanning_tools - - &339 + - &340 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -51603,7 +51661,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &651 + - &652 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -51615,7 +51673,7 @@ paths: type: string enum: - license_compliance_scanning - - &333 + - &334 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -51640,7 +51698,7 @@ paths: type: string required: - restricted_file_paths - - &334 + - &335 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -51664,7 +51722,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &335 + - &336 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -51687,7 +51745,7 @@ paths: type: string required: - restricted_file_extensions - - &336 + - &337 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -51785,21 +51843,20 @@ paths: - push - repository default: branch - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *318 + items: *318 + conditions: *319 rules: type: array description: An array of rules within the ruleset. - items: &342 + items: &343 title: Repository Rule type: object description: A repository rule. oneOf: - - *319 - *320 - *321 - *322 @@ -51820,6 +51877,7 @@ paths: - *337 - *338 - *339 + - *340 required: - name - enforcement @@ -51857,9 +51915,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &341 + default: &342 value: id: 21 name: super cool ruleset @@ -51915,7 +51973,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *79 - - &654 + - &655 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 @@ -51930,7 +51988,7 @@ paths: in: query schema: type: string - - &655 + - &656 name: time_period description: |- The time period to filter by. @@ -51946,14 +52004,14 @@ paths: - week - month default: day - - &656 + - &657 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 - - &657 + - &658 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -51966,7 +52024,7 @@ paths: - bypass - all default: all - - &658 + - &659 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. @@ -51989,7 +52047,7 @@ paths: description: Response content: application/json: - schema: &659 + schema: &660 title: Rule Suites description: Response type: array @@ -52044,7 +52102,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &660 + default: &661 value: - id: 21 actor_id: 12 @@ -52088,7 +52146,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *79 - - &661 + - &662 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52104,7 +52162,7 @@ paths: description: Response content: application/json: - schema: &662 + schema: &663 title: Rule Suite description: Response type: object @@ -52203,7 +52261,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &663 + default: &664 value: id: 21 actor_id: 12 @@ -52276,9 +52334,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '404': *6 '500': *56 put: @@ -52322,16 +52380,16 @@ paths: - tag - push - repository - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *318 + items: *318 + conditions: *319 rules: description: An array of rules within the ruleset. type: array - items: *342 + items: *343 examples: default: value: @@ -52366,9 +52424,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '404': *6 '422': *15 '500': *56 @@ -52426,7 +52484,7 @@ paths: application/json: schema: type: array - items: &343 + items: &344 title: Ruleset version type: object description: The historical version of a ruleset @@ -52450,7 +52508,7 @@ paths: type: string format: date-time examples: - default: &665 + default: &666 value: - version_id: 3 actor: @@ -52503,9 +52561,9 @@ paths: description: Response content: application/json: - schema: &666 + schema: &667 allOf: - - *343 + - *344 - type: object required: - state @@ -52575,7 +52633,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *79 - - &667 + - &668 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52586,7 +52644,7 @@ paths: enum: - open - resolved - - &668 + - &669 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52596,7 +52654,7 @@ paths: required: false schema: type: string - - &669 + - &670 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52607,7 +52665,7 @@ paths: required: false schema: type: string - - &670 + - &671 name: exclude_providers in: query description: |- @@ -52618,7 +52676,7 @@ paths: required: false schema: type: string - - &671 + - &672 name: providers in: query description: |- @@ -52629,7 +52687,7 @@ paths: required: false schema: type: string - - &672 + - &673 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -52638,7 +52696,7 @@ paths: required: false schema: type: string - - &673 + - &674 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -52657,7 +52715,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &674 + - &675 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. @@ -52672,7 +52730,7 @@ paths: - *63 - *19 - *17 - - &675 + - &676 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 @@ -52682,7 +52740,7 @@ paths: required: false schema: type: string - - &676 + - &677 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 @@ -52692,7 +52750,7 @@ paths: required: false schema: type: string - - &677 + - &678 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -52701,7 +52759,7 @@ paths: required: false schema: type: string - - &678 + - &679 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -52710,7 +52768,7 @@ paths: schema: type: boolean default: false - - &679 + - &680 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -52719,7 +52777,7 @@ paths: schema: type: boolean default: false - - &680 + - &681 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -52728,7 +52786,7 @@ paths: schema: type: boolean default: false - - &681 + - &682 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -52739,7 +52797,7 @@ paths: required: false schema: type: boolean - - &682 + - &683 name: included_metadata in: query description: |- @@ -52750,7 +52808,7 @@ paths: required: false schema: type: string - - &683 + - &684 name: owner_email_hash in: query description: |- @@ -52788,14 +52846,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &684 + state: &685 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: &685 + resolution: &686 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -52912,8 +52970,8 @@ paths: pull request. ' - oneOf: &686 - - &688 + oneOf: &687 + - &689 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52971,7 +53029,7 @@ paths: - blob_url - commit_sha - commit_url - - &689 + - &690 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. @@ -53026,7 +53084,7 @@ paths: - page_url - commit_sha - commit_url - - &690 + - &691 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -53046,7 +53104,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &691 + - &692 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53066,7 +53124,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &692 + - &693 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53086,7 +53144,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &693 + - &694 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -53100,7 +53158,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &694 + - &695 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -53114,7 +53172,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &695 + - &696 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -53128,7 +53186,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &696 + - &697 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. @@ -53148,7 +53206,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &697 + - &698 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. @@ -53168,7 +53226,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &698 + - &699 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. @@ -53188,7 +53246,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &699 + - &700 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. @@ -53208,7 +53266,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &700 + - &701 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -53460,7 +53518,7 @@ paths: subcategory: custom-patterns parameters: - *79 - - &701 + - &702 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -53471,7 +53529,7 @@ paths: enum: - published - unpublished - - &702 + - &703 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -53482,7 +53540,7 @@ paths: enum: - enabled - disabled - - &703 + - &704 name: sort description: The property to sort the results by. in: query @@ -53504,7 +53562,7 @@ paths: application/json: schema: type: array - items: &344 + items: &345 title: Secret Scanning Custom Pattern description: A custom pattern for secret scanning. type: object @@ -53552,7 +53610,7 @@ paths: nullable: true items: type: string - custom_pattern_version: &345 + custom_pattern_version: &346 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -53576,7 +53634,7 @@ paths: - state - push_protection_enabled examples: - default: &704 + default: &705 value: - id: 1 name: Example Custom Pattern @@ -53639,7 +53697,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &705 + items: &706 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -53676,7 +53734,7 @@ paths: items: type: string examples: - default: &706 + default: &707 value: patterns: - name: Example Custom Pattern @@ -53700,9 +53758,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *344 + items: *345 examples: - default: &707 + default: &708 value: created_patterns: - id: 1 @@ -53754,7 +53812,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &708 + items: &709 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -53808,7 +53866,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &709 + items: &710 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -53818,7 +53876,7 @@ paths: pattern_id: type: integer description: The ID of the custom pattern to delete. - custom_pattern_version: *345 + custom_pattern_version: *346 post_delete_action: type: string description: |- @@ -53831,7 +53889,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &710 + default: &711 value: patterns: - pattern_id: 2 @@ -53842,7 +53900,7 @@ paths: '400': *14 '403': *29 '404': *6 - '412': &346 + '412': &347 description: Precondition Failed content: application/json: @@ -53877,7 +53935,7 @@ paths: required: true content: application/json: - schema: &711 + schema: &712 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -53916,9 +53974,9 @@ paths: description: Updated list of regexes that the secret must not match. items: type: string - custom_pattern_version: *345 + custom_pattern_version: *346 examples: - default: &712 + default: &713 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -53933,9 +53991,9 @@ paths: description: Pattern updated successfully. content: application/json: - schema: *344 + schema: *345 examples: - default: &713 + default: &714 value: id: 1 name: Example Custom Pattern @@ -53955,7 +54013,7 @@ paths: '400': *14 '403': *29 '404': *6 - '412': *346 + '412': *347 '422': *15 "/orgs/{org}/secret-scanning/pattern-configurations": get: @@ -53988,11 +54046,11 @@ paths: related to push protection. type: object properties: - pattern_config_version: *345 + pattern_config_version: *346 provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &347 + items: &348 type: object properties: token_type: @@ -54058,7 +54116,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *347 + items: *348 examples: default: value: @@ -54115,7 +54173,7 @@ paths: schema: type: object properties: - pattern_config_version: *345 + pattern_config_version: *346 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -54141,7 +54199,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *345 + custom_pattern_version: *346 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -54239,7 +54297,7 @@ paths: application/json: schema: type: array - items: &717 + items: &718 description: A repository security advisory. type: object properties: @@ -54459,7 +54517,7 @@ paths: login: type: string description: The username of the user credited. - type: *348 + type: *349 credits_detailed: type: array nullable: true @@ -54469,7 +54527,7 @@ paths: type: object properties: user: *4 - type: *348 + type: *349 state: type: string description: The state of the user's acceptance of the @@ -54530,7 +54588,7 @@ paths: - private_fork additionalProperties: false examples: - default: &718 + default: &719 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -54917,7 +54975,7 @@ paths: application/json: schema: type: array - items: *349 + items: *350 examples: default: value: @@ -55270,7 +55328,7 @@ paths: type: integer network_configurations: type: array - items: &350 + items: &351 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -55416,9 +55474,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *351 examples: - default: &351 + default: &352 value: id: 123456789ABCDEF name: My network configuration @@ -55447,7 +55505,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *79 - - &352 + - &353 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -55459,9 +55517,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *351 examples: - default: *351 + default: *352 headers: Link: *71 x-github: @@ -55483,7 +55541,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *79 - - *352 + - *353 requestBody: required: true content: @@ -55536,9 +55594,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *351 examples: - default: *351 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55558,7 +55616,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *79 - - *352 + - *353 responses: '204': description: Response @@ -55677,7 +55735,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 headers: Link: *71 '403': *29 @@ -55775,7 +55833,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &354 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -55838,8 +55896,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *273 - required: *274 + properties: *274 + required: *275 nullable: true members_count: type: integer @@ -56102,7 +56160,7 @@ paths: - repos_count - organization examples: - default: &354 + default: &355 value: id: 1 node_id: MDQ6VGVhbTE= @@ -56179,9 +56237,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 x-github: githubCloudOnly: false @@ -56270,16 +56328,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '201': description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 '422': *15 '403': *29 @@ -56309,7 +56367,7 @@ paths: responses: '204': description: Response - '422': &355 + '422': &356 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -56343,12 +56401,12 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: - default: *253 + default: *254 headers: Link: *71 - '422': *355 + '422': *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56392,7 +56450,7 @@ paths: application/json: schema: type: array - items: &734 + items: &735 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -56511,7 +56569,7 @@ paths: - type - url examples: - default: &735 + default: &736 value: - login: octocat id: 1 @@ -56570,7 +56628,7 @@ paths: description: Response content: application/json: - schema: &356 + schema: &357 title: Team Membership description: Team Membership type: object @@ -56597,7 +56655,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &736 + response-if-user-is-a-team-maintainer: &737 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56660,9 +56718,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - response-if-users-membership-with-team-is-now-pending: &737 + response-if-users-membership-with-team-is-now-pending: &738 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -56740,7 +56798,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 x-github: @@ -56771,14 +56829,14 @@ paths: parameters: - *79 - *81 - - *357 - *358 + - *359 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &738 + schema: &739 title: Team Repository description: A team's access to a repository. type: object @@ -57349,8 +57407,8 @@ paths: parameters: - *79 - *81 - - *357 - *358 + - *359 requestBody: required: false content: @@ -57397,8 +57455,8 @@ paths: parameters: - *79 - *81 - - *357 - *358 + - *359 responses: '204': description: Response @@ -57435,7 +57493,7 @@ paths: type: array items: *211 examples: - response-if-child-teams-exist: &739 + response-if-child-teams-exist: &740 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -57588,7 +57646,7 @@ paths: resources: type: object properties: - core: &359 + core: &360 title: Rate Limit type: object properties: @@ -57605,21 +57663,21 @@ paths: - remaining - reset - used - graphql: *359 - search: *359 - code_search: *359 - source_import: *359 - integration_manifest: *359 - actions_runner_registration: *359 - scim: *359 - dependency_snapshots: *359 - dependency_sbom: *359 - code_scanning_autofix: *359 - copilot_usage_records: *359 + graphql: *360 + search: *360 + code_search: *360 + source_import: *360 + integration_manifest: *360 + actions_runner_registration: *360 + scim: *360 + dependency_snapshots: *360 + dependency_sbom: *360 + code_scanning_autofix: *360 + copilot_usage_records: *360 required: - core - search - rate: *359 + rate: *360 required: - rate - resources @@ -57719,14 +57777,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *360 + schema: *361 examples: default-response: summary: Default response @@ -58231,7 +58289,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *361 + '301': *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58249,8 +58307,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -58560,10 +58618,10 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 - '307': &363 + default: *363 + '307': &364 description: Temporary Redirect content: application/json: @@ -58592,8 +58650,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -58615,7 +58673,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *363 + '307': *364 '404': *6 '409': *55 x-github: @@ -58639,11 +58697,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 - - &395 + - &396 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -58666,7 +58724,7 @@ paths: type: integer artifacts: type: array - items: &364 + items: &365 title: Artifact description: An artifact type: object @@ -58744,7 +58802,7 @@ paths: - expires_at - updated_at examples: - default: &396 + default: &397 value: total_count: 2 artifacts: @@ -58805,9 +58863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *357 - *358 - - &365 + - *359 + - &366 name: artifact_id description: The unique identifier of the artifact. in: path @@ -58819,7 +58877,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: default: value: @@ -58857,9 +58915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *357 - *358 - - *365 + - *359 + - *366 responses: '204': description: Response @@ -58883,9 +58941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *357 - *358 - - *365 + - *359 + - *366 - name: archive_format in: path required: true @@ -58895,7 +58953,7 @@ paths: '302': description: Response headers: - Location: &520 + Location: &521 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 @@ -58920,14 +58978,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &366 + schema: &367 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -58960,13 +59018,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *366 + schema: *367 examples: selected_actions: *43 responses: @@ -58995,14 +59053,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &367 + schema: &368 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -59035,13 +59093,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *367 + schema: *368 examples: selected_actions: *45 responses: @@ -59072,14 +59130,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *368 + schema: *369 examples: default: value: @@ -59105,11 +59163,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 - - &369 + - &370 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 @@ -59143,7 +59201,7 @@ paths: description: Response content: application/json: - schema: &370 + schema: &371 title: Repository actions caches description: Repository actions caches type: object @@ -59185,7 +59243,7 @@ paths: - total_count - actions_caches examples: - default: &371 + default: &372 value: total_count: 1 actions_caches: @@ -59217,23 +59275,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *357 - *358 + - *359 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *369 + - *370 responses: '200': description: Response content: application/json: - schema: *370 + schema: *371 examples: - default: *371 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59253,8 +59311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *357 - *358 + - *359 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -59283,8 +59341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *49 responses: @@ -59366,8 +59424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *357 - *358 + - *359 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -59519,9 +59577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *357 - *358 - - &372 + - *359 + - &373 name: job_id description: The unique identifier of the job. in: path @@ -59533,7 +59591,7 @@ paths: description: Response content: application/json: - schema: &399 + schema: &400 title: Job description: Information of a job execution in a workflow run type: object @@ -59840,9 +59898,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *357 - *358 - - *372 + - *359 + - *373 responses: '302': description: Response @@ -59870,9 +59928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *357 - *358 - - *372 + - *359 + - *373 requestBody: required: false content: @@ -59922,8 +59980,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Status response @@ -59982,8 +60040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -60051,8 +60109,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -60070,7 +60128,7 @@ paths: type: integer secrets: type: array - items: &401 + items: &402 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -60090,7 +60148,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &403 value: total_count: 2 secrets: @@ -60123,8 +60181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -60142,7 +60200,7 @@ paths: type: integer variables: type: array - items: &403 + items: &404 title: Actions Variable type: object properties: @@ -60172,7 +60230,7 @@ paths: - created_at - updated_at examples: - default: &404 + default: &405 value: total_count: 2 variables: @@ -60205,8 +60263,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -60215,11 +60273,11 @@ paths: schema: type: object properties: - enabled: &374 + enabled: &375 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *149 - selected_actions_url: *373 + selected_actions_url: *374 sha_pinning_required: *150 required: - enabled @@ -60248,8 +60306,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -60260,7 +60318,7 @@ paths: schema: type: object properties: - enabled: *374 + enabled: *375 allowed_actions: *149 sha_pinning_required: *150 required: @@ -60292,14 +60350,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &375 + schema: &376 type: object properties: access_level: @@ -60316,7 +60374,7 @@ paths: required: - access_level examples: - default: &376 + default: &377 value: access_level: organization x-github: @@ -60340,15 +60398,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *375 + schema: *376 examples: - default: *376 + default: *377 responses: '204': description: Response @@ -60372,14 +60430,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: default: value: @@ -60403,8 +60461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Empty response for successful settings update @@ -60414,7 +60472,7 @@ paths: required: true content: application/json: - schema: *378 + schema: *379 examples: default: summary: Set retention days @@ -60438,8 +60496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -60447,7 +60505,7 @@ paths: application/json: schema: *151 examples: - default: *379 + default: *380 '404': *6 x-github: enabledForGitHubApps: true @@ -60466,8 +60524,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -60501,14 +60559,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *380 + schema: *381 examples: default: *152 '403': *29 @@ -60530,13 +60588,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *381 + schema: *382 examples: default: *152 responses: @@ -60562,8 +60620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -60590,8 +60648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -60623,14 +60681,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *382 + schema: *383 examples: default: *159 x-github: @@ -60653,8 +60711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Success response @@ -60665,7 +60723,7 @@ paths: required: true content: application/json: - schema: *383 + schema: *384 examples: default: *159 x-github: @@ -60694,8 +60752,8 @@ paths: in: query schema: type: string - - *357 - *358 + - *359 - *17 - *19 responses: @@ -60739,8 +60797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -60748,9 +60806,9 @@ paths: application/json: schema: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60772,8 +60830,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -60816,7 +60874,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *386 + '201': *387 '404': *6 '422': *7 '409': *55 @@ -60847,8 +60905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -60856,7 +60914,7 @@ paths: application/json: schema: *168 examples: - default: *387 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60884,8 +60942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -60893,7 +60951,7 @@ paths: application/json: schema: *168 examples: - default: *388 + default: *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60915,8 +60973,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: '200': @@ -60925,7 +60983,7 @@ paths: application/json: schema: *166 examples: - default: *389 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60946,8 +61004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: '204': @@ -60974,8 +61032,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: '200': *170 @@ -61000,8 +61058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 requestBody: required: true @@ -61050,8 +61108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 requestBody: required: true @@ -61101,11 +61159,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: - '200': *390 + '200': *391 '404': *6 x-github: githubCloudOnly: false @@ -61132,10 +61190,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 - - *391 + - *392 responses: '200': *170 '404': *6 @@ -61163,9 +61221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *357 - *358 - - &407 + - *359 + - &408 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. @@ -61173,7 +61231,7 @@ paths: required: false schema: type: string - - &408 + - &409 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -61181,7 +61239,7 @@ paths: required: false schema: type: string - - &409 + - &410 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -61190,7 +61248,7 @@ paths: required: false schema: type: string - - &410 + - &411 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 @@ -61217,7 +61275,7 @@ paths: - pending - *17 - *19 - - &411 + - &412 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)." @@ -61226,7 +61284,7 @@ paths: schema: type: string format: date-time - - &392 + - &393 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -61235,13 +61293,13 @@ paths: schema: type: boolean default: false - - &412 + - &413 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &413 + - &414 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -61264,7 +61322,7 @@ paths: type: integer workflow_runs: type: array - items: &393 + items: &394 title: Workflow Run description: An invocation of a workflow type: object @@ -61412,7 +61470,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &437 + properties: &438 id: type: string description: SHA for the commit @@ -61463,7 +61521,7 @@ paths: - name - email nullable: true - required: &438 + required: &439 - id - tree_id - message @@ -61510,7 +61568,7 @@ paths: - workflow_url - pull_requests examples: - default: &414 + default: &415 value: total_count: 1 workflow_runs: @@ -61746,24 +61804,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *357 - *358 - - &394 + - *359 + - &395 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *392 + - *393 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &397 + default: &398 value: id: 30433642 name: Build @@ -62004,9 +62062,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '204': description: Response @@ -62029,9 +62087,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '200': description: Response @@ -62150,9 +62208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '201': description: Response @@ -62185,12 +62243,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *357 - *358 - - *394 + - *359 + - *395 - *17 - *19 - - *395 + - *396 - *63 responses: '200': @@ -62207,9 +62265,9 @@ paths: type: integer artifacts: type: array - items: *364 + items: *365 examples: - default: *396 + default: *397 headers: Link: *71 x-github: @@ -62233,25 +62291,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *357 - *358 - - *394 - - &398 + - *359 + - *395 + - &399 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *392 + - *393 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *397 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62274,10 +62332,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *357 - *358 - - *394 - - *398 + - *359 + - *395 + - *399 - *17 - *19 responses: @@ -62295,9 +62353,9 @@ paths: type: integer jobs: type: array - items: *399 + items: *400 examples: - default: &400 + default: &401 value: total_count: 1 jobs: @@ -62410,10 +62468,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *357 - *358 - - *394 - - *398 + - *359 + - *395 + - *399 responses: '302': description: Response @@ -62441,9 +62499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '202': description: Response @@ -62489,9 +62547,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 - *17 - *48 - *49 @@ -62662,9 +62720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: true content: @@ -62731,9 +62789,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '202': description: Response @@ -62766,9 +62824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 - 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 @@ -62798,9 +62856,9 @@ paths: type: integer jobs: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *71 x-github: @@ -62825,9 +62883,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '302': description: Response @@ -62854,9 +62912,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '204': description: Response @@ -62883,9 +62941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '200': description: Response @@ -62945,7 +63003,7 @@ paths: items: type: object properties: - type: &527 + type: &528 type: string description: The type of reviewer. enum: @@ -63030,9 +63088,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: true content: @@ -63079,12 +63137,12 @@ paths: application/json: schema: type: array - items: &522 + items: &523 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &810 + properties: &811 url: type: string format: uri @@ -63169,7 +63227,7 @@ paths: nullable: true properties: *84 required: *85 - required: &811 + required: &812 - id - node_id - sha @@ -63185,7 +63243,7 @@ paths: - created_at - updated_at examples: - default: &523 + default: &524 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -63241,9 +63299,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: false content: @@ -63287,9 +63345,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: false content: @@ -63342,9 +63400,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '200': description: Response @@ -63481,8 +63539,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -63500,9 +63558,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -63527,8 +63585,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -63558,17 +63616,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &415 + default: &416 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -63594,8 +63652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -63653,8 +63711,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -63680,8 +63738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -63699,9 +63757,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -63724,8 +63782,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -63777,17 +63835,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: &416 + default: &417 value: name: USERNAME value: octocat @@ -63813,8 +63871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 requestBody: required: true @@ -63857,8 +63915,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '204': @@ -63884,8 +63942,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -63903,7 +63961,7 @@ paths: type: integer workflows: type: array - items: &405 + items: &406 title: Workflow description: A GitHub Actions workflow type: object @@ -64010,9 +64068,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *357 - *358 - - &406 + - *359 + - &407 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -64027,7 +64085,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -64060,9 +64118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '204': description: Response @@ -64087,9 +64145,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -64176,9 +64234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '204': description: Response @@ -64205,19 +64263,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *357 - *358 - - *406 + - *359 - *407 - *408 - *409 - *410 + - *411 - *17 - *19 - - *411 - - *392 - *412 + - *393 - *413 + - *414 responses: '200': description: Response @@ -64233,9 +64291,9 @@ paths: type: integer workflow_runs: type: array - items: *393 + items: *394 examples: - default: *414 + default: *415 headers: Link: *71 x-github: @@ -64267,9 +64325,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '200': description: Response @@ -64330,8 +64388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *357 - *358 + - *359 - *63 - *17 - *48 @@ -64500,8 +64558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -64519,9 +64577,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -64545,8 +64603,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -64564,9 +64622,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -64591,8 +64649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -64610,9 +64668,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -64637,8 +64695,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -64668,17 +64726,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *415 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64700,8 +64758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -64759,8 +64817,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -64786,8 +64844,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -64805,9 +64863,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -64830,8 +64888,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -64883,17 +64941,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *416 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64914,8 +64972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 requestBody: required: true @@ -64958,8 +65016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '204': @@ -64981,8 +65039,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -65019,8 +65077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *357 - *358 + - *359 - name: assignee in: path required: true @@ -65056,8 +65114,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -65167,8 +65225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *357 - *358 + - *359 - *17 - *48 - *49 @@ -65225,7 +65283,7 @@ paths: initiator: type: string examples: - default: *417 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65245,8 +65303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -65254,7 +65312,7 @@ paths: application/json: schema: type: array - items: &418 + items: &419 title: Autolink reference description: An autolink reference. type: object @@ -65308,8 +65366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -65348,9 +65406,9 @@ paths: description: response content: application/json: - schema: *418 + schema: *419 examples: - default: &419 + default: &420 value: id: 1 key_prefix: TICKET- @@ -65381,9 +65439,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *357 - *358 - - &420 + - *359 + - &421 name: autolink_id description: The unique identifier of the autolink. in: path @@ -65395,9 +65453,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 '404': *6 x-github: githubCloudOnly: false @@ -65417,9 +65475,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *357 - *358 - - *420 + - *359 + - *421 responses: '204': description: Response @@ -65443,8 +65501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response if Dependabot is enabled @@ -65492,8 +65550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -65514,8 +65572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -65535,8 +65593,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *357 - *358 + - *359 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -65574,7 +65632,7 @@ paths: - url protected: type: boolean - protection: &422 + protection: &423 title: Branch Protection description: Branch Protection type: object @@ -65616,7 +65674,7 @@ paths: required: - contexts - checks - enforce_admins: &425 + enforce_admins: &426 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -65631,7 +65689,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &427 + required_pull_request_reviews: &428 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -65707,7 +65765,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &424 + restrictions: &425 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -65984,9 +66042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *357 - *358 - - &423 + - *359 + - &424 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). @@ -66000,14 +66058,14 @@ paths: description: Response content: application/json: - schema: &433 + schema: &434 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &493 + commit: &494 title: Commit description: Commit type: object @@ -66041,7 +66099,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &421 + properties: &422 name: type: string example: '"Chris Wanstrath"' @@ -66057,7 +66115,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *422 nullable: true message: type: string @@ -66078,7 +66136,7 @@ paths: required: - sha - url - verification: &545 + verification: &546 title: Verification type: object properties: @@ -66148,7 +66206,7 @@ paths: type: integer files: type: array - items: &505 + items: &506 title: Diff Entry description: Diff Entry type: object @@ -66232,7 +66290,7 @@ paths: - self protected: type: boolean - protection: *422 + protection: *423 protection_url: type: string format: uri @@ -66339,7 +66397,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *361 + '301': *362 '404': *6 x-github: githubCloudOnly: false @@ -66361,15 +66419,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *422 + schema: *423 examples: default: value: @@ -66563,9 +66621,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -66820,7 +66878,7 @@ paths: url: type: string format: uri - required_status_checks: &430 + required_status_checks: &431 title: Status Check Policy description: Status Check Policy type: object @@ -66972,7 +67030,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *424 + restrictions: *425 required_conversation_resolution: type: object properties: @@ -67084,9 +67142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67111,17 +67169,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: &426 + default: &427 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -67143,17 +67201,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: *426 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67172,9 +67230,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67199,17 +67257,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: &428 + default: &429 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -67305,9 +67363,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67405,9 +67463,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: *428 + default: *429 '422': *15 x-github: githubCloudOnly: false @@ -67428,9 +67486,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67457,17 +67515,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: &429 + default: &430 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -67490,17 +67548,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: *429 + default: *430 '404': *6 x-github: githubCloudOnly: false @@ -67520,9 +67578,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67547,17 +67605,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *430 + schema: *431 examples: - default: &431 + default: &432 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -67583,9 +67641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67637,9 +67695,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *431 examples: - default: *431 + default: *432 '404': *6 '422': *15 x-github: @@ -67661,9 +67719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67687,9 +67745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -67723,9 +67781,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67792,9 +67850,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67858,9 +67916,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: content: application/json: @@ -67926,15 +67984,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -68025,9 +68083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -68050,9 +68108,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -68062,7 +68120,7 @@ paths: type: array items: *5 examples: - default: &432 + default: &433 value: - id: 1 slug: octoapp @@ -68119,9 +68177,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68155,7 +68213,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *433 '422': *15 x-github: githubCloudOnly: false @@ -68176,9 +68234,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68212,7 +68270,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *433 '422': *15 x-github: githubCloudOnly: false @@ -68233,9 +68291,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68269,7 +68327,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *433 '422': *15 x-github: githubCloudOnly: false @@ -68291,9 +68349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -68303,7 +68361,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '404': *6 x-github: githubCloudOnly: false @@ -68323,9 +68381,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -68363,7 +68421,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '422': *15 x-github: githubCloudOnly: false @@ -68384,9 +68442,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -68424,7 +68482,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '422': *15 x-github: githubCloudOnly: false @@ -68445,9 +68503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: content: application/json: @@ -68484,7 +68542,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '422': *15 x-github: githubCloudOnly: false @@ -68506,9 +68564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -68542,9 +68600,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68602,9 +68660,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68662,9 +68720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68724,9 +68782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68748,7 +68806,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *434 examples: default: value: @@ -68864,8 +68922,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -69144,7 +69202,7 @@ paths: description: Response content: application/json: - schema: &434 + schema: &435 title: CheckRun description: A check performed on the code of a given code change type: object @@ -69264,7 +69322,7 @@ paths: check. type: array items: *94 - deployment: &803 + deployment: &804 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -69544,9 +69602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *357 - *358 - - &435 + - *359 + - &436 name: check_run_id description: The unique identifier of the check run. in: path @@ -69558,9 +69616,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *435 examples: - default: &436 + default: &437 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -69660,9 +69718,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *357 - *358 - - *435 + - *359 + - *436 requestBody: required: true content: @@ -69902,9 +69960,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *435 examples: - default: *436 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69924,9 +69982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *357 - *358 - - *435 + - *359 + - *436 - *17 - *19 responses: @@ -70021,9 +70079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *357 - *358 - - *435 + - *359 + - *436 responses: '201': description: Response @@ -70067,8 +70125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -70090,7 +70148,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &439 + schema: &440 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -70176,12 +70234,12 @@ paths: type: string format: date-time nullable: true - head_commit: &831 + head_commit: &832 title: Simple Commit description: A commit. type: object - properties: *437 - required: *438 + properties: *438 + required: *439 latest_check_runs_count: type: integer check_runs_url: @@ -70209,7 +70267,7 @@ paths: - check_runs_url - pull_requests examples: - default: &440 + default: &441 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -70500,9 +70558,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *439 + schema: *440 examples: - default: *440 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70521,8 +70579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -70831,9 +70889,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *357 - *358 - - &441 + - *359 + - &442 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -70845,9 +70903,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *440 examples: - default: *440 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70870,17 +70928,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *357 - *358 - - *441 - - &498 + - *359 + - *442 + - &499 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &499 + - &500 name: status description: Returns check runs with the specified `status`. in: query @@ -70919,9 +70977,9 @@ paths: type: integer check_runs: type: array - items: *434 + items: *435 examples: - default: &500 + default: &501 value: total_count: 1 check_runs: @@ -71023,9 +71081,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *357 - *358 - - *441 + - *359 + - *442 responses: '201': description: Response @@ -71054,8 +71112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *63 - *48 @@ -71077,7 +71135,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 description: Code quality finding type: object properties: @@ -71207,7 +71265,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &443 + '403': &444 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -71234,8 +71292,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *357 - *358 + - *359 - name: finding_number in: path description: The number that identifies a finding. @@ -71247,7 +71305,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: default: value: @@ -71276,7 +71334,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *443 + '403': *444 '404': *6 '503': *123 x-github: @@ -71298,8 +71356,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -71371,7 +71429,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *443 + '403': *444 '404': *6 '503': *123 x-github: @@ -71392,8 +71450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -71529,21 +71587,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *357 - *358 - - *444 + - *359 - *445 + - *446 - *19 - *17 - - &463 + - &464 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: *446 - - &464 + schema: *447 + - &465 name: pr description: The number of the pull request for the results you want to list. in: query @@ -71568,13 +71626,13 @@ paths: be returned. in: query required: false - schema: *447 + schema: *448 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *448 + schema: *449 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -71598,7 +71656,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: *449 + instances_url: *450 state: *198 fixed_at: *194 dismissed_by: @@ -71609,11 +71667,11 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: *450 - dismissed_comment: *451 - rule: *452 - tool: *453 - most_recent_instance: *454 + dismissed_reason: *451 + dismissed_comment: *452 + rule: *453 + tool: *454 + most_recent_instance: *455 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -71739,7 +71797,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *38 - '403': &456 + '403': &457 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -71766,9 +71824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *357 - *358 - - &457 + - *359 + - &458 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -71782,7 +71840,7 @@ paths: description: Response content: application/json: - schema: &458 + schema: &459 type: object properties: number: *189 @@ -71790,7 +71848,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: *449 + instances_url: *450 state: *198 fixed_at: *194 dismissed_by: @@ -71801,8 +71859,8 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: *450 - dismissed_comment: *451 + dismissed_reason: *451 + dismissed_comment: *452 rule: type: object properties: @@ -71856,8 +71914,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *453 - most_recent_instance: *454 + tool: *454 + most_recent_instance: *455 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -71871,7 +71929,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *455 + items: *456 required: - number - created_at @@ -71960,7 +72018,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *38 - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -71980,9 +72038,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 requestBody: required: true content: @@ -71997,8 +72055,8 @@ paths: enum: - open - dismissed - dismissed_reason: *450 - dismissed_comment: *451 + dismissed_reason: *451 + dismissed_comment: *452 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -72026,7 +72084,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: default: value: @@ -72102,7 +72160,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &462 + '403': &463 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -72129,15 +72187,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 responses: '200': description: Response content: application/json: - schema: &459 + schema: &460 type: object properties: status: @@ -72163,13 +72221,13 @@ paths: - description - started_at examples: - default: &460 + default: &461 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &461 + '400': &462 description: Bad Request content: application/json: @@ -72180,7 +72238,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': *456 + '403': *457 '404': *6 '500': *56 x-github: @@ -72205,29 +72263,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 responses: '200': description: OK content: application/json: - schema: *459 + schema: *460 examples: - default: *460 + default: *461 '202': description: Accepted content: application/json: - schema: *459 + schema: *460 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *461 + '400': *462 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -72259,9 +72317,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 requestBody: required: false content: @@ -72306,8 +72364,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *461 - '403': *462 + '400': *462 + '403': *463 '404': *6 '422': description: Unprocessable Entity @@ -72331,13 +72389,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 - *19 - *17 - - *463 - *464 + - *465 responses: '200': description: Response @@ -72348,10 +72406,10 @@ paths: items: type: object properties: - ref: *446 - analysis_key: *465 - environment: *466 - category: *467 + ref: *447 + analysis_key: *466 + environment: *467 + category: *468 state: type: string description: State of a code scanning alert instance. @@ -72366,7 +72424,7 @@ paths: properties: text: type: string - location: *468 + location: *469 html_url: type: string classifications: @@ -72374,7 +72432,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: *469 + items: *470 examples: default: value: @@ -72411,7 +72469,7 @@ paths: end_column: 50 classifications: - source - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -72445,25 +72503,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *357 - *358 - - *444 + - *359 - *445 + - *446 - *19 - *17 - - *464 + - *465 - 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: *446 + schema: *447 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &470 + schema: &471 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -72484,23 +72542,23 @@ paths: application/json: schema: type: array - items: &471 + items: &472 type: object properties: - ref: *446 - commit_sha: &479 + ref: *447 + commit_sha: &480 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: *465 + analysis_key: *466 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *467 + category: *468 error: type: string example: error reading field xyz @@ -72524,8 +72582,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *470 - tool: *453 + sarif_id: *471 + tool: *454 deletable: type: boolean warning: @@ -72586,7 +72644,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -72622,8 +72680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *357 - *358 + - *359 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72636,7 +72694,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: response: summary: application/json response @@ -72690,7 +72748,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *456 + '403': *457 '404': *6 '422': description: Response if analysis could not be processed @@ -72777,8 +72835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *357 - *358 + - *359 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72831,7 +72889,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': *462 + '403': *463 '404': *6 '503': *123 x-github: @@ -72853,8 +72911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -72862,7 +72920,7 @@ paths: application/json: schema: type: array - items: &472 + items: &473 title: CodeQL Database description: A CodeQL database. type: object @@ -72973,7 +73031,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': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -73002,8 +73060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *357 - *358 + - *359 - name: language in: path description: The language of the CodeQL database. @@ -73015,7 +73073,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *473 examples: default: value: @@ -73047,9 +73105,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': &509 + '302': &510 description: Found - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -73071,8 +73129,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *357 - *358 + - *359 - name: language in: path description: The language of the CodeQL database. @@ -73082,7 +73140,7 @@ paths: responses: '204': description: Response - '403': *462 + '403': *463 '404': *6 '503': *123 x-github: @@ -73110,8 +73168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -73120,7 +73178,7 @@ paths: type: object additionalProperties: false properties: - language: &473 + language: &474 type: string description: The language targeted by the CodeQL query enum: @@ -73200,7 +73258,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &477 + schema: &478 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -73210,7 +73268,7 @@ paths: description: The ID of the variant analysis. controller_repo: *68 actor: *4 - query_language: *473 + query_language: *474 query_pack_url: type: string description: The download url for the query pack. @@ -73257,7 +73315,7 @@ paths: items: type: object properties: - repository: &474 + repository: &475 title: Repository Identifier description: Repository Identifier type: object @@ -73293,7 +73351,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &478 + analysis_status: &479 type: string description: The new status of the CodeQL variant analysis repository task. @@ -73325,7 +73383,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &475 + access_mismatch_repos: &476 type: object properties: repository_count: @@ -73339,7 +73397,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: *474 + items: *475 required: - repository_count - repositories @@ -73361,8 +73419,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *475 - over_limit_repos: *475 + no_codeql_db_repos: *476 + over_limit_repos: *476 required: - access_mismatch_repos - not_found_repos @@ -73378,7 +73436,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &476 + value: &477 summary: Default response value: id: 1 @@ -73524,10 +73582,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *476 + value: *477 repository_lists: summary: Response for a successful variant analysis submission - value: *476 + value: *477 '404': *6 '422': description: Unable to process variant analysis submission @@ -73555,8 +73613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *357 - *358 + - *359 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -73568,9 +73626,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *478 examples: - default: *476 + default: *477 '404': *6 '503': *123 x-github: @@ -73593,7 +73651,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *357 + - *358 - name: repo in: path description: The name of the controller repository. @@ -73628,7 +73686,7 @@ paths: type: object properties: repository: *68 - analysis_status: *478 + analysis_status: *479 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -73753,8 +73811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -73839,7 +73897,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -73860,8 +73918,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -73953,7 +74011,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *462 + '403': *463 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -74024,8 +74082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -74033,7 +74091,7 @@ paths: schema: type: object properties: - commit_sha: *479 + commit_sha: *480 ref: type: string description: |- @@ -74091,7 +74149,7 @@ paths: schema: type: object properties: - id: *470 + id: *471 url: type: string description: The REST API URL for checking the status of the upload. @@ -74105,7 +74163,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': *462 + '403': *463 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -74128,8 +74186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *357 - *358 + - *359 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -74175,7 +74233,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': *456 + '403': *457 '404': description: Not Found if the sarif id does not match any upload '503': *123 @@ -74200,8 +74258,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -74282,8 +74340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *357 - *358 + - *359 - 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 @@ -74403,8 +74461,8 @@ paths: parameters: - *17 - *19 - - *357 - *358 + - *359 responses: '200': description: Response @@ -74420,7 +74478,7 @@ paths: type: integer codespaces: type: array - items: *263 + items: *264 examples: default: value: @@ -74718,8 +74776,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -74782,17 +74840,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '400': *14 '401': *25 '403': *29 @@ -74821,8 +74879,8 @@ paths: parameters: - *17 - *19 - - *357 - *358 + - *359 responses: '200': description: Response @@ -74886,8 +74944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *357 - *358 + - *359 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -74922,14 +74980,14 @@ paths: type: integer machines: type: array - items: &745 + items: &746 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *481 - required: *482 + properties: *482 + required: *483 examples: - default: &746 + default: &747 value: total_count: 2 machines: @@ -74969,8 +75027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *357 - *358 + - *359 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -75054,8 +75112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *357 - *358 + - *359 - 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 @@ -75121,8 +75179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -75140,7 +75198,7 @@ paths: type: integer secrets: type: array - items: &486 + items: &487 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -75160,7 +75218,7 @@ paths: - created_at - updated_at examples: - default: *483 + default: *484 headers: Link: *71 x-github: @@ -75183,16 +75241,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *484 + schema: *485 examples: - default: *485 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -75212,17 +75270,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *487 + default: *488 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75242,8 +75300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -75296,8 +75354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -75326,8 +75384,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *357 - *358 + - *359 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -75369,7 +75427,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &488 + properties: &489 login: type: string example: octocat @@ -75462,7 +75520,7 @@ paths: user_view_type: type: string example: public - required: &489 + required: &490 - avatar_url - events_url - followers_url @@ -75536,8 +75594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *357 - *358 + - *359 - *75 responses: '204': @@ -75584,8 +75642,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *357 - *358 + - *359 - *75 requestBody: required: false @@ -75612,7 +75670,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &559 + schema: &560 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -75841,8 +75899,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *357 - *358 + - *359 - *75 responses: '204': @@ -75874,8 +75932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *357 - *358 + - *359 - *75 responses: '200': @@ -75896,8 +75954,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *488 - required: *489 + properties: *489 + required: *490 nullable: true required: - permission @@ -75952,8 +76010,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -75963,7 +76021,7 @@ paths: application/json: schema: type: array - items: &490 + items: &491 title: Commit Comment description: Commit Comment type: object @@ -76021,7 +76079,7 @@ paths: - created_at - updated_at examples: - default: &495 + default: &496 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76080,17 +76138,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: &496 + default: &497 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76147,8 +76205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -76171,7 +76229,7 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: default: value: @@ -76222,8 +76280,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -76245,8 +76303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -76273,7 +76331,7 @@ paths: application/json: schema: type: array - items: &491 + items: &492 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -76316,7 +76374,7 @@ paths: - content - created_at examples: - default: &563 + default: &564 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -76361,8 +76419,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -76395,9 +76453,9 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: &492 + default: &493 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -76426,9 +76484,9 @@ paths: description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -76450,10 +76508,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *357 - *358 + - *359 - *105 - - &564 + - &565 name: reaction_id description: The unique identifier of the reaction. in: path @@ -76508,8 +76566,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *357 - *358 + - *359 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -76565,9 +76623,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: &635 + default: &636 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76661,9 +76719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *357 - *358 - - &494 + - *359 + - &495 name: commit_sha description: The SHA of the commit. in: path @@ -76735,9 +76793,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *357 - *358 - - *494 + - *359 + - *495 - *17 - *19 responses: @@ -76747,9 +76805,9 @@ paths: application/json: schema: type: array - items: *490 + items: *491 examples: - default: *495 + default: *496 headers: Link: *71 x-github: @@ -76777,9 +76835,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *357 - *358 - - *494 + - *359 + - *495 requestBody: required: true content: @@ -76814,9 +76872,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *496 + default: *497 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76844,9 +76902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *357 - *358 - - *494 + - *359 + - *495 - *17 - *19 responses: @@ -76856,9 +76914,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: &626 + default: &627 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -77395,11 +77453,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *357 - *358 + - *359 - *19 - *17 - - &497 + - &498 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)" @@ -77414,9 +77472,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: &613 + default: &614 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -77504,7 +77562,7 @@ paths: schema: type: string examples: - default: &506 + default: &507 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -77517,7 +77575,7 @@ paths: schema: type: string examples: - default: &507 + default: &508 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -77570,11 +77628,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *357 - *358 - - *497 + - *359 - *498 - *499 + - *500 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -77608,9 +77666,9 @@ paths: type: integer check_runs: type: array - items: *434 + items: *435 examples: - default: *500 + default: *501 headers: Link: *71 x-github: @@ -77635,9 +77693,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *357 - *358 - - *497 + - *359 + - *498 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -77645,7 +77703,7 @@ paths: schema: type: integer example: 1 - - *498 + - *499 - *17 - *19 responses: @@ -77663,7 +77721,7 @@ paths: type: integer check_suites: type: array - items: *439 + items: *440 examples: default: value: @@ -77863,9 +77921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *357 - *358 - - *497 + - *359 + - *498 - *17 - *19 responses: @@ -78063,9 +78121,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *357 - *358 - - *497 + - *359 + - *498 - *17 - *19 responses: @@ -78075,7 +78133,7 @@ paths: application/json: schema: type: array - items: &723 + items: &724 title: Status description: The status of a commit. type: object @@ -78156,7 +78214,7 @@ paths: site_admin: false headers: Link: *71 - '301': *361 + '301': *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78184,8 +78242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -78214,20 +78272,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *501 - required: *502 + properties: *502 + required: *503 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &503 + properties: &504 url: type: string format: uri html_url: type: string format: uri - required: &504 + required: &505 - url - html_url nullable: true @@ -78241,26 +78299,26 @@ paths: contributing: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true readme: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true issue_template: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true pull_request_template: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true required: - code_of_conduct @@ -78387,8 +78445,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *357 - *358 + - *359 - *19 - *17 - name: basehead @@ -78431,8 +78489,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *493 - merge_base_commit: *493 + base_commit: *494 + merge_base_commit: *494 status: type: string enum: @@ -78452,10 +78510,10 @@ paths: example: 6 commits: type: array - items: *493 + items: *494 files: type: array - items: *505 + items: *506 required: - url - html_url @@ -78701,12 +78759,12 @@ paths: schema: type: string examples: - default: *506 + default: *507 application/vnd.github.patch: schema: type: string examples: - default: *507 + default: *508 '404': *6 '500': *56 '503': *123 @@ -78751,8 +78809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *357 - *358 + - *359 - name: path description: path parameter in: path @@ -78912,7 +78970,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &508 + response-if-content-is-a-file-github-object: &509 summary: Response if content is a file value: type: file @@ -79044,7 +79102,7 @@ paths: - size - type - url - - &641 + - &642 title: Content File description: Content File type: object @@ -79245,7 +79303,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *508 + response-if-content-is-a-file: *509 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -79314,7 +79372,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *509 + '302': *510 '304': *38 x-github: githubCloudOnly: false @@ -79337,8 +79395,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *357 - *358 + - *359 - name: path description: path parameter in: path @@ -79431,7 +79489,7 @@ paths: description: Response content: application/json: - schema: &510 + schema: &511 title: File Commit description: File Commit type: object @@ -79583,7 +79641,7 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: example-for-creating-a-file: value: @@ -79637,7 +79695,7 @@ paths: schema: oneOf: - *3 - - &540 + - &541 description: Repository rule violation was detected type: object properties: @@ -79658,7 +79716,7 @@ paths: items: type: object properties: - placeholder_id: &714 + placeholder_id: &715 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -79690,8 +79748,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *357 - *358 + - *359 - name: path description: path parameter in: path @@ -79752,7 +79810,7 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: default: value: @@ -79807,8 +79865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *357 - *358 + - *359 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -79937,8 +79995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -80089,8 +80147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *357 - *358 + - *359 - *213 - *214 - *215 @@ -80103,10 +80161,11 @@ paths: schema: type: string - *218 - - *511 + - *512 - *219 - *220 - *221 + - *222 - *63 - *48 - *49 @@ -80118,7 +80177,7 @@ paths: application/json: schema: type: array - items: &515 + items: &516 type: object description: A Dependabot alert. properties: @@ -80165,7 +80224,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *512 + security_advisory: *513 security_vulnerability: *67 url: *192 html_url: *193 @@ -80196,8 +80255,8 @@ paths: nullable: true maxLength: 280 fixed_at: *194 - auto_dismissed_at: *513 - dismissal_request: *514 + auto_dismissed_at: *514 + dismissal_request: *515 assignees: type: array description: The users assigned to this alert. @@ -80230,6 +80289,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -80351,6 +80411,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -80452,9 +80513,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *357 - *358 - - &516 + - *359 + - &517 name: alert_number in: path description: |- @@ -80469,7 +80530,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: default: value: @@ -80481,6 +80542,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -80601,9 +80663,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *357 - *358 - - *516 + - *359 + - *517 requestBody: required: true content: @@ -80676,7 +80738,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: default: value: @@ -80688,6 +80750,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -80806,8 +80869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -80825,7 +80888,7 @@ paths: type: integer secrets: type: array - items: &519 + items: &520 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -80878,16 +80941,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80907,15 +80970,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -80941,8 +81004,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -80995,8 +81058,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -81019,8 +81082,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *357 - *358 + - *359 - 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 @@ -81183,8 +81246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -81422,8 +81485,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - *358 + - *359 - name: sbom_uuid in: path required: true @@ -81434,7 +81497,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *520 + Location: *521 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -81455,8 +81518,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -81494,8 +81557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -81570,7 +81633,7 @@ paths: - version - url additionalProperties: false - metadata: &521 + metadata: &522 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -81603,7 +81666,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *521 + metadata: *522 resolved: type: object description: A collection of resolved package dependencies. @@ -81616,7 +81679,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *521 + metadata: *522 relationship: type: string description: A notation of whether a dependency is requested @@ -81745,8 +81808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *357 - *358 + - *359 - name: sha description: The SHA recorded at creation time. in: query @@ -81786,9 +81849,9 @@ paths: application/json: schema: type: array - items: *522 + items: *523 examples: - default: *523 + default: *524 headers: Link: *71 x-github: @@ -81854,8 +81917,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -81936,7 +81999,7 @@ paths: description: Response content: application/json: - schema: *522 + schema: *523 examples: simple-example: summary: Simple example @@ -82009,9 +82072,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *357 - *358 - - &524 + - *359 + - &525 name: deployment_id description: deployment_id parameter in: path @@ -82023,7 +82086,7 @@ paths: description: Response content: application/json: - schema: *522 + schema: *523 examples: default: value: @@ -82088,9 +82151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *357 - *358 - - *524 + - *359 + - *525 responses: '204': description: Response @@ -82112,9 +82175,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *357 - *358 - - *524 + - *359 + - *525 - *17 - *19 responses: @@ -82124,7 +82187,7 @@ paths: application/json: schema: type: array - items: &525 + items: &526 title: Deployment Status description: The status of a deployment. type: object @@ -82285,9 +82348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *357 - *358 - - *524 + - *359 + - *525 requestBody: required: true content: @@ -82362,9 +82425,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: &526 + default: &527 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -82420,9 +82483,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *357 - *358 - - *524 + - *359 + - *525 - name: status_id in: path required: true @@ -82433,9 +82496,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '404': *6 x-github: githubCloudOnly: false @@ -82460,8 +82523,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -82518,8 +82581,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -82536,7 +82599,7 @@ paths: type: integer environments: type: array - items: &528 + items: &529 title: Environment description: Details of a deployment environment type: object @@ -82588,7 +82651,7 @@ paths: type: type: string example: wait_timer - wait_timer: &530 + wait_timer: &531 type: integer example: 30 description: The amount of time to delay a job after @@ -82625,7 +82688,7 @@ paths: items: type: object properties: - type: *527 + type: *528 reviewer: anyOf: - *4 @@ -82649,7 +82712,7 @@ paths: - id - node_id - type - deployment_branch_policy: &531 + deployment_branch_policy: &532 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -82765,9 +82828,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *357 - *358 - - &529 + - *359 + - &530 name: environment_name in: path required: true @@ -82780,9 +82843,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &532 + default: &533 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -82866,9 +82929,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *357 - *358 - - *529 + - *359 + - *530 requestBody: required: false content: @@ -82877,7 +82940,7 @@ paths: type: object nullable: true properties: - wait_timer: *530 + wait_timer: *531 prevent_self_review: type: boolean example: false @@ -82894,13 +82957,13 @@ paths: items: type: object properties: - type: *527 + type: *528 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *531 + deployment_branch_policy: *532 additionalProperties: false examples: default: @@ -82920,9 +82983,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *532 + default: *533 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -82946,9 +83009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *357 - *358 - - *529 + - *359 + - *530 responses: '204': description: Default response @@ -82973,9 +83036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *17 - *19 responses: @@ -82993,7 +83056,7 @@ paths: example: 2 branch_policies: type: array - items: &533 + items: &534 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -83050,9 +83113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 + - *359 + - *530 requestBody: required: true content: @@ -83098,9 +83161,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - example-wildcard: &534 + example-wildcard: &535 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -83142,10 +83205,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 - - &535 + - *359 + - *530 + - &536 name: branch_policy_id in: path required: true @@ -83157,9 +83220,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83178,10 +83241,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 - - *535 + - *359 + - *530 + - *536 requestBody: required: true content: @@ -83209,9 +83272,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83230,10 +83293,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 - - *535 + - *359 + - *530 + - *536 responses: '204': description: Response @@ -83258,9 +83321,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *529 + - *530 + - *359 - *358 - - *357 responses: '200': description: List of deployment protection rules @@ -83276,7 +83339,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &536 + items: &537 title: Deployment protection rule description: Deployment protection rule type: object @@ -83295,7 +83358,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &537 + app: &538 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -83394,9 +83457,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: - - *529 + - *530 + - *359 - *358 - - *357 requestBody: content: application/json: @@ -83417,9 +83480,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *536 + schema: *537 examples: - default: &538 + default: &539 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -83454,9 +83517,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: - - *529 + - *530 + - *359 - *358 - - *357 - *19 - *17 responses: @@ -83475,7 +83538,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *537 + items: *538 examples: default: value: @@ -83510,10 +83573,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *357 - *358 - - *529 - - &539 + - *359 + - *530 + - &540 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -83525,9 +83588,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: - default: *538 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83548,10 +83611,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *529 + - *530 + - *359 - *358 - - *357 - - *539 + - *540 responses: '204': description: Response @@ -83577,9 +83640,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *17 - *19 responses: @@ -83597,9 +83660,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -83624,9 +83687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *357 - *358 - - *529 + - *359 + - *530 responses: '200': description: Response @@ -83656,18 +83719,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *172 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *415 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83689,9 +83752,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *172 requestBody: required: true @@ -83749,9 +83812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *172 responses: '204': @@ -83777,9 +83840,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *181 - *19 responses: @@ -83797,9 +83860,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -83822,9 +83885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *357 - *358 - - *529 + - *359 + - *530 requestBody: required: true content: @@ -83876,18 +83939,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *175 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *416 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83908,10 +83971,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *357 - *358 + - *359 - *175 - - *529 + - *530 requestBody: required: true content: @@ -83953,10 +84016,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *357 - *358 + - *359 - *175 - - *529 + - *530 responses: '204': description: Response @@ -83978,8 +84041,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -84047,8 +84110,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *357 - *358 + - *359 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -84207,8 +84270,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -84240,9 +84303,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 '400': *14 '422': *15 '403': *29 @@ -84263,8 +84326,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -84324,7 +84387,7 @@ paths: schema: oneOf: - *133 - - *540 + - *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84349,8 +84412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *357 - *358 + - *359 - name: file_sha in: path required: true @@ -84449,8 +84512,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -84559,7 +84622,7 @@ paths: description: Response content: application/json: - schema: &541 + schema: &542 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -84773,15 +84836,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *357 - *358 - - *494 + - *359 + - *495 responses: '200': description: Response content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -84837,9 +84900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *357 - *358 - - &542 + - *359 + - &543 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. @@ -84856,7 +84919,7 @@ paths: application/json: schema: type: array - items: &543 + items: &544 title: Git Reference description: Git references within a repository type: object @@ -84931,17 +84994,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *357 - *358 - - *542 + - *359 + - *543 responses: '200': description: Response content: application/json: - schema: *543 + schema: *544 examples: - default: &544 + default: &545 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -84970,8 +85033,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -85000,9 +85063,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *544 examples: - default: *544 + default: *545 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -85028,9 +85091,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *357 - *358 - - *542 + - *359 + - *543 requestBody: required: true content: @@ -85059,9 +85122,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *544 examples: - default: *544 + default: *545 '422': *15 '409': *55 x-github: @@ -85079,9 +85142,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *357 - *358 - - *542 + - *359 + - *543 responses: '204': description: Response @@ -85136,8 +85199,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -85204,7 +85267,7 @@ paths: description: Response content: application/json: - schema: &546 + schema: &547 title: Git Tag description: Metadata for a Git tag type: object @@ -85255,7 +85318,7 @@ paths: - sha - type - url - verification: *545 + verification: *546 required: - sha - url @@ -85265,7 +85328,7 @@ paths: - tag - message examples: - default: &547 + default: &548 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -85338,8 +85401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *357 - *358 + - *359 - name: tag_sha in: path required: true @@ -85350,9 +85413,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *547 + default: *548 '404': *6 '409': *55 x-github: @@ -85376,8 +85439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -85450,7 +85513,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &549 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -85546,8 +85609,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *357 - *358 + - *359 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -85570,7 +85633,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: default-response: summary: Default response @@ -85628,8 +85691,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -85672,8 +85735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -85683,7 +85746,7 @@ paths: application/json: schema: type: array - items: &549 + items: &550 title: Webhook description: Webhooks for repositories. type: object @@ -85737,7 +85800,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &839 + last_response: &840 title: Hook Response type: object properties: @@ -85811,8 +85874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -85864,9 +85927,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: &550 + default: &551 value: type: Repository id: 12345678 @@ -85914,17 +85977,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 '404': *6 x-github: githubCloudOnly: false @@ -85944,9 +86007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 requestBody: required: true content: @@ -85991,9 +86054,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 '422': *15 '404': *6 x-github: @@ -86014,9 +86077,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '204': description: Response @@ -86040,9 +86103,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '200': description: Response @@ -86069,9 +86132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *357 - *358 - - *231 + - *359 + - *232 requestBody: required: false content: @@ -86115,12 +86178,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *357 - *358 - - *231 - - *17 + - *359 - *232 + - *17 - *233 + - *234 responses: '200': description: Response @@ -86128,9 +86191,9 @@ paths: application/json: schema: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '400': *14 '422': *15 x-github: @@ -86149,18 +86212,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 - *16 responses: '200': description: Response content: application/json: - schema: *236 + schema: *237 examples: - default: *237 + default: *238 '400': *14 '422': *15 x-github: @@ -86179,9 +86242,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 - *16 responses: '202': *40 @@ -86204,9 +86267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '204': description: Response @@ -86231,9 +86294,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '204': description: Response @@ -86256,8 +86319,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response if immutable releases are enabled @@ -86303,8 +86366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *357 - *358 + - *359 responses: '204': *60 '409': *55 @@ -86324,8 +86387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *357 - *358 + - *359 responses: '204': *60 '409': *55 @@ -86382,14 +86445,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &551 + schema: &552 title: Import description: A repository import from an external source. type: object @@ -86488,7 +86551,7 @@ paths: - html_url - authors_url examples: - default: &554 + default: &555 value: vcs: subversion use_lfs: true @@ -86504,7 +86567,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': &552 + '503': &553 description: Unavailable due to service under maintenance. content: application/json: @@ -86533,8 +86596,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -86582,7 +86645,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -86607,7 +86670,7 @@ paths: type: string '422': *15 '404': *6 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86635,8 +86698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -86685,7 +86748,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: example-1: summary: Example 1 @@ -86733,7 +86796,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': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86756,12 +86819,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *357 - *358 + - *359 responses: '204': description: Response - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86787,9 +86850,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *357 - *358 - - &768 + - *359 + - &769 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -86803,7 +86866,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Porter Author description: Porter Author type: object @@ -86857,7 +86920,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': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86882,8 +86945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *357 - *358 + - *359 - name: author_id in: path required: true @@ -86913,7 +86976,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -86926,7 +86989,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86950,8 +87013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -86992,7 +87055,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87020,8 +87083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -87048,11 +87111,11 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *554 + default: *555 '422': *15 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87075,8 +87138,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -87084,8 +87147,8 @@ paths: application/json: schema: *22 examples: - default: *555 - '301': *361 + default: *556 + '301': *362 '404': *6 x-github: githubCloudOnly: false @@ -87105,8 +87168,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -87114,12 +87177,12 @@ paths: application/json: schema: anyOf: - - *250 + - *251 - type: object properties: {} additionalProperties: false examples: - default: &557 + default: &558 value: limit: collaborators_only origin: repository @@ -87144,13 +87207,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *556 + schema: *557 examples: default: summary: Example request body @@ -87162,9 +87225,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: - default: *557 + default: *558 '409': description: Response x-github: @@ -87186,8 +87249,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -87214,8 +87277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -87269,13 +87332,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: &558 + schema: &559 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -87325,13 +87388,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *558 + schema: *559 examples: default: summary: Example request body @@ -87364,8 +87427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -87418,8 +87481,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -87495,8 +87558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -87506,9 +87569,9 @@ paths: application/json: schema: type: array - items: *559 + items: *560 examples: - default: &761 + default: &762 value: - id: 1 repository: @@ -87639,9 +87702,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *357 - *358 - - *254 + - *359 + - *255 requestBody: required: false content: @@ -87670,7 +87733,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: default: value: @@ -87801,9 +87864,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *357 - *358 - - *254 + - *359 + - *255 responses: '204': description: Response @@ -87826,8 +87889,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -87835,9 +87898,9 @@ paths: application/json: schema: type: array - items: *258 + items: *259 examples: - default: *560 + default: *561 '404': *6 x-github: githubCloudOnly: false @@ -87866,8 +87929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *357 - *358 + - *359 - 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 @@ -87929,7 +87992,7 @@ paths: required: false schema: type: string - - *261 + - *262 - name: sort description: What to sort results by. in: query @@ -87954,7 +88017,7 @@ paths: type: array items: *89 examples: - default: &574 + default: &575 value: - id: 1 node_id: MDU6SXNzdWUx @@ -88103,7 +88166,7 @@ paths: state_reason: completed headers: Link: *71 - '301': *361 + '301': *362 '422': *15 '404': *6 x-github: @@ -88132,8 +88195,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -88242,7 +88305,7 @@ paths: application/json: schema: *89 examples: - default: &571 + default: &572 value: id: 1 node_id: MDU6SXNzdWUx @@ -88427,8 +88490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *357 - *358 + - *359 - *113 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -88449,9 +88512,9 @@ paths: application/json: schema: type: array - items: *561 + items: *562 examples: - default: &573 + default: &574 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88510,17 +88573,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88576,8 +88639,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -88600,9 +88663,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '422': *15 x-github: githubCloudOnly: false @@ -88620,8 +88683,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -88650,15 +88713,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -88731,8 +88794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -88758,8 +88821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -88786,9 +88849,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -88809,8 +88872,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -88843,16 +88906,16 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -88874,10 +88937,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *357 - *358 + - *359 - *105 - - *564 + - *565 responses: '204': description: Response @@ -88897,8 +88960,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -88908,7 +88971,7 @@ paths: application/json: schema: type: array - items: &570 + items: &571 title: Issue Event description: Issue Event type: object @@ -88951,8 +89014,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true label: title: Issue Event Label @@ -89061,7 +89124,7 @@ paths: required: - from - to - issue_type: &567 + issue_type: &568 title: Issue Type description: The type of issue. type: object @@ -89089,14 +89152,14 @@ paths: required: - id - name - prev_issue_type: *567 + prev_issue_type: *568 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &568 + properties: &569 number: type: integer description: The number of the referenced issue. @@ -89134,7 +89197,7 @@ paths: - id - node_id - name - required: &569 + required: &570 - number - title - state @@ -89146,24 +89209,24 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -89174,7 +89237,7 @@ paths: is disabled or the event type does not support intent. type: object nullable: true - properties: &575 + properties: &576 rationale: type: string description: The reasoning the agent provided for the change. @@ -89387,8 +89450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *357 - *358 + - *359 - name: event_id in: path required: true @@ -89399,7 +89462,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: default: value: @@ -89626,9 +89689,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *357 - *358 - - &572 + - *359 + - &573 name: issue_number description: The number that identifies the issue. in: path @@ -89644,7 +89707,7 @@ paths: examples: default: summary: Issue - value: *571 + value: *572 pinned_comment: summary: Issue with pinned comment value: @@ -89843,7 +89906,7 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *361 + '301': *362 '404': *6 '410': *33 '304': *38 @@ -89870,9 +89933,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -90224,11 +90287,11 @@ paths: - already_applied - issue_already_closed examples: - default: *571 + default: *572 '422': *15 '503': *123 '403': *29 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -90248,9 +90311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -90300,7 +90363,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90316,9 +90379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: content: application/json: @@ -90345,7 +90408,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90367,9 +90430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: assignee in: path required: true @@ -90409,9 +90472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *96 - *17 - *19 @@ -90422,9 +90485,9 @@ paths: application/json: schema: type: array - items: *561 + items: *562 examples: - default: *573 + default: *574 headers: Link: *71 '404': *6 @@ -90457,9 +90520,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -90481,9 +90544,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -90518,9 +90581,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -90532,10 +90595,10 @@ paths: type: array items: *89 examples: - default: *574 + default: *575 headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -90565,9 +90628,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -90591,13 +90654,13 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *361 + '301': *362 '403': *29 '410': *33 '422': *15 @@ -90630,9 +90693,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -90646,8 +90709,8 @@ paths: application/json: schema: *89 examples: - default: *571 - '301': *361 + default: *572 + '301': *362 '400': *14 '401': *25 '403': *29 @@ -90678,9 +90741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -90692,10 +90755,10 @@ paths: type: array items: *89 examples: - default: *574 + default: *575 headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -90714,9 +90777,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -90730,7 +90793,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &581 + - &582 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -90783,7 +90846,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - label - id @@ -90795,7 +90858,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &583 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -90848,7 +90911,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - label - id @@ -90894,7 +90957,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - id - node_id @@ -90953,7 +91016,7 @@ paths: - performed_via_github_app - assignee - assigner - - &583 + - &584 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -91004,7 +91067,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &584 + - &585 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -91055,7 +91118,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &585 + - &586 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -91109,7 +91172,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &586 + - &587 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -91156,7 +91219,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &587 + - &588 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -91203,7 +91266,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &588 + - &589 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -91263,7 +91326,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &589 + - &590 title: Locked Issue Event description: Locked Issue Event type: object @@ -91311,7 +91374,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &590 + - &591 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -91377,7 +91440,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &591 + - &592 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -91443,7 +91506,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &592 + - &593 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -91509,7 +91572,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &593 + - &594 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -91565,7 +91628,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &598 + - &599 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -91598,7 +91661,7 @@ paths: nullable: true properties: *84 required: *85 - issue_type: *567 + issue_type: *568 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -91609,7 +91672,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - issue_type - id @@ -91621,7 +91684,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &599 + - &600 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -91654,7 +91717,7 @@ paths: nullable: true properties: *84 required: *85 - prev_issue_type: *567 + prev_issue_type: *568 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -91665,7 +91728,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - prev_issue_type - id @@ -91677,7 +91740,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &600 + - &601 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -91710,8 +91773,8 @@ paths: nullable: true properties: *84 required: *85 - issue_type: *567 - prev_issue_type: *567 + issue_type: *568 + prev_issue_type: *568 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -91722,7 +91785,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - issue_type - prev_issue_type @@ -91735,7 +91798,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &601 + - &602 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -91775,8 +91838,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - sub_issue - id @@ -91788,7 +91851,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &602 + - &603 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -91828,8 +91891,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - sub_issue - id @@ -91841,7 +91904,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &603 + - &604 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -91881,8 +91944,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - parent_issue - id @@ -91894,7 +91957,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &604 + - &605 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -91934,8 +91997,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - parent_issue - id @@ -91947,7 +92010,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &605 + - &606 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -91987,8 +92050,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocked_by - id @@ -92000,7 +92063,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &606 + - &607 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -92040,8 +92103,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocked_by - id @@ -92053,7 +92116,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &607 + - &608 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -92093,8 +92156,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocking - id @@ -92106,7 +92169,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &608 + - &609 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -92146,8 +92209,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocking - id @@ -92211,9 +92274,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -92223,9 +92286,9 @@ paths: application/json: schema: type: array - items: *576 + items: *577 examples: - default: &577 + default: &578 value: - issue_field_id: 1 issue_field_name: DRI @@ -92265,7 +92328,7 @@ paths: color: green headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -92296,9 +92359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -92368,9 +92431,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *576 + items: *577 examples: - default: *577 + default: *578 '400': *14 '403': *29 '404': *6 @@ -92406,9 +92469,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -92473,9 +92536,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *576 + items: *577 examples: - default: *577 + default: *578 '400': *14 '403': *29 '404': *6 @@ -92506,10 +92569,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *357 - *358 - - *572 - - *257 + - *359 + - *573 + - *258 responses: '204': description: Issue field value deleted successfully @@ -92534,9 +92597,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -92548,7 +92611,7 @@ paths: type: array items: *88 examples: - default: &578 + default: &579 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92566,7 +92629,7 @@ paths: default: false headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -92584,9 +92647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -92666,8 +92729,8 @@ paths: type: array items: *88 examples: - default: *578 - '301': *361 + default: *579 + '301': *362 '404': *6 '410': *33 '422': *15 @@ -92686,9 +92749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -92750,8 +92813,8 @@ paths: type: array items: *88 examples: - default: *578 - '301': *361 + default: *579 + '301': *362 '404': *6 '410': *33 '422': *15 @@ -92770,13 +92833,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 responses: '204': description: Response - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -92797,9 +92860,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: name in: path required: true @@ -92823,7 +92886,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -92845,9 +92908,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -92893,9 +92956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 responses: '204': description: Response @@ -92925,9 +92988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 responses: '200': description: Response @@ -92935,8 +92998,8 @@ paths: application/json: schema: *89 examples: - default: *571 - '301': *361 + default: *572 + '301': *362 '404': *6 '410': *33 x-github: @@ -92955,9 +93018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - 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. @@ -92983,9 +93046,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -93007,9 +93070,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -93041,16 +93104,16 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -93072,10 +93135,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *357 - *358 - - *572 - - *564 + - *359 + - *573 + - *565 responses: '204': description: Response @@ -93104,9 +93167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -93130,7 +93193,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -93163,9 +93226,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -93177,7 +93240,7 @@ paths: type: array items: *89 examples: - default: *574 + default: *575 headers: Link: *71 '404': *6 @@ -93209,9 +93272,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -93240,7 +93303,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -93267,9 +93330,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -93302,7 +93365,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 '403': *29 '404': *6 '422': *7 @@ -93331,9 +93394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-issue-suggestions parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: state in: query required: false @@ -93370,7 +93433,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -93522,9 +93585,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#approve-an-issue-suggestion parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: suggestion_id in: path required: true @@ -93536,9 +93599,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: &580 + default: &581 value: id: 12 issue_id: 4567 @@ -93576,9 +93639,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: suggestion_id in: path required: true @@ -93590,9 +93653,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *580 + default: *581 '403': *29 '404': *6 '422': *15 @@ -93612,9 +93675,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 - name: exclude @@ -93635,7 +93698,6 @@ paths: description: Timeline Event type: object anyOf: - - *581 - *582 - *583 - *584 @@ -93648,6 +93710,7 @@ paths: - *591 - *592 - *593 + - *594 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -93708,15 +93771,15 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *594 - required: *595 + properties: *595 + required: *596 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *596 - required: *597 + properties: *597 + required: *598 nullable: true required: - event @@ -93971,7 +94034,7 @@ paths: type: string comments: type: array - items: &629 + items: &630 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -94186,7 +94249,7 @@ paths: type: string comments: type: array - items: *490 + items: *491 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -94230,7 +94293,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - id - node_id @@ -94331,7 +94394,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - id - node_id @@ -94342,7 +94405,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *598 - *599 - *600 - *601 @@ -94353,6 +94415,7 @@ paths: - *606 - *607 - *608 + - *609 examples: default: value: @@ -94526,8 +94589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -94537,7 +94600,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -94603,8 +94666,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -94640,9 +94703,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: &610 + default: &611 value: id: 1 key: ssh-rsa AAA... @@ -94676,9 +94739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *357 - *358 - - &611 + - *359 + - &612 name: key_id description: The unique identifier of the key. in: path @@ -94690,9 +94753,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '404': *6 x-github: githubCloudOnly: false @@ -94710,9 +94773,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *357 - *358 - - *611 + - *359 + - *612 responses: '204': description: Response @@ -94732,8 +94795,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -94745,7 +94808,7 @@ paths: type: array items: *88 examples: - default: *578 + default: *579 headers: Link: *71 '404': *6 @@ -94766,8 +94829,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -94805,7 +94868,7 @@ paths: application/json: schema: *88 examples: - default: &612 + default: &613 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94837,8 +94900,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *357 - *358 + - *359 - name: name in: path required: true @@ -94851,7 +94914,7 @@ paths: application/json: schema: *88 examples: - default: *612 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -94868,8 +94931,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *357 - *358 + - *359 - name: name in: path required: true @@ -94934,8 +94997,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *357 - *358 + - *359 - name: name in: path required: true @@ -94961,8 +95024,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -95001,9 +95064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *357 - *358 - - *463 + - *359 + - *464 responses: '200': description: Response @@ -95148,8 +95211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -95214,8 +95277,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -95249,9 +95312,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *493 + schema: *494 examples: - default: *613 + default: *614 '204': description: Response when already merged '404': @@ -95276,8 +95339,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *357 - *358 + - *359 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -95318,12 +95381,12 @@ paths: application/json: schema: type: array - items: &614 + items: &615 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 examples: default: value: @@ -95379,8 +95442,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -95420,9 +95483,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &615 + default: &616 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -95481,9 +95544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *357 - *358 - - &616 + - *359 + - &617 name: milestone_number description: The number that identifies the milestone. in: path @@ -95495,9 +95558,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 '404': *6 x-github: githubCloudOnly: false @@ -95514,9 +95577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *357 - *358 - - *616 + - *359 + - *617 requestBody: required: false content: @@ -95554,9 +95617,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95572,9 +95635,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *357 - *358 - - *616 + - *359 + - *617 responses: '204': description: Response @@ -95595,9 +95658,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *357 - *358 - - *616 + - *359 + - *617 - *17 - *19 responses: @@ -95609,7 +95672,7 @@ paths: type: array items: *88 examples: - default: *578 + default: *579 headers: Link: *71 x-github: @@ -95628,12 +95691,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *357 - *358 - - *617 + - *359 - *618 - - *96 - *619 + - *96 + - *620 - *17 - *19 responses: @@ -95645,7 +95708,7 @@ paths: type: array items: *116 examples: - default: *620 + default: *621 headers: Link: *71 x-github: @@ -95669,8 +95732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -95728,14 +95791,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &621 + schema: &622 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -95860,7 +95923,7 @@ paths: - custom_404 - public examples: - default: &622 + default: &623 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -95901,8 +95964,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -95956,9 +96019,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *622 examples: - default: *622 + default: *623 '422': *15 '409': *55 x-github: @@ -95981,8 +96044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -96081,8 +96144,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -96108,8 +96171,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -96119,7 +96182,7 @@ paths: application/json: schema: type: array - items: &623 + items: &624 title: Page Build description: Page Build type: object @@ -96213,8 +96276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -96259,16 +96322,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *623 + schema: *624 examples: - default: &624 + default: &625 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -96316,8 +96379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *357 - *358 + - *359 - name: build_id in: path required: true @@ -96328,9 +96391,9 @@ paths: description: Response content: application/json: - schema: *623 + schema: *624 examples: - default: *624 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96350,8 +96413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -96456,9 +96519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *357 - *358 - - &625 + - *359 + - &626 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -96516,9 +96579,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *357 - *358 - - *625 + - *359 + - *626 responses: '204': *60 '404': *6 @@ -96545,8 +96608,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -96804,8 +96867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Private vulnerability reporting status @@ -96842,8 +96905,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': *60 '422': *14 @@ -96864,8 +96927,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': *60 '422': *14 @@ -96887,8 +96950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -96896,7 +96959,7 @@ paths: application/json: schema: type: array - items: *310 + items: *311 examples: default: value: @@ -96927,8 +96990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -96940,7 +97003,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *310 + items: *311 required: - properties examples: @@ -96990,8 +97053,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *357 - *358 + - *359 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -97051,9 +97114,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: *626 + default: *627 headers: Link: *71 '304': *38 @@ -97085,8 +97148,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -97151,7 +97214,7 @@ paths: description: Response content: application/json: - schema: &631 + schema: &632 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -97262,8 +97325,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 nullable: true active_lock_reason: type: string @@ -97306,7 +97369,7 @@ paths: items: *4 requested_teams: type: array - items: *349 + items: *350 head: type: object properties: @@ -97344,14 +97407,14 @@ paths: _links: type: object properties: - comments: *297 - commits: *297 - statuses: *297 - html: *297 - issue: *297 - review_comments: *297 - review_comment: *297 - self: *297 + comments: *298 + commits: *298 + statuses: *298 + html: *298 + issue: *298 + review_comments: *298 + review_comment: *298 + self: *298 required: - comments - commits @@ -97362,8 +97425,8 @@ paths: - review_comment - self author_association: *86 - auto_merge: *627 - stack: *628 + auto_merge: *628 + stack: *629 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -97455,7 +97518,7 @@ paths: - merged_by - review_comments examples: - default: &632 + default: &633 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -97982,8 +98045,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *357 - *358 + - *359 - name: sort in: query required: false @@ -98012,9 +98075,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: &634 + default: &635 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -98091,17 +98154,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: &630 + default: &631 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -98176,8 +98239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -98200,9 +98263,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98218,8 +98281,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -98241,8 +98304,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *357 - *358 + - *359 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -98269,9 +98332,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -98292,8 +98355,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -98326,16 +98389,16 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -98357,10 +98420,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *357 - *358 + - *359 - *105 - - *564 + - *565 responses: '204': description: Response @@ -98403,9 +98466,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *357 - *358 - - &633 + - *359 + - &634 name: pull_number description: The number that identifies the pull request. in: path @@ -98418,9 +98481,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '304': *38 '404': *6 '406': @@ -98455,9 +98518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -98499,9 +98562,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '422': *15 '403': *29 x-github: @@ -98523,9 +98586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: true content: @@ -98585,17 +98648,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '401': *25 '403': *29 '404': *6 @@ -98625,9 +98688,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *113 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -98648,9 +98711,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *634 + default: *635 headers: Link: *71 x-github: @@ -98683,9 +98746,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: true content: @@ -98790,7 +98853,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: example-for-a-multi-line-comment: value: @@ -98878,9 +98941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *105 requestBody: required: true @@ -98903,7 +98966,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: default: value: @@ -98989,9 +99052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *17 - *19 responses: @@ -99001,9 +99064,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *635 + default: *636 headers: Link: *71 x-github: @@ -99033,9 +99096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *17 - *19 responses: @@ -99045,7 +99108,7 @@ paths: application/json: schema: type: array - items: *505 + items: *506 examples: default: value: @@ -99083,9 +99146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *357 - *358 - - *633 + - *359 + - *634 responses: '204': description: Response if pull request has been merged @@ -99108,9 +99171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -99232,9 +99295,9 @@ paths: category: pulls subcategory: pulls parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -99286,7 +99349,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &636 + schema: &637 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -99371,7 +99434,7 @@ paths: merge queue content: application/json: - schema: *636 + schema: *637 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -99391,7 +99454,7 @@ paths: this pull request content: application/json: - schema: *636 + schema: *637 examples: response-if-a-merge-request-already-exists: value: @@ -99407,7 +99470,7 @@ paths: it is closed content: application/json: - schema: *636 + schema: *637 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -99439,9 +99502,9 @@ paths: category: pulls subcategory: pulls parameters: - - *357 - *358 - - *633 + - *359 + - *634 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -99454,7 +99517,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *636 + schema: *637 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -99502,9 +99565,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 responses: '200': description: Response @@ -99579,9 +99642,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -99618,7 +99681,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: default: value: @@ -100154,9 +100217,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: true content: @@ -100190,7 +100253,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: default: value: @@ -100695,9 +100758,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *17 - *19 responses: @@ -100707,7 +100770,7 @@ paths: application/json: schema: type: array - items: &637 + items: &638 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -100858,9 +100921,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -100946,9 +101009,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: &639 + default: &640 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -101011,10 +101074,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - &638 + - *359 + - *634 + - &639 name: review_id description: The unique identifier of the review. in: path @@ -101026,9 +101089,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: &640 + default: &641 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -101087,10 +101150,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 requestBody: required: true content: @@ -101113,7 +101176,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: default: value: @@ -101175,18 +101238,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 responses: '200': description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *639 + default: *640 '422': *7 '404': *6 x-github: @@ -101213,10 +101276,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 - *17 - *19 responses: @@ -101299,9 +101362,9 @@ paths: _links: type: object properties: - self: *297 - html: *297 - pull_request: *297 + self: *298 + html: *298 + pull_request: *298 required: - self - html @@ -101451,10 +101514,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 requestBody: required: true content: @@ -101482,7 +101545,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: default: value: @@ -101545,10 +101608,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 requestBody: required: true content: @@ -101583,9 +101646,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *640 + default: *641 '404': *6 '422': *7 '403': *29 @@ -101607,9 +101670,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -101672,8 +101735,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *357 - *358 + - *359 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -101686,9 +101749,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: &642 + default: &643 value: type: file encoding: base64 @@ -101730,8 +101793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *357 - *358 + - *359 - name: dir description: The alternate path to look for a README file in: path @@ -101751,9 +101814,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '422': *15 x-github: @@ -101775,8 +101838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -101786,7 +101849,7 @@ paths: application/json: schema: type: array - items: *643 + items: *644 examples: default: value: @@ -101885,8 +101948,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -101962,9 +102025,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: &647 + default: &648 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -102069,9 +102132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *357 - *358 - - &645 + - *359 + - &646 name: asset_id description: The unique identifier of the asset. in: path @@ -102083,9 +102146,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: &646 + default: &647 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 @@ -102120,7 +102183,7 @@ paths: type: User site_admin: false '404': *6 - '302': *509 + '302': *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102136,9 +102199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *357 - *358 - - *645 + - *359 + - *646 requestBody: required: false content: @@ -102166,9 +102229,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102184,9 +102247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *357 - *358 - - *645 + - *359 + - *646 responses: '204': description: Response @@ -102211,8 +102274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -102297,16 +102360,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *647 + default: *648 '404': *6 x-github: githubCloudOnly: false @@ -102324,8 +102387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *357 - *358 + - *359 - name: tag description: tag parameter in: path @@ -102338,9 +102401,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *647 + default: *648 '404': *6 x-github: githubCloudOnly: false @@ -102362,9 +102425,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *357 - *358 - - &648 + - *359 + - &649 name: release_id description: The unique identifier of the release. in: path @@ -102378,9 +102441,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: *643 + schema: *644 examples: - default: *647 + default: *648 '401': description: Unauthorized x-github: @@ -102404,9 +102467,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 requestBody: required: false content: @@ -102470,9 +102533,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *647 + default: *648 '404': description: Not Found if the discussion category name is invalid content: @@ -102493,9 +102556,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 responses: '204': description: Response @@ -102516,9 +102579,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *357 - *358 - - *648 + - *359 + - *649 - *17 - *19 responses: @@ -102528,7 +102591,7 @@ paths: application/json: schema: type: array - items: *644 + items: *645 examples: default: value: @@ -102609,9 +102672,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *357 - *358 - - *648 + - *359 + - *649 - name: name in: query required: true @@ -102637,7 +102700,7 @@ paths: description: Response for successful upload content: application/json: - schema: *644 + schema: *645 examples: response-for-successful-upload: value: @@ -102692,9 +102755,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 - 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. @@ -102718,9 +102781,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -102741,9 +102804,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 requestBody: required: true content: @@ -102773,16 +102836,16 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -102804,10 +102867,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *357 - *358 - - *648 - - *564 + - *359 + - *649 + - *565 responses: '204': description: Response @@ -102831,9 +102894,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 - *17 - *19 responses: @@ -102849,8 +102912,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *319 - - &649 + - *320 + - &650 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -102869,72 +102932,72 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *320 - - *649 - allOf: - *321 - - *649 + - *650 - allOf: - *322 - - *649 - - allOf: - *650 - - *649 - allOf: - *323 - - *649 + - *650 + - allOf: + - *651 + - *650 - allOf: - *324 - - *649 + - *650 - allOf: - *325 - - *649 + - *650 - allOf: - *326 - - *649 + - *650 - allOf: - *327 - - *649 + - *650 - allOf: - *328 - - *649 + - *650 - allOf: - *329 - - *649 + - *650 - allOf: - *330 - - *649 + - *650 - allOf: - *331 - - *649 + - *650 - allOf: - *332 - - *649 + - *650 - allOf: - - *337 - - *649 + - *333 + - *650 - allOf: - *338 - - *649 + - *650 - allOf: - *339 - - *649 + - *650 - allOf: - - *651 - - *649 + - *340 + - *650 - allOf: - - *333 - - *649 + - *652 + - *650 - allOf: - *334 - - *649 + - *650 - allOf: - *335 - - *649 + - *650 - allOf: - *336 - - *649 + - *650 + - allOf: + - *337 + - *650 examples: default: value: @@ -102973,8 +103036,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - *17 - *19 - name: includes_parents @@ -102985,7 +103048,7 @@ paths: schema: type: boolean default: true - - *652 + - *653 responses: '200': description: Response @@ -102993,7 +103056,7 @@ paths: application/json: schema: type: array - items: *340 + items: *341 examples: default: value: @@ -103040,8 +103103,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 requestBody: description: Request body required: true @@ -103061,16 +103124,16 @@ paths: - tag - push default: branch - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *314 + items: *318 + conditions: *315 rules: type: array description: An array of rules within the ruleset. - items: *653 + items: *654 required: - name - enforcement @@ -103101,9 +103164,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &664 + default: &665 value: id: 42 name: super cool ruleset @@ -103151,13 +103214,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *357 - *358 - - *654 + - *359 - *655 - *656 - *657 - *658 + - *659 - *17 - *19 responses: @@ -103165,9 +103228,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *660 + default: *661 '404': *6 '500': *56 x-github: @@ -103188,17 +103251,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *357 - *358 - - *661 + - *359 + - *662 responses: '200': description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '404': *6 '500': *56 x-github: @@ -103226,8 +103289,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -103247,9 +103310,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *664 + default: *665 '404': *6 '500': *56 put: @@ -103267,8 +103330,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -103293,16 +103356,16 @@ paths: - branch - tag - push - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *314 + items: *318 + conditions: *315 rules: description: An array of rules within the ruleset. type: array - items: *653 + items: *654 examples: default: value: @@ -103330,9 +103393,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *664 + default: *665 '404': *6 '422': *15 '500': *56 @@ -103351,8 +103414,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -103375,8 +103438,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *357 - *358 + - *359 - *17 - *19 - name: ruleset_id @@ -103392,9 +103455,9 @@ paths: application/json: schema: type: array - items: *343 + items: *344 examples: - default: *665 + default: *666 '404': *6 '500': *56 x-github: @@ -103413,8 +103476,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -103432,7 +103495,7 @@ paths: description: Response content: application/json: - schema: *666 + schema: *667 examples: default: value: @@ -103487,9 +103550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *357 - *358 - - *667 + - *359 - *668 - *669 - *670 @@ -103497,10 +103559,10 @@ paths: - *672 - *673 - *674 + - *675 - *63 - *19 - *17 - - *675 - *676 - *677 - *678 @@ -103509,6 +103571,7 @@ paths: - *681 - *682 - *683 + - *684 responses: '200': description: Response @@ -103535,8 +103598,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *684 - resolution: *685 + state: *685 + resolution: *686 resolved_at: type: string format: date-time @@ -103642,7 +103705,7 @@ paths: pull request. ' - oneOf: *686 + oneOf: *687 nullable: true has_more_locations: type: boolean @@ -103806,16 +103869,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *357 - *358 - - *457 - - *680 + - *359 + - *458 + - *681 responses: '200': description: Response content: application/json: - schema: &687 + schema: &688 type: object properties: number: *189 @@ -103833,8 +103896,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *684 - resolution: *685 + state: *685 + resolution: *686 resolved_at: type: string format: date-time @@ -103940,7 +104003,7 @@ paths: pull request. ' - oneOf: *686 + oneOf: *687 nullable: true has_more_locations: type: boolean @@ -103968,7 +104031,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &860 + metadata: &861 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -104041,9 +104104,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 requestBody: required: true content: @@ -104051,8 +104114,8 @@ paths: schema: type: object properties: - state: *684 - resolution: *685 + state: *685 + resolution: *686 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -104096,7 +104159,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: default: value: @@ -104198,9 +104261,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 - *19 - *17 responses: @@ -104211,7 +104274,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &862 + items: &863 type: object properties: type: @@ -104237,7 +104300,6 @@ paths: example: commit details: oneOf: - - *688 - *689 - *690 - *691 @@ -104250,6 +104312,7 @@ paths: - *698 - *699 - *700 + - *701 examples: default: value: @@ -104338,11 +104401,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 - - *701 + - *359 - *702 - *703 + - *704 - *63 - *19 - *17 @@ -104353,9 +104416,9 @@ paths: application/json: schema: type: array - items: *344 + items: *345 examples: - default: *704 + default: *705 headers: Link: *71 '403': *29 @@ -104378,8 +104441,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -104392,9 +104455,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *705 + items: *706 examples: - default: *706 + default: *707 responses: '201': description: All patterns created successfully. @@ -104406,9 +104469,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *344 + items: *345 examples: - default: *707 + default: *708 '400': *14 '403': *29 '404': *6 @@ -104432,7 +104495,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *708 + items: *709 delete: summary: Bulk delete repository custom patterns description: |- @@ -104451,8 +104514,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -104466,7 +104529,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *709 + items: *710 post_delete_action: type: string description: |- @@ -104479,14 +104542,14 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *710 + default: *711 responses: '204': description: All patterns deleted successfully. '400': *14 '403': *29 '404': *6 - '412': *346 + '412': *347 "/repos/{owner}/{repo}/secret-scanning/custom-patterns/{pattern_id}": patch: summary: Update a repository custom pattern @@ -104506,8 +104569,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 + - *359 - name: pattern_id in: path required: true @@ -104518,21 +104581,21 @@ paths: required: true content: application/json: - schema: *711 + schema: *712 examples: - default: *712 + default: *713 responses: '200': description: Pattern updated successfully. content: application/json: - schema: *344 + schema: *345 examples: - default: *713 + default: *714 '400': *14 '403': *29 '404': *6 - '412': *346 + '412': *347 '422': *15 "/repos/{owner}/{repo}/secret-scanning/push-protection-bypasses": post: @@ -104550,8 +104613,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -104559,14 +104622,14 @@ paths: schema: type: object properties: - reason: &715 + reason: &716 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *714 + placeholder_id: *715 required: - reason - placeholder_id @@ -104583,7 +104646,7 @@ paths: schema: type: object properties: - reason: *715 + reason: *716 expire_at: type: string format: date-time @@ -104629,8 +104692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *357 - *358 + - *359 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -104645,7 +104708,7 @@ paths: properties: incremental_scans: type: array - items: &716 + items: &717 description: Information on a single scan performed by secret scanning on the repository type: object @@ -104676,15 +104739,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *716 + items: *717 backfill_scans: type: array - items: *716 + items: *717 custom_pattern_backfill_scans: type: array items: allOf: - - *716 + - *717 - type: object properties: pattern_name: @@ -104697,7 +104760,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *716 + items: *717 examples: default: value: @@ -104762,8 +104825,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *357 - *358 + - *359 - *63 - name: sort description: The property to sort the results by. @@ -104807,9 +104870,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: *718 + default: *719 '400': *14 '404': *6 x-github: @@ -104832,8 +104895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -104906,7 +104969,7 @@ paths: login: type: string description: The username of the user credited. - type: *348 + type: *349 required: - login - type @@ -104993,9 +105056,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: &720 + default: &721 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -105228,8 +105291,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -105333,7 +105396,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: default: value: @@ -105480,17 +105543,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *357 - *358 - - *719 + - *359 + - *720 responses: '200': description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: *720 + default: *721 '403': *29 '404': *6 x-github: @@ -105514,9 +105577,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *357 - *358 - - *719 + - *359 + - *720 requestBody: required: true content: @@ -105589,7 +105652,7 @@ paths: login: type: string description: The username of the user credited. - type: *348 + type: *349 required: - login - type @@ -105675,10 +105738,10 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: *720 - add_credit: *720 + default: *721 + add_credit: *721 '403': *29 '404': *6 '422': @@ -105716,9 +105779,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *357 - *358 - - *719 + - *359 + - *720 responses: '202': *40 '400': *14 @@ -105745,17 +105808,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *357 - *358 - - *719 + - *359 + - *720 responses: '202': description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 '400': *14 '422': *15 '403': *29 @@ -105776,8 +105839,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#list-pull-request-stacks parameters: - - *357 - *358 + - *359 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -105909,8 +105972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -105977,7 +106040,7 @@ paths: format: date-time pull_requests: type: array - items: &721 + items: &722 title: Pull Request Stack Pull Request type: object allOf: @@ -106203,8 +106266,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *357 - *358 + - *359 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -106253,7 +106316,7 @@ paths: format: date-time pull_requests: type: array - items: *721 + items: *722 examples: default: value: @@ -106373,8 +106436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *357 - *358 + - *359 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -106446,7 +106509,7 @@ paths: format: date-time pull_requests: type: array - items: *721 + items: *722 examples: default: value: @@ -106650,8 +106713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *357 - *358 + - *359 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -106700,7 +106763,7 @@ paths: format: date-time pull_requests: type: array - items: *721 + items: *722 examples: default: value: @@ -106806,8 +106869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -106906,8 +106969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *357 - *358 + - *359 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -106916,7 +106979,7 @@ paths: application/json: schema: type: array - items: &722 + items: &723 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -106949,8 +107012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -107026,8 +107089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -107123,8 +107186,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *357 - *358 + - *359 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -107278,8 +107341,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *357 - *358 + - *359 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -107289,7 +107352,7 @@ paths: application/json: schema: type: array - items: *722 + items: *723 examples: default: value: @@ -107322,8 +107385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *357 - *358 + - *359 - name: sha in: path required: true @@ -107377,7 +107440,7 @@ paths: description: Response content: application/json: - schema: *723 + schema: *724 examples: default: value: @@ -107431,8 +107494,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -107464,14 +107527,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *357 - *358 + - *359 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &724 + schema: &725 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -107539,8 +107602,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -107566,7 +107629,7 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: default: value: @@ -107593,8 +107656,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -107614,8 +107677,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -107694,8 +107757,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *357 - *358 + - *359 - name: ref in: path required: true @@ -107731,8 +107794,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -107744,7 +107807,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 headers: Link: *71 '404': *6 @@ -107764,8 +107827,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *357 - *358 + - *359 - *19 - *17 responses: @@ -107773,7 +107836,7 @@ paths: description: Response content: application/json: - schema: &725 + schema: &726 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -107785,7 +107848,7 @@ paths: required: - names examples: - default: &726 + default: &727 value: names: - octocat @@ -107808,8 +107871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -107840,9 +107903,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *726 examples: - default: *726 + default: *727 '404': *6 '422': *7 x-github: @@ -107863,9 +107926,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *357 - *358 - - &727 + - *359 + - &728 name: per description: The time frame to display results for. in: query @@ -107894,7 +107957,7 @@ paths: example: 128 clones: type: array - items: &728 + items: &729 title: Traffic type: object properties: @@ -107981,8 +108044,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -108072,8 +108135,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -108133,9 +108196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *357 - *358 - - *727 + - *359 + - *728 responses: '200': description: Response @@ -108154,7 +108217,7 @@ paths: example: 3782 views: type: array - items: *728 + items: *729 required: - uniques - count @@ -108231,8 +108294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -108506,8 +108569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -108530,8 +108593,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -108553,8 +108616,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -108580,8 +108643,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *357 - *358 + - *359 - name: ref in: path required: true @@ -108673,9 +108736,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -108926,7 +108989,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &729 + text_matches: &730 title: Search Result Text Matches type: array items: @@ -109088,7 +109151,7 @@ paths: enum: - author-date - committer-date - - &730 + - &731 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 @@ -109159,7 +109222,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *422 nullable: true comment_count: type: integer @@ -109179,7 +109242,7 @@ paths: url: type: string format: uri - verification: *545 + verification: *546 required: - author - committer @@ -109198,7 +109261,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *422 nullable: true parents: type: array @@ -109216,7 +109279,7 @@ paths: type: number node_id: type: string - text_matches: *729 + text_matches: *730 required: - sha - node_id @@ -109408,7 +109471,7 @@ paths: - interactions - created - updated - - *730 + - *731 - *17 - *19 - name: advanced_search @@ -109522,11 +109585,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: type: string state_reason: @@ -109543,8 +109606,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 nullable: true comments: type: integer @@ -109558,7 +109621,7 @@ paths: type: string format: date-time nullable: true - text_matches: *729 + text_matches: *730 pull_request: type: object properties: @@ -109602,7 +109665,7 @@ paths: timeline_url: type: string format: uri - type: *258 + type: *259 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -109840,7 +109903,7 @@ paths: enum: - created - updated - - *730 + - *731 - *17 - *19 responses: @@ -109884,7 +109947,7 @@ paths: nullable: true score: type: number - text_matches: *729 + text_matches: *730 required: - id - node_id @@ -109969,7 +110032,7 @@ paths: - forks - help-wanted-issues - updated - - *730 + - *731 - *17 - *19 responses: @@ -110217,7 +110280,7 @@ paths: - admin - pull - push - text_matches: *729 + text_matches: *730 temp_clone_token: type: string allow_merge_commit: @@ -110517,7 +110580,7 @@ paths: type: string format: uri nullable: true - text_matches: *729 + text_matches: *730 related: type: array nullable: true @@ -110708,7 +110771,7 @@ paths: - followers - repositories - joined - - *730 + - *731 - *17 - *19 responses: @@ -110812,7 +110875,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *729 + text_matches: *730 blog: type: string nullable: true @@ -110891,7 +110954,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &733 + - &734 name: team_id description: The unique identifier of the team. in: path @@ -110903,9 +110966,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 x-github: githubCloudOnly: false @@ -110932,7 +110995,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *733 + - *734 requestBody: required: true content: @@ -111000,16 +111063,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '201': description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 '422': *15 '403': *29 @@ -111037,7 +111100,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *733 + - *734 responses: '204': description: Response @@ -111066,7 +111129,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *733 + - *734 - *17 - *19 responses: @@ -111076,9 +111139,9 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: - default: *253 + default: *254 headers: Link: *71 x-github: @@ -111106,7 +111169,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *733 + - *734 - name: role description: Filters members returned by their role in the team. in: query @@ -111127,9 +111190,9 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: - default: *735 + default: *736 headers: Link: *71 '404': *6 @@ -111157,7 +111220,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -111194,7 +111257,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -111234,7 +111297,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -111271,16 +111334,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *733 + - *734 - *75 responses: '200': description: Response content: application/json: - schema: *356 + schema: *357 examples: - response-if-user-is-a-team-maintainer: *736 + response-if-user-is-a-team-maintainer: *737 '404': *6 x-github: githubCloudOnly: false @@ -111313,7 +111376,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *733 + - *734 - *75 requestBody: required: false @@ -111339,9 +111402,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - response-if-users-membership-with-team-is-now-pending: *737 + response-if-users-membership-with-team-is-now-pending: *738 '403': description: Forbidden if team synchronization is set up '422': @@ -111375,7 +111438,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -111403,7 +111466,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *733 + - *734 - *17 - *19 responses: @@ -111415,7 +111478,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 '404': *6 @@ -111445,15 +111508,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *733 - - *357 + - *734 - *358 + - *359 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *738 + schema: *739 examples: alternative-response-with-extra-repository-information: value: @@ -111604,9 +111667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *733 - - *357 + - *734 - *358 + - *359 requestBody: required: false content: @@ -111656,9 +111719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *733 - - *357 + - *734 - *358 + - *359 responses: '204': description: Response @@ -111683,7 +111746,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *733 + - *734 - *17 - *19 responses: @@ -111695,7 +111758,7 @@ paths: type: array items: *211 examples: - response-if-child-teams-exist: *739 + response-if-child-teams-exist: *740 headers: Link: *71 '404': *6 @@ -111728,7 +111791,7 @@ paths: application/json: schema: oneOf: - - &741 + - &742 title: Private User description: Private User type: object @@ -111931,7 +111994,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *740 + - *741 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -112084,7 +112147,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *742 examples: default: value: @@ -112287,9 +112350,9 @@ paths: type: integer codespaces: type: array - items: *263 + items: *264 examples: - default: *264 + default: *265 '304': *38 '500': *56 '401': *25 @@ -112428,17 +112491,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '401': *25 '403': *29 '404': *6 @@ -112482,7 +112545,7 @@ paths: type: integer secrets: type: array - items: &742 + items: &743 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -112522,7 +112585,7 @@ paths: - visibility - selected_repositories_url examples: - default: *483 + default: *484 headers: Link: *71 x-github: @@ -112598,7 +112661,7 @@ paths: description: Response content: application/json: - schema: *742 + schema: *743 examples: default: value: @@ -112888,15 +112951,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '304': *38 '500': *56 '401': *25 @@ -112922,7 +112985,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 requestBody: required: false content: @@ -112952,9 +113015,9 @@ paths: description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '401': *25 '403': *29 '404': *6 @@ -112976,7 +113039,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '202': *40 '304': *38 @@ -113005,13 +113068,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '202': description: Response content: application/json: - schema: &743 + schema: &744 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -113052,7 +113115,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &744 + default: &745 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -113084,7 +113147,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *265 + - *266 - name: export_id in: path required: true @@ -113097,9 +113160,9 @@ paths: description: Response content: application/json: - schema: *743 + schema: *744 examples: - default: *744 + default: *745 '404': *6 x-github: githubCloudOnly: false @@ -113120,7 +113183,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *265 + - *266 responses: '200': description: Response @@ -113136,9 +113199,9 @@ paths: type: integer machines: type: array - items: *745 + items: *746 examples: - default: *746 + default: *747 '304': *38 '500': *56 '401': *25 @@ -113167,7 +113230,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *265 + - *266 requestBody: required: true content: @@ -113217,13 +113280,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *360 + repository: *361 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *481 - required: *482 + properties: *482 + required: *483 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -113997,15 +114060,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '304': *38 '500': *56 '400': *14 @@ -114037,15 +114100,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '500': *56 '401': *25 '403': *29 @@ -114075,9 +114138,9 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: &758 + default: &759 value: - id: 197 name: hello_docker @@ -114178,7 +114241,7 @@ paths: application/json: schema: type: array - items: &747 + items: &748 title: Email description: Email type: object @@ -114243,9 +114306,9 @@ paths: application/json: schema: type: array - items: *747 + items: *748 examples: - default: &760 + default: &761 value: - email: octocat@github.com verified: true @@ -114320,7 +114383,7 @@ paths: application/json: schema: type: array - items: *747 + items: *748 examples: default: value: @@ -114576,7 +114639,7 @@ paths: application/json: schema: type: array - items: &748 + items: &749 title: GPG Key description: A unique encryption key type: object @@ -114707,7 +114770,7 @@ paths: - subkeys - revoked examples: - default: &777 + default: &778 value: - id: 3 name: Octocat's GPG Key @@ -114792,9 +114855,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *749 examples: - default: &749 + default: &750 value: id: 3 name: Octocat's GPG Key @@ -114851,7 +114914,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &750 + - &751 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -114863,9 +114926,9 @@ paths: description: Response content: application/json: - schema: *748 + schema: *749 examples: - default: *749 + default: *750 '404': *6 '304': *38 '403': *29 @@ -114888,7 +114951,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *750 + - *751 responses: '204': description: Response @@ -115176,12 +115239,12 @@ paths: application/json: schema: anyOf: - - *250 + - *251 - type: object properties: {} additionalProperties: false examples: - default: *251 + default: *252 '204': description: Response when there are no restrictions x-github: @@ -115205,7 +115268,7 @@ paths: required: true content: application/json: - schema: *556 + schema: *557 examples: default: value: @@ -115216,7 +115279,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -115297,7 +115360,7 @@ paths: - closed - all default: open - - *261 + - *262 - name: sort description: What to sort results by. in: query @@ -115322,7 +115385,7 @@ paths: type: array items: *89 examples: - default: *262 + default: *263 headers: Link: *71 '404': *6 @@ -115355,7 +115418,7 @@ paths: application/json: schema: type: array - items: &751 + items: &752 title: Key description: Key type: object @@ -115456,9 +115519,9 @@ paths: description: Response content: application/json: - schema: *751 + schema: *752 examples: - default: &752 + default: &753 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -115491,15 +115554,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *611 + - *612 responses: '200': description: Response content: application/json: - schema: *751 + schema: *752 examples: - default: *752 + default: *753 '404': *6 '304': *38 '403': *29 @@ -115522,7 +115585,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *611 + - *612 responses: '204': description: Response @@ -115555,7 +115618,7 @@ paths: application/json: schema: type: array - items: &753 + items: &754 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -115623,7 +115686,7 @@ paths: - account - plan examples: - default: &754 + default: &755 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -115685,9 +115748,9 @@ paths: application/json: schema: type: array - items: *753 + items: *754 examples: - default: *754 + default: *755 headers: Link: *71 '304': *38 @@ -115727,7 +115790,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -115841,7 +115904,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -115928,9 +115991,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *267 + schema: *268 examples: - default: &755 + default: &756 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -115977,9 +116040,9 @@ paths: processed asynchronously. content: application/json: - schema: *267 + schema: *268 examples: - default: *755 + default: *756 '403': *29 '404': *6 '422': *15 @@ -116008,7 +116071,7 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: default: value: @@ -116261,7 +116324,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -116441,7 +116504,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *270 + - *271 - name: exclude in: query required: false @@ -116454,7 +116517,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -116648,7 +116711,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *270 + - *271 responses: '302': description: Response @@ -116674,7 +116737,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *270 + - *271 responses: '204': description: Response @@ -116703,8 +116766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *270 - - *756 + - *271 + - *757 responses: '204': description: Response @@ -116728,7 +116791,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *270 + - *271 - *17 - *19 responses: @@ -116740,7 +116803,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 '404': *6 @@ -116819,7 +116882,7 @@ paths: - docker - nuget - container - - *757 + - *758 - *19 - *17 responses: @@ -116829,10 +116892,10 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *758 - '400': *759 + default: *759 + '400': *760 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116852,16 +116915,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *278 - *279 + - *280 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: - default: &778 + default: &779 value: id: 40201 name: octo-name @@ -116974,8 +117037,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *278 - *279 + - *280 responses: '204': description: Response @@ -117005,8 +117068,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *278 - *279 + - *280 - name: token description: package token schema: @@ -117038,8 +117101,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: - - *278 - *279 + - *280 - *19 - *17 - name: state @@ -117059,7 +117122,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -117108,15 +117171,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -117152,9 +117215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 responses: '204': description: Response @@ -117184,9 +117247,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 responses: '204': description: Response @@ -117223,9 +117286,9 @@ paths: application/json: schema: type: array - items: *747 + items: *748 examples: - default: *760 + default: *761 headers: Link: *71 '304': *38 @@ -117338,7 +117401,7 @@ paths: type: array items: *83 examples: - default: &767 + default: &768 summary: Default response value: - id: 1296269 @@ -117642,9 +117705,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -117682,9 +117745,9 @@ paths: application/json: schema: type: array - items: *559 + items: *560 examples: - default: *761 + default: *762 headers: Link: *71 '304': *38 @@ -117707,7 +117770,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *254 + - *255 responses: '204': description: Response @@ -117730,7 +117793,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *254 + - *255 responses: '204': description: Response @@ -117763,7 +117826,7 @@ paths: application/json: schema: type: array - items: &762 + items: &763 title: Social account description: Social media account type: object @@ -117778,7 +117841,7 @@ paths: - provider - url examples: - default: &763 + default: &764 value: - provider: twitter url: https://twitter.com/github @@ -117840,9 +117903,9 @@ paths: application/json: schema: type: array - items: *762 + items: *763 examples: - default: *763 + default: *764 '422': *15 '304': *38 '404': *6 @@ -117929,7 +117992,7 @@ paths: application/json: schema: type: array - items: &764 + items: &765 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -117949,7 +118012,7 @@ paths: - title - created_at examples: - default: &795 + default: &796 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -118013,9 +118076,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: &765 + default: &766 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -118045,7 +118108,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: - - &766 + - &767 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -118057,9 +118120,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: *765 + default: *766 '404': *6 '304': *38 '403': *29 @@ -118082,7 +118145,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: - - *766 + - *767 responses: '204': description: Response @@ -118111,7 +118174,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &796 + - &797 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 @@ -118136,11 +118199,11 @@ paths: type: array items: *83 examples: - default-response: *767 + default-response: *768 application/vnd.github.v3.star+json: schema: type: array - items: &797 + items: &798 title: Starred Repository description: Starred Repository type: object @@ -118296,8 +118359,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *357 - *358 + - *359 responses: '204': description: Response if this repository is starred by you @@ -118325,8 +118388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -118350,8 +118413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -118386,7 +118449,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 '304': *38 @@ -118423,7 +118486,7 @@ paths: application/json: schema: type: array - items: *353 + items: *354 examples: default: value: @@ -118509,10 +118572,10 @@ paths: application/json: schema: oneOf: + - *742 - *741 - - *740 examples: - default-response: &771 + default-response: &772 summary: Default response value: login: octocat @@ -118547,7 +118610,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &772 + response-with-git-hub-plan-information: &773 summary: Response with GitHub plan information value: login: octocat @@ -118604,14 +118667,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &769 + - &770 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *294 + - *295 requestBody: required: true description: Details of the draft item to create in the project. @@ -118645,9 +118708,9 @@ paths: description: Response content: application/json: - schema: *300 + schema: *301 examples: - draft_issue: *301 + draft_issue: *302 '304': *38 '403': *29 '401': *25 @@ -118670,7 +118733,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *768 + - *769 - *17 responses: '200': @@ -118705,8 +118768,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *769 - - *294 + - *770 + - *295 requestBody: required: true content: @@ -118742,6 +118805,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -118777,17 +118881,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *770 + schema: *771 examples: table_view: summary: Response for creating a table view - value: *305 + value: *306 board_view: summary: Response for creating a board view with filter - value: *305 + value: *306 roadmap_view: summary: Response for creating a roadmap view - value: *305 + value: *306 '304': *38 '403': *29 '401': *25 @@ -118829,11 +118933,11 @@ paths: application/json: schema: oneOf: + - *742 - *741 - - *740 examples: - default-response: *771 - response-with-git-hub-plan-information: *772 + default-response: *772 + response-with-git-hub-plan-information: *773 '404': *6 x-github: githubCloudOnly: false @@ -118883,8 +118987,8 @@ paths: required: - subject_digests examples: - default: *773 - withPredicateType: *774 + default: *774 + withPredicateType: *775 responses: '200': description: Response @@ -118937,7 +119041,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *775 + default: *776 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -119142,7 +119246,7 @@ paths: initiator: type: string examples: - default: *417 + default: *418 '201': description: Response content: @@ -119423,7 +119527,7 @@ paths: application/json: schema: *205 examples: - default: &776 + default: &777 summary: Example response for a user copilot space value: id: 42 @@ -119524,7 +119628,7 @@ paths: application/json: schema: *205 examples: - default: *776 + default: *777 '403': *29 '404': *6 x-github: @@ -119647,7 +119751,7 @@ paths: application/json: schema: *205 examples: - default: *776 + default: *777 '403': *29 '404': *6 '422': *15 @@ -120413,9 +120517,9 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *758 + default: *759 '403': *29 '401': *25 x-github: @@ -120799,9 +120903,9 @@ paths: application/json: schema: type: array - items: *748 + items: *749 examples: - default: *777 + default: *778 headers: Link: *71 x-github: @@ -120905,7 +121009,7 @@ paths: application/json: schema: *22 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121029,7 +121133,7 @@ paths: - docker - nuget - container - - *757 + - *758 - *75 - *19 - *17 @@ -121040,12 +121144,12 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *758 + default: *759 '403': *29 '401': *25 - '400': *759 + '400': *760 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121065,17 +121169,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *278 - *279 + - *280 - *75 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: - default: *778 + default: *779 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121096,8 +121200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *278 - *279 + - *280 - *75 responses: '204': @@ -121130,8 +121234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *278 - *279 + - *280 - *75 - name: token description: package token @@ -121164,8 +121268,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: - - *278 - *279 + - *280 - *75 responses: '200': @@ -121174,7 +121278,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -121232,16 +121336,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 - *75 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -121276,10 +121380,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *278 - *279 + - *280 - *75 - - *281 + - *282 responses: '204': description: Response @@ -121311,10 +121415,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *278 - *279 + - *280 - *75 - - *281 + - *282 responses: '204': description: Response @@ -121355,9 +121459,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *293 + default: *294 headers: Link: *71 '304': *38 @@ -121379,16 +121483,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *294 + - *295 - *75 responses: '200': description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *293 + default: *294 headers: Link: *71 '304': *38 @@ -121410,7 +121514,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *294 + - *295 - *75 - *17 - *48 @@ -121422,9 +121526,9 @@ paths: application/json: schema: type: array - items: *298 + items: *299 examples: - default: *779 + default: *780 headers: Link: *71 '304': *38 @@ -121446,7 +121550,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *75 - - *294 + - *295 requestBody: required: true content: @@ -121484,7 +121588,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *780 + items: *781 required: - name - data_type @@ -121500,7 +121604,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *781 + iteration_configuration: *782 required: - name - data_type @@ -121522,20 +121626,20 @@ paths: value: name: Due date data_type: date - single_select_field: *782 - iteration_field: *783 + single_select_field: *783 + iteration_field: *784 responses: '201': description: Response content: application/json: - schema: *298 + schema: *299 examples: - text_field: *784 - number_field: *785 - date_field: *786 - single_select_field: *787 - iteration_field: *788 + text_field: *785 + number_field: *786 + date_field: *787 + single_select_field: *788 + iteration_field: *789 '304': *38 '403': *29 '401': *25 @@ -121556,17 +121660,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *294 - - *789 + - *295 + - *790 - *75 responses: '200': description: Response content: application/json: - schema: *298 + schema: *299 examples: - default: *790 + default: *791 headers: Link: *71 '304': *38 @@ -121589,7 +121693,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *294 + - *295 - *75 - *48 - *49 @@ -121622,9 +121726,9 @@ paths: application/json: schema: type: array - items: *302 + items: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -121646,7 +121750,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *75 - - *294 + - *295 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -121716,22 +121820,22 @@ paths: description: Response content: application/json: - schema: *300 + schema: *301 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *301 + value: *302 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *301 + value: *302 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *301 + value: *302 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *301 + value: *302 '304': *38 '403': *29 '401': *25 @@ -121751,9 +121855,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *294 + - *295 - *75 - - *304 + - *305 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -121773,9 +121877,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -121796,9 +121900,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *294 + - *295 - *75 - - *304 + - *305 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -121868,13 +121972,13 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - text_field: *303 - number_field: *303 - date_field: *303 - single_select_field: *303 - iteration_field: *303 + text_field: *304 + number_field: *304 + date_field: *304 + single_select_field: *304 + iteration_field: *304 '401': *25 '403': *29 '404': *6 @@ -121894,9 +121998,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *294 + - *295 - *75 - - *304 + - *305 responses: '204': description: Response @@ -121918,9 +122022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *294 + - *295 - *75 - - *791 + - *792 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -121946,9 +122050,9 @@ paths: application/json: schema: type: array - items: *302 + items: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -122169,7 +122273,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 x-github: @@ -122459,7 +122563,7 @@ paths: parameters: - *75 - *125 - - *792 + - *793 - *127 responses: '200': @@ -122558,9 +122662,9 @@ paths: - *125 - *126 - *127 - - *793 - - *130 - *794 + - *130 + - *795 responses: '200': description: Response when getting a billing usage summary @@ -122694,9 +122798,9 @@ paths: application/json: schema: type: array - items: *762 + items: *763 examples: - default: *763 + default: *764 headers: Link: *71 x-github: @@ -122726,9 +122830,9 @@ paths: application/json: schema: type: array - items: *764 + items: *765 examples: - default: *795 + default: *796 headers: Link: *71 x-github: @@ -122753,7 +122857,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *75 - - *796 + - *797 - *63 - *17 - *19 @@ -122765,11 +122869,11 @@ paths: schema: anyOf: - type: array - items: *797 + items: *798 - type: array items: *83 examples: - default-response: *767 + default-response: *768 headers: Link: *71 x-github: @@ -122800,7 +122904,7 @@ paths: type: array items: *164 examples: - default: *282 + default: *283 headers: Link: *71 x-github: @@ -122928,7 +123032,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &798 + enterprise: &799 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122986,7 +123090,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &799 + installation: &800 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -123005,7 +123109,7 @@ x-webhooks: required: - id - node_id - organization: &800 + organization: &801 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -123065,13 +123169,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &801 + repository: &802 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &833 + properties: &834 id: description: Unique identifier of the repository example: 42 @@ -123766,7 +123870,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &834 + required: &835 - archive_url - assignees_url - blobs_url @@ -123917,10 +124021,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -123996,11 +124100,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - rule: &802 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + rule: &803 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) @@ -124223,11 +124327,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - rule: *802 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + rule: *803 sender: *4 required: - action @@ -124410,11 +124514,11 @@ x-webhooks: - everyone required: - from - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - rule: *802 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + rule: *803 sender: *4 required: - action @@ -124498,7 +124602,7 @@ x-webhooks: type: string enum: - completed - check_run: &804 + check_run: &805 title: CheckRun description: A check performed on the code of a given code change type: object @@ -124589,7 +124693,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *803 + deployment: *804 details_url: example: https://example.com type: string @@ -124674,10 +124778,10 @@ x-webhooks: - output - app - pull_requests - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 sender: *4 required: - check_run @@ -125068,11 +125172,11 @@ x-webhooks: type: string enum: - created - check_run: *804 - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + check_run: *805 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 sender: *4 required: - check_run @@ -125466,11 +125570,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *804 - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + check_run: *805 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 requested_action: description: The action requested by the user. type: object @@ -125873,11 +125977,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *804 - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + check_run: *805 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 sender: *4 required: - check_run @@ -126847,10 +126951,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -127549,10 +127653,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -128245,10 +128349,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -128414,7 +128518,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -128559,20 +128663,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &805 + commit_oid: &806 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: *798 - installation: *799 - organization: *800 - ref: &806 + enterprise: *799 + installation: *800 + organization: *801 + ref: &807 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: *801 + repository: *802 sender: *4 required: - action @@ -128737,7 +128841,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -128967,12 +129071,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -129067,7 +129171,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -129238,12 +129342,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -129409,7 +129513,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -129575,12 +129679,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -129679,7 +129783,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -129854,16 +129958,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *801 + repository: *802 sender: *4 required: - action @@ -129960,7 +130064,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130100,12 +130204,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -130271,7 +130375,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -130416,10 +130520,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -130674,10 +130778,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -130757,18 +130861,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *800 - pusher_type: &807 + organization: *801 + pusher_type: &808 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &808 + ref: &809 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -130778,7 +130882,7 @@ x-webhooks: enum: - tag - branch - repository: *801 + repository: *802 sender: *4 required: - ref @@ -130860,10 +130964,10 @@ x-webhooks: type: string enum: - created - definition: *306 - enterprise: *798 - installation: *799 - organization: *800 + definition: *307 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -130948,9 +131052,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -131027,10 +131131,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *306 - enterprise: *798 - installation: *799 - organization: *800 + definition: *307 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -131107,10 +131211,10 @@ x-webhooks: type: string enum: - updated - definition: *306 - enterprise: *798 - installation: *799 - organization: *800 + definition: *307 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -131187,19 +131291,19 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - repository: *801 - organization: *800 + enterprise: *799 + installation: *800 + repository: *802 + organization: *801 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *310 + items: *311 old_property_values: type: array description: The old custom property values for the repository. - items: *310 + items: *311 required: - action - repository @@ -131275,18 +131379,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - pusher_type: *807 - ref: *808 + enterprise: *799 + installation: *800 + organization: *801 + pusher_type: *808 + ref: *809 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *801 + repository: *802 sender: *4 required: - ref @@ -131366,11 +131470,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131450,11 +131554,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131535,11 +131639,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131620,11 +131724,11 @@ x-webhooks: type: string enum: - created - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131703,11 +131807,11 @@ x-webhooks: type: string enum: - dismissed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131786,11 +131890,11 @@ x-webhooks: type: string enum: - fixed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131870,11 +131974,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131953,11 +132057,11 @@ x-webhooks: type: string enum: - reopened - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -132034,9 +132138,9 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - key: &809 + enterprise: *799 + installation: *800 + key: &810 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -132072,8 +132176,8 @@ x-webhooks: - verified - created_at - read_only - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -132150,11 +132254,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - key: *809 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + key: *810 + organization: *801 + repository: *802 sender: *4 required: - action @@ -132710,12 +132814,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: &815 + workflow: &816 title: Workflow type: object nullable: true @@ -133456,15 +133560,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *810 - required: *811 + properties: *811 + required: *812 nullable: true pull_requests: type: array - items: *631 - repository: *801 - organization: *800 - installation: *799 + items: *632 + repository: *802 + organization: *801 + installation: *800 sender: *4 responses: '200': @@ -133535,7 +133639,7 @@ x-webhooks: type: string enum: - approved - approver: &812 + approver: &813 type: object properties: avatar_url: @@ -133578,11 +133682,11 @@ x-webhooks: type: string comment: type: string - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - reviewers: &813 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + reviewers: &814 type: array items: type: object @@ -133661,7 +133765,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &814 + workflow_job_run: &815 type: object properties: conclusion: @@ -134392,18 +134496,18 @@ x-webhooks: type: string enum: - rejected - approver: *812 + approver: *813 comment: type: string - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - reviewers: *813 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + reviewers: *814 sender: *4 since: type: string - workflow_job_run: *814 + workflow_job_run: *815 workflow_job_runs: type: array items: @@ -135107,13 +135211,13 @@ x-webhooks: type: string enum: - requested - enterprise: *798 + enterprise: *799 environment: type: string - installation: *799 - organization: *800 - repository: *801 - requestor: &820 + installation: *800 + organization: *801 + repository: *802 + requestor: &821 title: User type: object nullable: true @@ -137002,12 +137106,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Deployment Workflow Run type: object @@ -137687,7 +137791,7 @@ x-webhooks: type: string enum: - answered - answer: &818 + answer: &819 type: object properties: author_association: @@ -137844,11 +137948,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -137975,11 +138079,11 @@ x-webhooks: - from required: - category - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138062,11 +138166,11 @@ x-webhooks: type: string enum: - closed - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138148,7 +138252,7 @@ x-webhooks: type: string enum: - created - comment: &817 + comment: &818 type: object properties: author_association: @@ -138305,11 +138409,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138392,12 +138496,12 @@ x-webhooks: type: string enum: - deleted - comment: *817 - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + comment: *818 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138492,12 +138596,12 @@ x-webhooks: - from required: - body - comment: *817 - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + comment: *818 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138581,11 +138685,11 @@ x-webhooks: type: string enum: - created - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138667,11 +138771,11 @@ x-webhooks: type: string enum: - deleted - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138771,11 +138875,11 @@ x-webhooks: type: string required: - from - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138857,10 +138961,10 @@ x-webhooks: type: string enum: - labeled - discussion: *816 - enterprise: *798 - installation: *799 - label: &819 + discussion: *817 + enterprise: *799 + installation: *800 + label: &820 title: Label type: object properties: @@ -138892,8 +138996,8 @@ x-webhooks: - color - default - description - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138976,11 +139080,11 @@ x-webhooks: type: string enum: - locked - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139062,11 +139166,11 @@ x-webhooks: type: string enum: - pinned - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139148,11 +139252,11 @@ x-webhooks: type: string enum: - reopened - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139237,16 +139341,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *816 - new_repository: *801 + new_discussion: *817 + new_repository: *802 required: - new_discussion - new_repository - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139329,10 +139433,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *816 - old_answer: *818 - organization: *800 - repository: *801 + discussion: *817 + old_answer: *819 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139414,12 +139518,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *816 - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139502,11 +139606,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139588,11 +139692,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139665,7 +139769,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *798 + enterprise: *799 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -140325,9 +140429,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - forkee @@ -140473,9 +140577,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pages: description: The pages that were updated. type: array @@ -140512,7 +140616,7 @@ x-webhooks: - action - sha - html_url - repository: *801 + repository: *802 sender: *4 required: - pages @@ -140588,10 +140692,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: &821 + organization: *801 + repositories: &822 description: An array of repository objects that the installation can access. type: array @@ -140617,8 +140721,8 @@ x-webhooks: - name - full_name - private - repository: *801 - requester: *820 + repository: *802 + requester: *821 sender: *4 required: - action @@ -140693,11 +140797,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -140773,11 +140877,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -140853,10 +140957,10 @@ x-webhooks: type: string enum: - added - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories_added: &822 + organization: *801 + repositories_added: &823 description: An array of repository objects, which were added to the installation. type: array @@ -140902,15 +141006,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *801 - repository_selection: &823 + repository: *802 + repository_selection: &824 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *820 + requester: *821 sender: *4 required: - action @@ -140989,10 +141093,10 @@ x-webhooks: type: string enum: - removed - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories_added: *822 + organization: *801 + repositories_added: *823 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -141019,9 +141123,9 @@ x-webhooks: - name - full_name - private - repository: *801 - repository_selection: *823 - requester: *820 + repository: *802 + repository_selection: *824 + requester: *821 sender: *4 required: - action @@ -141100,11 +141204,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -141282,10 +141386,10 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 target_type: type: string @@ -141364,11 +141468,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -141542,15 +141646,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *594 - required: *595 + properties: *595 + required: *596 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *596 - required: *597 + properties: *597 + required: *598 nullable: true user: title: User @@ -141635,8 +141739,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -142425,8 +142529,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142442,7 +142546,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -142775,8 +142879,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -142856,7 +142960,7 @@ x-webhooks: type: string enum: - deleted - comment: &824 + comment: &825 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -143013,15 +143117,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *594 - required: *595 + properties: *595 + required: *596 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *596 - required: *597 + properties: *597 + required: *598 nullable: true required: - url @@ -143036,8 +143140,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143822,8 +143926,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143839,7 +143943,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -144174,8 +144278,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -144255,7 +144359,7 @@ x-webhooks: type: string enum: - edited - changes: &853 + changes: &854 description: The changes to the comment. type: object properties: @@ -144267,9 +144371,9 @@ x-webhooks: type: string required: - from - comment: *824 - enterprise: *798 - installation: *799 + comment: *825 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145057,8 +145161,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145074,7 +145178,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -145407,8 +145511,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -145489,9 +145593,9 @@ x-webhooks: type: string enum: - pinned - comment: *824 - enterprise: *798 - installation: *799 + comment: *825 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146281,8 +146385,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146298,7 +146402,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -146633,8 +146737,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -146714,9 +146818,9 @@ x-webhooks: type: string enum: - unpinned - comment: *824 - enterprise: *798 - installation: *799 + comment: *825 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -147506,8 +147610,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147523,7 +147627,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -147858,8 +147962,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -147948,9 +148052,9 @@ x-webhooks: type: number blocking_issue: *89 blocking_issue_repo: *83 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -148039,9 +148143,9 @@ x-webhooks: type: number blocking_issue: *89 blocking_issue_repo: *83 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -148129,9 +148233,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -148220,9 +148324,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -148302,10 +148406,10 @@ x-webhooks: type: string enum: - assigned - assignee: *820 - enterprise: *798 - installation: *799 - issue: &825 + assignee: *821 + enterprise: *799 + installation: *800 + issue: &826 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -149097,11 +149201,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149117,7 +149221,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -149218,8 +149322,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -149299,8 +149403,8 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -150097,11 +150201,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150117,7 +150221,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -150353,8 +150457,8 @@ x-webhooks: required: - state - closed_at - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -150433,8 +150537,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151222,11 +151326,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151242,7 +151346,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -151342,8 +151446,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -151422,8 +151526,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152233,11 +152337,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152253,7 +152357,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -152332,7 +152436,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &826 + milestone: &827 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152470,8 +152574,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -152570,8 +152674,8 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153363,11 +153467,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153380,7 +153484,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *258 + type: *259 title: description: Title of the issue type: string @@ -153484,9 +153588,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *819 - organization: *800 - repository: *801 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -153566,9 +153670,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *798 - installation: *799 - issue: *825 + enterprise: *799 + installation: *800 + issue: *826 issue_field: type: object description: The issue field whose value was set or updated on the @@ -153722,8 +153826,8 @@ x-webhooks: - id required: - from - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -153803,9 +153907,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *798 - installation: *799 - issue: *825 + enterprise: *799 + installation: *800 + issue: *826 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -153886,8 +153990,8 @@ x-webhooks: nullable: true required: - id - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -153967,8 +154071,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154759,11 +154863,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154776,7 +154880,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *258 + type: *259 title: description: Title of the issue type: string @@ -154880,9 +154984,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *819 - organization: *800 - repository: *801 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -154962,8 +155066,8 @@ x-webhooks: type: string enum: - locked - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155778,11 +155882,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155795,7 +155899,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *258 + type: *259 title: description: Title of the issue type: string @@ -155876,8 +155980,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -155956,8 +156060,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156766,11 +156870,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156786,7 +156890,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -156864,9 +156968,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *826 - organization: *800 - repository: *801 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -157729,11 +157833,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157834,7 +157938,7 @@ x-webhooks: required: - login - id - type: *258 + type: *259 required: - id - number @@ -158314,8 +158418,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -159099,11 +159203,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159119,7 +159223,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -159227,8 +159331,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -159308,9 +159412,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *798 - installation: *799 - issue: &827 + enterprise: *799 + installation: *800 + issue: &828 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -160096,11 +160200,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160116,7 +160220,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -160216,8 +160320,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -160296,8 +160400,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -161110,11 +161214,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161208,9 +161312,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *258 - organization: *800 - repository: *801 + type: *259 + organization: *801 + repository: *802 sender: *4 required: - action @@ -162079,11 +162183,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162099,7 +162203,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -162678,11 +162782,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *798 - installation: *799 - issue: *827 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *828 + organization: *801 + repository: *802 sender: *4 required: - action @@ -162762,12 +162866,12 @@ x-webhooks: type: string enum: - typed - enterprise: *798 - installation: *799 - issue: *825 - type: *258 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + type: *259 + organization: *801 + repository: *802 sender: *4 required: - action @@ -162848,7 +162952,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &856 + assignee: &857 title: User type: object nullable: true @@ -162918,11 +163022,11 @@ x-webhooks: required: - login - id - enterprise: *798 - installation: *799 - issue: *825 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + organization: *801 + repository: *802 sender: *4 required: - action @@ -163001,12 +163105,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *798 - installation: *799 - issue: *825 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -163086,8 +163190,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -163900,11 +164004,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163920,7 +164024,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -163998,8 +164102,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164079,11 +164183,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *798 - installation: *799 - issue: *827 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *828 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164162,12 +164266,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *798 - installation: *799 - issue: *825 - type: *258 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + type: *259 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164247,11 +164351,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164329,11 +164433,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164443,11 +164547,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164529,9 +164633,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: &828 + enterprise: *799 + installation: *800 + marketplace_purchase: &829 title: Marketplace Purchase type: object required: @@ -164614,8 +164718,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *800 - previous_marketplace_purchase: &829 + organization: *801 + previous_marketplace_purchase: &830 title: Marketplace Purchase type: object properties: @@ -164695,7 +164799,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *801 + repository: *802 sender: *4 required: - action @@ -164775,10 +164879,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: *828 - organization: *800 + enterprise: *799 + installation: *800 + marketplace_purchase: *829 + organization: *801 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -164861,7 +164965,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *801 + repository: *802 sender: *4 required: - action @@ -164943,10 +165047,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: *828 - organization: *800 + enterprise: *799 + installation: *800 + marketplace_purchase: *829 + organization: *801 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165028,7 +165132,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *801 + repository: *802 sender: *4 required: - action @@ -165109,8 +165213,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 marketplace_purchase: title: Marketplace Purchase type: object @@ -165192,9 +165296,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *800 - previous_marketplace_purchase: *829 - repository: *801 + organization: *801 + previous_marketplace_purchase: *830 + repository: *802 sender: *4 required: - action @@ -165274,12 +165378,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: *828 - organization: *800 - previous_marketplace_purchase: *829 - repository: *801 + enterprise: *799 + installation: *800 + marketplace_purchase: *829 + organization: *801 + previous_marketplace_purchase: *830 + repository: *802 sender: *4 required: - action @@ -165381,11 +165485,11 @@ x-webhooks: type: string required: - to - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165485,11 +165589,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165568,11 +165672,11 @@ x-webhooks: type: string enum: - removed - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165650,11 +165754,11 @@ x-webhooks: type: string enum: - added - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 scope: description: The scope of the membership. Currently, can only be `team`. @@ -165730,7 +165834,7 @@ x-webhooks: required: - login - id - team: &830 + team: &831 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -165953,11 +166057,11 @@ x-webhooks: type: string enum: - removed - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166034,7 +166138,7 @@ x-webhooks: required: - login - id - team: *830 + team: *831 required: - action - scope @@ -166116,8 +166220,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *799 - merge_group: &832 + installation: *800 + merge_group: &833 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -166136,15 +166240,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *831 + head_commit: *832 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166230,10 +166334,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *799 - merge_group: *832 - organization: *800 - repository: *801 + installation: *800 + merge_group: *833 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166306,7 +166410,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 + enterprise: *799 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -166415,16 +166519,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *799 - organization: *800 + installation: *800 + organization: *801 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -166505,11 +166609,11 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 - milestone: *826 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166588,9 +166692,9 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - milestone: &835 + enterprise: *799 + installation: *800 + milestone: &836 title: Milestone description: A collection of related issues and pull requests. type: object @@ -166727,8 +166831,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166807,11 +166911,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - milestone: *826 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166921,11 +167025,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - milestone: *826 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167005,11 +167109,11 @@ x-webhooks: type: string enum: - opened - enterprise: *798 - installation: *799 - milestone: *835 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *836 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167088,11 +167192,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *820 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + blocked_user: *821 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167171,11 +167275,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *820 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + blocked_user: *821 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167254,9 +167358,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - membership: &836 + enterprise: *799 + installation: *800 + membership: &837 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -167363,8 +167467,8 @@ x-webhooks: - role - organization_url - user - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167442,11 +167546,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *798 - installation: *799 - membership: *836 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + membership: *837 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167525,8 +167629,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -167642,10 +167746,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 - user: *820 + user: *821 required: - action - invitation @@ -167723,11 +167827,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *798 - installation: *799 - membership: *836 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + membership: *837 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167814,11 +167918,11 @@ x-webhooks: properties: from: type: string - enterprise: *798 - installation: *799 - membership: *836 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + membership: *837 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167895,9 +167999,9 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 package: description: Information about the package. type: object @@ -168396,7 +168500,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &837 + items: &838 title: Ruby Gems metadata type: object properties: @@ -168491,7 +168595,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -168567,9 +168671,9 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 package: description: Information about the package. type: object @@ -168922,7 +169026,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 source_url: type: string format: uri @@ -168992,7 +169096,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -169168,12 +169272,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *798 + enterprise: *799 id: type: integer - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - id @@ -169250,7 +169354,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &838 + personal_access_token_request: &839 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -169396,10 +169500,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *798 - organization: *800 + enterprise: *799 + organization: *801 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169476,11 +169580,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *838 - enterprise: *798 - organization: *800 + personal_access_token_request: *839 + enterprise: *799 + organization: *801 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169556,11 +169660,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *838 - enterprise: *798 - organization: *800 + personal_access_token_request: *839 + enterprise: *799 + organization: *801 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169635,11 +169739,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *838 - organization: *800 - enterprise: *798 + personal_access_token_request: *839 + organization: *801 + enterprise: *799 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169744,7 +169848,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *839 + last_response: *840 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -169776,8 +169880,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 zen: description: Random string of GitHub zen. @@ -170022,10 +170126,10 @@ x-webhooks: - from required: - note - enterprise: *798 - installation: *799 - organization: *800 - project_card: &840 + enterprise: *799 + installation: *800 + organization: *801 + project_card: &841 title: Project Card type: object properties: @@ -170144,7 +170248,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *801 + repository: *802 sender: *4 required: - action @@ -170225,11 +170329,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - project_card: *840 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_card: *841 + repository: *802 sender: *4 required: - action @@ -170309,9 +170413,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 project_card: title: Project Card type: object @@ -170439,8 +170543,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -170534,11 +170638,11 @@ x-webhooks: - from required: - note - enterprise: *798 - installation: *799 - organization: *800 - project_card: *840 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_card: *841 + repository: *802 sender: *4 required: - action @@ -170632,9 +170736,9 @@ x-webhooks: - from required: - column_id - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 project_card: allOf: - title: Project Card @@ -170824,7 +170928,7 @@ x-webhooks: type: string required: - after_id - repository: *801 + repository: *802 sender: *4 required: - action @@ -170904,10 +171008,10 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 - organization: *800 - project: &842 + enterprise: *799 + installation: *800 + organization: *801 + project: &843 title: Project type: object properties: @@ -171031,7 +171135,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *801 + repository: *802 sender: *4 required: - action @@ -171111,10 +171215,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - project_column: &841 + enterprise: *799 + installation: *800 + organization: *801 + project_column: &842 title: Project Column type: object properties: @@ -171153,7 +171257,7 @@ x-webhooks: - name - created_at - updated_at - repository: *801 + repository: *802 sender: *4 required: - action @@ -171232,18 +171336,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - project_column: *841 + enterprise: *799 + installation: *800 + organization: *801 + project_column: *842 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -171333,11 +171437,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - project_column: *841 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_column: *842 + repository: *802 sender: *4 required: - action @@ -171417,11 +171521,11 @@ x-webhooks: type: string enum: - moved - enterprise: *798 - installation: *799 - organization: *800 - project_column: *841 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_column: *842 + repository: *802 sender: *4 required: - action @@ -171501,11 +171605,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - project: *842 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 + repository: *802 sender: *4 required: - action @@ -171585,18 +171689,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - project: *842 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -171698,11 +171802,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - project: *842 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 + repository: *802 sender: *4 required: - action @@ -171781,11 +171885,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *798 - installation: *799 - organization: *800 - project: *842 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 + repository: *802 sender: *4 required: - action @@ -171866,9 +171970,9 @@ x-webhooks: type: string enum: - closed - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -171949,9 +172053,9 @@ x-webhooks: type: string enum: - created - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -172032,9 +172136,9 @@ x-webhooks: type: string enum: - deleted - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -172151,9 +172255,9 @@ x-webhooks: type: string to: type: string - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -172236,7 +172340,7 @@ x-webhooks: type: string enum: - archived - changes: &846 + changes: &847 type: object properties: archived_at: @@ -172250,9 +172354,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *799 - organization: *800 - projects_v2_item: &843 + installation: *800 + organization: *801 + projects_v2_item: &844 title: Projects v2 Item description: An item belonging to a project type: object @@ -172270,7 +172374,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *299 + content_type: *300 creator: *4 created_at: type: string @@ -172387,9 +172491,9 @@ x-webhooks: nullable: true to: type: string - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172471,9 +172575,9 @@ x-webhooks: type: string enum: - created - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172554,9 +172658,9 @@ x-webhooks: type: string enum: - deleted - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172662,7 +172766,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &844 + - &845 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -172684,7 +172788,7 @@ x-webhooks: required: - id - name - - &845 + - &846 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -172718,8 +172822,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *844 - *845 + - *846 required: - field_value - type: object @@ -172735,9 +172839,9 @@ x-webhooks: nullable: true required: - body - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172832,9 +172936,9 @@ x-webhooks: to: type: string nullable: true - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172917,10 +173021,10 @@ x-webhooks: type: string enum: - restored - changes: *846 - installation: *799 - organization: *800 - projects_v2_item: *843 + changes: *847 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -173002,9 +173106,9 @@ x-webhooks: type: string enum: - reopened - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -173085,14 +173189,14 @@ x-webhooks: type: string enum: - created - installation: *799 - organization: *800 - projects_v2_status_update: &849 + installation: *800 + organization: *801 + projects_v2_status_update: &850 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *847 - required: *848 + properties: *848 + required: *849 sender: *4 required: - action @@ -173173,9 +173277,9 @@ x-webhooks: type: string enum: - deleted - installation: *799 - organization: *800 - projects_v2_status_update: *849 + installation: *800 + organization: *801 + projects_v2_status_update: *850 sender: *4 required: - action @@ -173311,9 +173415,9 @@ x-webhooks: type: string format: date nullable: true - installation: *799 - organization: *800 - projects_v2_status_update: *849 + installation: *800 + organization: *801 + projects_v2_status_update: *850 sender: *4 required: - action @@ -173384,10 +173488,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - repository @@ -173464,13 +173568,13 @@ x-webhooks: type: string enum: - assigned - assignee: *820 - enterprise: *798 - installation: *799 - number: &850 + assignee: *821 + enterprise: *799 + installation: *800 + number: &851 description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -175649,7 +175753,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -175776,7 +175880,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -175858,11 +175962,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -178034,7 +178138,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -178163,7 +178267,7 @@ x-webhooks: - draft reason: type: string - repository: *801 + repository: *802 sender: *4 required: - action @@ -178245,11 +178349,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -180421,7 +180525,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -180550,7 +180654,7 @@ x-webhooks: - draft reason: type: string - repository: *801 + repository: *802 sender: *4 required: - action @@ -180632,13 +180736,13 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: &851 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: &852 allOf: - - *631 + - *632 - type: object properties: allow_auto_merge: @@ -180700,7 +180804,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *801 + repository: *802 sender: *4 required: - action @@ -180781,12 +180885,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -180866,11 +180970,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *798 - milestone: *614 - number: *850 - organization: *800 - pull_request: &852 + enterprise: *799 + milestone: *615 + number: *851 + organization: *801 + pull_request: &853 title: Pull Request type: object properties: @@ -183029,7 +183133,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -183156,7 +183260,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -183235,11 +183339,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -185402,7 +185506,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -185544,7 +185648,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *801 + repository: *802 sender: *4 required: - action @@ -185668,12 +185772,12 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -185753,11 +185857,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -187920,7 +188024,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -188047,7 +188151,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -188127,11 +188231,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *798 - installation: *799 - label: *819 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + label: *820 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -190309,7 +190413,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -190436,7 +190540,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -190517,10 +190621,10 @@ x-webhooks: type: string enum: - locked - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -192696,7 +192800,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -192823,7 +192927,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -192903,12 +193007,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *798 - milestone: *614 - number: *850 - organization: *800 - pull_request: *852 - repository: *801 + enterprise: *799 + milestone: *615 + number: *851 + organization: *801 + pull_request: *853 + repository: *802 sender: *4 required: - action @@ -192987,12 +193091,12 @@ x-webhooks: type: string enum: - opened - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -193073,12 +193177,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -193158,12 +193262,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -193529,9 +193633,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: type: object properties: @@ -195602,7 +195706,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -195724,7 +195828,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *801 + repository: *802 sender: *4 required: - action @@ -195804,7 +195908,7 @@ x-webhooks: type: string enum: - deleted - comment: &854 + comment: &855 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -196089,9 +196193,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: type: object properties: @@ -198150,7 +198254,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -198272,7 +198376,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *801 + repository: *802 sender: *4 required: - action @@ -198352,11 +198456,11 @@ x-webhooks: type: string enum: - edited - changes: *853 - comment: *854 - enterprise: *798 - installation: *799 - organization: *800 + changes: *854 + comment: *855 + enterprise: *799 + installation: *800 + organization: *801 pull_request: type: object properties: @@ -200418,7 +200522,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -200540,7 +200644,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *801 + repository: *802 sender: *4 required: - action @@ -200621,9 +200725,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -202695,7 +202799,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -202819,7 +202923,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 + repository: *802 review: description: The review that was affected. type: object @@ -203066,9 +203170,9 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -205122,8 +205226,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 - review: &855 + repository: *802 + review: &856 description: The review that was affected. type: object properties: @@ -205356,12 +205460,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -207540,7 +207644,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -207667,7 +207771,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_reviewer: title: User type: object @@ -207751,12 +207855,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -209942,7 +210046,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -210069,7 +210173,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_team: title: Team description: Groups of organization members that gives permissions @@ -210261,12 +210365,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -212446,7 +212550,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -212574,7 +212678,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_reviewer: title: User type: object @@ -212659,12 +212763,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -214835,7 +214939,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -214963,7 +215067,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_team: title: Team description: Groups of organization members that gives permissions @@ -215144,9 +215248,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -217220,7 +217324,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -217344,8 +217448,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 - review: *855 + repository: *802 + review: *856 sender: *4 required: - action @@ -217425,9 +217529,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -219396,7 +219500,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -219520,7 +219624,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 + repository: *802 sender: *4 thread: type: object @@ -219907,9 +220011,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -221865,7 +221969,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -221988,7 +222092,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 + repository: *802 sender: *4 thread: type: object @@ -222372,11 +222476,11 @@ x-webhooks: type: string enum: - stacked - enterprise: *798 - installation: *799 - stack: *628 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + stack: *629 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -224554,7 +224658,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -224681,7 +224785,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -224767,10 +224871,10 @@ x-webhooks: type: string before: type: string - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -226937,7 +227041,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -227064,7 +227168,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -227146,11 +227250,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *856 - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + assignee: *857 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -229329,7 +229433,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -229456,7 +229560,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -229535,11 +229639,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *798 - installation: *799 - label: *819 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + label: *820 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -231708,7 +231812,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -231835,7 +231939,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -231916,10 +232020,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -234081,7 +234185,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -234207,7 +234311,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -234407,7 +234511,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *798 + enterprise: *799 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -234499,8 +234603,8 @@ x-webhooks: - url - author - committer - installation: *799 - organization: *800 + installation: *800 + organization: *801 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -235086,9 +235190,9 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 registry_package: type: object properties: @@ -235534,7 +235638,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -235588,7 +235692,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -235666,9 +235770,9 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 registry_package: type: object properties: @@ -235976,7 +236080,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -236025,7 +236129,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -236102,10 +236206,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - release: &857 + enterprise: *799 + installation: *800 + organization: *801 + release: &858 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -236423,7 +236527,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *801 + repository: *802 sender: *4 required: - action @@ -236500,11 +236604,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - release: *857 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *858 + repository: *802 sender: *4 required: - action @@ -236621,11 +236725,11 @@ x-webhooks: type: boolean required: - to - enterprise: *798 - installation: *799 - organization: *800 - release: *857 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *858 + repository: *802 sender: *4 required: - action @@ -236703,9 +236807,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -237027,7 +237131,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *801 + repository: *802 sender: *4 required: - action @@ -237103,10 +237207,10 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 - release: &858 + enterprise: *799 + installation: *800 + organization: *801 + release: &859 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -237425,7 +237529,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *801 + repository: *802 sender: *4 required: - action @@ -237501,11 +237605,11 @@ x-webhooks: type: string enum: - released - enterprise: *798 - installation: *799 - organization: *800 - release: *857 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *858 + repository: *802 sender: *4 required: - action @@ -237581,11 +237685,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *798 - installation: *799 - organization: *800 - release: *858 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *859 + repository: *802 sender: *4 required: - action @@ -237661,11 +237765,11 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_advisory: *717 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_advisory: *718 sender: *4 required: - action @@ -237741,11 +237845,11 @@ x-webhooks: type: string enum: - reported - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_advisory: *717 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_advisory: *718 sender: *4 required: - action @@ -237821,10 +237925,10 @@ x-webhooks: type: string enum: - archived - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237901,10 +238005,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237982,10 +238086,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238069,10 +238173,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238184,10 +238288,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238259,10 +238363,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 status: type: string @@ -238343,10 +238447,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238423,10 +238527,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238520,10 +238624,10 @@ x-webhooks: - name required: - repository - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238603,11 +238707,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_ruleset: *340 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_ruleset: *341 sender: *4 required: - action @@ -238685,11 +238789,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_ruleset: *340 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_ruleset: *341 sender: *4 required: - action @@ -238767,11 +238871,11 @@ x-webhooks: type: string enum: - edited - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_ruleset: *340 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_ruleset: *341 changes: type: object properties: @@ -238790,16 +238894,16 @@ x-webhooks: properties: added: type: array - items: *314 + items: *315 deleted: type: array - items: *314 + items: *315 updated: type: array items: type: object properties: - condition: *314 + condition: *315 changes: type: object properties: @@ -238832,16 +238936,16 @@ x-webhooks: properties: added: type: array - items: *653 + items: *654 deleted: type: array - items: *653 + items: *654 updated: type: array items: type: object properties: - rule: *653 + rule: *654 changes: type: object properties: @@ -239075,10 +239179,10 @@ x-webhooks: - from required: - owner - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239156,10 +239260,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239237,7 +239341,7 @@ x-webhooks: type: string enum: - create - alert: &859 + alert: &860 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -239359,10 +239463,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239568,10 +239672,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239649,11 +239753,11 @@ x-webhooks: type: string enum: - reopen - alert: *859 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *860 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239852,10 +239956,10 @@ x-webhooks: enum: - fixed - open - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239933,7 +240037,7 @@ x-webhooks: type: string enum: - assigned - alert: &861 + alert: &862 type: object properties: number: *189 @@ -240083,12 +240187,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *860 + metadata: *861 assignee: *4 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240166,11 +240270,11 @@ x-webhooks: type: string enum: - created - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240251,11 +240355,11 @@ x-webhooks: type: string enum: - created - alert: *861 - installation: *799 - location: *862 - organization: *800 - repository: *801 + alert: *862 + installation: *800 + location: *863 + organization: *801 + repository: *802 sender: *4 required: - location @@ -240493,11 +240597,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240574,11 +240678,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240655,11 +240759,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240737,11 +240841,11 @@ x-webhooks: type: string enum: - reopened - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240819,11 +240923,11 @@ x-webhooks: type: string enum: - resolved - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240901,12 +241005,12 @@ x-webhooks: type: string enum: - unassigned - alert: *861 + alert: *862 assignee: *4 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240984,11 +241088,11 @@ x-webhooks: type: string enum: - validated - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -241114,10 +241218,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *801 - enterprise: *798 - installation: *799 - organization: *800 + repository: *802 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -241195,11 +241299,11 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - security_advisory: &863 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + security_advisory: &864 description: The details of the security advisory, including summary, description, and severity. type: object @@ -241382,11 +241486,11 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - security_advisory: *863 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + security_advisory: *864 sender: *4 required: - action @@ -241459,10 +241563,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -241646,11 +241750,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *313 - enterprise: *798 - installation: *799 - organization: *800 - repository: *360 + security_and_analysis: *314 + enterprise: *799 + installation: *800 + organization: *801 + repository: *361 sender: *4 required: - changes @@ -241728,12 +241832,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: &864 + sponsorship: &865 type: object properties: created_at: @@ -242034,12 +242138,12 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - sponsorship @@ -242127,12 +242231,12 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - changes @@ -242209,17 +242313,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &865 + effective_date: &866 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: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - sponsorship @@ -242293,7 +242397,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &866 + changes: &867 type: object properties: tier: @@ -242337,13 +242441,13 @@ x-webhooks: - from required: - tier - effective_date: *865 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + effective_date: *866 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - changes @@ -242420,13 +242524,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *866 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + changes: *867 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - changes @@ -242500,10 +242604,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242586,10 +242690,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243009,15 +243113,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *798 + enterprise: *799 id: description: The unique identifier of the status. type: integer - installation: *799 + installation: *800 name: type: string - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 sha: description: The Commit SHA. @@ -243132,9 +243236,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -243223,9 +243327,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -243314,9 +243418,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -243405,9 +243509,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -243483,12 +243587,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - team: &867 + team: &868 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -243711,9 +243815,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -244171,7 +244275,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -244247,9 +244351,9 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -244707,7 +244811,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -244784,9 +244888,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -245244,7 +245348,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -245388,9 +245492,9 @@ x-webhooks: - from required: - permissions - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -245848,7 +245952,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - changes @@ -245926,9 +246030,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -246386,7 +246490,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -246462,10 +246566,10 @@ x-webhooks: type: string enum: - started - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -246538,16 +246642,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *798 + enterprise: *799 inputs: type: object nullable: true additionalProperties: true - installation: *799 - organization: *800 + installation: *800 + organization: *801 ref: type: string - repository: *801 + repository: *802 sender: *4 workflow: type: string @@ -246629,10 +246733,10 @@ x-webhooks: type: string enum: - completed - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: allOf: @@ -246869,7 +246973,7 @@ x-webhooks: type: string required: - conclusion - deployment: *522 + deployment: *523 required: - action - repository @@ -246948,10 +247052,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: allOf: @@ -247211,7 +247315,7 @@ x-webhooks: required: - status - steps - deployment: *522 + deployment: *523 required: - action - repository @@ -247290,10 +247394,10 @@ x-webhooks: type: string enum: - queued - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: type: object @@ -247428,7 +247532,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *522 + deployment: *523 required: - action - repository @@ -247507,10 +247611,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: type: object @@ -247646,7 +247750,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *522 + deployment: *523 required: - action - repository @@ -247726,12 +247830,12 @@ x-webhooks: type: string enum: - completed - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Workflow Run type: object @@ -248730,12 +248834,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Workflow Run type: object @@ -249719,12 +249823,12 @@ x-webhooks: type: string enum: - requested - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json index b9026df26b..a65573277f 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.json @@ -26911,6 +26911,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -28241,7 +28249,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -28466,7 +28475,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -73149,6 +73159,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -125798,6 +125812,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -127128,7 +127150,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -127353,7 +127376,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -198626,6 +198650,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -348632,6 +348707,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -349542,7 +349625,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -349700,7 +349784,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -350864,7 +350949,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -352044,7 +352130,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -682479,6 +682566,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ diff --git a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml index 248f0ddf86..705caffc8e 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.2026-03-10.deref.yaml @@ -836,7 +836,7 @@ paths: - subscriptions_url - type - url - type: &348 + type: &349 type: string description: The type of credit the user is receiving. enum: @@ -1001,7 +1001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &719 + - &720 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4221,7 +4221,7 @@ paths: schema: type: integer default: 30 - - &232 + - &233 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 @@ -4230,7 +4230,7 @@ paths: required: false schema: type: string - - &233 + - &234 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4250,7 +4250,7 @@ paths: application/json: schema: type: array - items: &234 + items: &235 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4330,7 +4330,7 @@ paths: - installation_id - repository_id examples: - default: &235 + default: &236 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4458,7 +4458,7 @@ paths: description: Response content: application/json: - schema: &236 + schema: &237 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4572,7 +4572,7 @@ paths: - request - response examples: - default: &237 + default: &238 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5561,7 +5561,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &311 + properties: &312 id: description: Unique identifier of the repository example: 42 @@ -5997,7 +5997,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &312 + required: &313 - archive_url - assignees_url - blobs_url @@ -12185,7 +12185,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 - - &511 + - &512 name: has in: query description: |- @@ -12219,6 +12219,16 @@ paths: - development - runtime - &221 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &222 name: sort in: query description: |- @@ -12244,7 +12254,7 @@ paths: application/json: schema: type: array - items: &222 + items: &223 type: object description: A Dependabot alert. properties: @@ -12311,7 +12321,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &512 + security_advisory: &513 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12558,14 +12568,14 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &513 + auto_dismissed_at: &514 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &514 + dismissal_request: &515 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12627,7 +12637,7 @@ paths: - repository additionalProperties: false examples: - default: &223 + default: &224 value: - number: 2 state: dismissed @@ -12637,6 +12647,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -12823,6 +12834,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -13012,7 +13024,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &225 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13038,7 +13050,7 @@ paths: nullable: true additionalProperties: false examples: - default: &225 + default: &226 value: default_level: public accessible_repositories: @@ -14253,7 +14265,7 @@ paths: properties: action: type: string - discussion: &816 + discussion: &817 title: Discussion description: A Discussion in a repository. type: object @@ -14620,7 +14632,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &565 + properties: &566 id: type: integer format: int64 @@ -14726,7 +14738,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &295 + properties: &296 url: type: string format: uri @@ -14796,7 +14808,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &296 + required: &297 - closed_issues - creator - description @@ -14875,7 +14887,7 @@ paths: timeline_url: type: string format: uri - type: &258 + type: &259 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -14991,7 +15003,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &731 + sub_issues_summary: &732 title: Sub-issues Summary type: object properties: @@ -15078,7 +15090,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &594 + properties: &595 pinned_at: type: string format: date-time @@ -15090,7 +15102,7 @@ paths: properties: *20 required: *21 nullable: true - required: &595 + required: &596 - pinned_at - pinned_by nullable: true @@ -15099,13 +15111,13 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &596 + properties: &597 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &597 + required: &598 - reason nullable: true required: &91 @@ -15118,7 +15130,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &732 + issue_dependencies_summary: &733 title: Issue Dependencies Summary type: object properties: @@ -15137,7 +15149,7 @@ paths: - total_blocking issue_field_values: type: array - items: &576 + items: &577 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15229,7 +15241,7 @@ paths: - node_id - data_type - value - required: &566 + required: &567 - closed_at - comments - comments_url @@ -15266,7 +15278,7 @@ paths: action: type: string issue: *89 - comment: &561 + comment: &562 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -15930,7 +15942,7 @@ paths: type: string release: allOf: - - &643 + - &644 title: Release description: A release. type: object @@ -16001,7 +16013,7 @@ paths: author: *4 assets: type: array - items: &644 + items: &645 title: Release Asset description: Data related to a release. type: object @@ -18243,7 +18255,7 @@ paths: - closed - all default: open - - &261 + - &262 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18294,7 +18306,7 @@ paths: type: array items: *89 examples: - default: &262 + default: &263 value: - id: 1 node_id: MDU6SXNzdWUx @@ -19693,14 +19705,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &357 + - &358 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &358 + - &359 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -19762,7 +19774,7 @@ paths: '404': *6 '403': *29 '304': *38 - '301': &361 + '301': &362 description: Moved permanently content: application/json: @@ -19784,7 +19796,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &617 + - &618 name: all description: If `true`, show notifications marked as read. in: query @@ -19792,7 +19804,7 @@ paths: schema: type: boolean default: false - - &618 + - &619 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -19802,7 +19814,7 @@ paths: type: boolean default: false - *96 - - &619 + - &620 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: @@ -19838,7 +19850,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &227 + properties: &228 id: type: integer format: int64 @@ -20122,7 +20134,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &313 + security_and_analysis: &314 nullable: true type: object properties: @@ -20242,7 +20254,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &228 + required: &229 - archive_url - assignees_url - blobs_url @@ -20330,7 +20342,7 @@ paths: - url - subscription_url examples: - default: &620 + default: &621 value: - id: '1' repository: @@ -21319,6 +21331,10 @@ paths: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -22244,7 +22260,7 @@ paths: parameters: - *79 - *125 - - &792 + - &793 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 @@ -22356,7 +22372,7 @@ paths: - *125 - *126 - *127 - - &793 + - &794 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22364,7 +22380,7 @@ paths: schema: type: string - *130 - - &794 + - &795 name: sku description: The SKU to query for usage. in: query @@ -23257,7 +23273,7 @@ paths: type: integer repository_cache_usages: type: array - items: &368 + items: &369 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -24599,7 +24615,7 @@ paths: - all - local_only - selected - selected_actions_url: &373 + selected_actions_url: &374 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` @@ -24682,7 +24698,7 @@ paths: description: Response content: application/json: - schema: &377 + schema: &378 type: object properties: days: @@ -24724,7 +24740,7 @@ paths: required: true content: application/json: - schema: &378 + schema: &379 type: object properties: days: @@ -24781,7 +24797,7 @@ paths: required: - approval_policy examples: - default: &379 + default: &380 value: approval_policy: first_time_contributors '404': *6 @@ -24840,7 +24856,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &381 type: object required: - run_workflows_from_fork_pull_requests @@ -24894,7 +24910,7 @@ paths: required: true content: application/json: - schema: &381 + schema: &382 type: object required: - run_workflows_from_fork_pull_requests @@ -25529,7 +25545,7 @@ paths: description: Response content: application/json: - schema: &382 + schema: &383 type: object properties: default_workflow_permissions: &157 @@ -25580,7 +25596,7 @@ paths: required: false content: application/json: - schema: &383 + schema: &384 type: object properties: default_workflow_permissions: *157 @@ -26720,7 +26736,7 @@ paths: application/json: schema: type: array - items: &384 + items: &385 title: Runner Application description: Runner Application type: object @@ -26745,7 +26761,7 @@ paths: - download_url - filename examples: - default: &385 + default: &386 value: - os: osx architecture: x64 @@ -26831,7 +26847,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &386 + '201': &387 description: Response content: application/json: @@ -26942,7 +26958,7 @@ paths: - token - expires_at examples: - default: &387 + default: &388 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -26981,7 +26997,7 @@ paths: application/json: schema: *168 examples: - default: &388 + default: &389 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -27015,7 +27031,7 @@ paths: application/json: schema: *166 examples: - default: &389 + default: &390 value: id: 23 name: MBP @@ -27242,7 +27258,7 @@ paths: - *79 - *165 responses: - '200': &390 + '200': &391 description: Response content: application/json: @@ -27299,7 +27315,7 @@ paths: parameters: - *79 - *165 - - &391 + - &392 name: name description: The name of a self-hosted runner's custom label. in: path @@ -30234,12 +30250,12 @@ paths: required: - subject_digests examples: - default: &773 + default: &774 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &774 + withPredicateType: &775 value: subject_digests: - sha256:abc123 @@ -30283,7 +30299,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &775 + default: &776 value: attestations_subject_digests: - sha256:abc: @@ -30616,7 +30632,7 @@ paths: initiator: type: string examples: - default: &417 + default: &418 value: attestations: - repository_id: 1 @@ -30896,7 +30912,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &273 + properties: &274 id: description: Unique identifier of the team type: integer @@ -30968,7 +30984,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &274 + required: &275 - id - node_id - url @@ -31474,7 +31490,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *79 - - &444 + - &445 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`, @@ -31484,7 +31500,7 @@ paths: schema: &196 type: string description: The name of the tool used to generate the code scanning analysis. - - &445 + - &446 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 @@ -31507,7 +31523,7 @@ paths: be returned. in: query required: false - schema: &447 + schema: &448 type: string description: State of a code scanning alert. enum: @@ -31530,7 +31546,7 @@ paths: be returned. in: query required: false - schema: &448 + schema: &449 type: string description: Severity of a code scanning alert. enum: @@ -31564,7 +31580,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: &449 + instances_url: &450 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -31587,7 +31603,7 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: &450 + dismissed_reason: &451 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -31596,13 +31612,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &451 + dismissed_comment: &452 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &452 + rule: &453 type: object properties: id: @@ -31655,7 +31671,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &453 + tool: &454 type: object properties: name: *196 @@ -31665,26 +31681,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *197 - most_recent_instance: &454 + most_recent_instance: &455 type: object properties: - ref: &446 + ref: &447 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &465 + analysis_key: &466 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: &466 + environment: &467 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: &467 + category: &468 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -31704,7 +31720,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: &468 + location: &469 type: object description: Describe a region within a file for the alert. properties: @@ -31725,7 +31741,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: &469 + items: &470 type: string description: A classification of the file. For example to identify it as generated. @@ -33026,7 +33042,7 @@ paths: type: integer codespaces: type: array - items: &263 + items: &264 type: object title: Codespace description: A codespace. @@ -33056,7 +33072,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &481 + properties: &482 name: type: string description: The name of the machine. @@ -33098,7 +33114,7 @@ paths: - ready - in_progress nullable: true - required: &482 + required: &483 - name - display_name - operating_system @@ -33303,7 +33319,7 @@ paths: - pulls_url - recent_folders examples: - default: &264 + default: &265 value: total_count: 3 codespaces: @@ -33966,7 +33982,7 @@ paths: - updated_at - visibility examples: - default: &483 + default: &484 value: total_count: 2 secrets: @@ -34004,7 +34020,7 @@ paths: description: Response content: application/json: - schema: &484 + schema: &485 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -34033,7 +34049,7 @@ paths: - key_id - key examples: - default: &485 + default: &486 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34065,7 +34081,7 @@ paths: application/json: schema: *204 examples: - default: &487 + default: &488 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -36129,7 +36145,7 @@ paths: currently being billed. seats: type: array - items: &266 + items: &267 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -37337,6 +37353,7 @@ paths: type: string - *220 - *221 + - *222 - *63 - *48 - *49 @@ -37348,9 +37365,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '304': *38 '400': *14 '403': *29 @@ -37399,9 +37416,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '403': *29 '404': *6 x-github: @@ -37564,7 +37581,7 @@ paths: type: integer secrets: type: array - items: &226 + items: &227 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -37641,7 +37658,7 @@ paths: description: Response content: application/json: - schema: &517 + schema: &518 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -37658,7 +37675,7 @@ paths: - key_id - key examples: - default: &518 + default: &519 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -37688,7 +37705,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: default: value: @@ -37985,7 +38002,7 @@ paths: application/json: schema: type: array - items: &276 + items: &277 title: Package description: A software package type: object @@ -38035,8 +38052,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *227 - required: *228 + properties: *228 + required: *229 nullable: true created_at: type: string @@ -38055,7 +38072,7 @@ paths: - created_at - updated_at examples: - default: &277 + default: &278 value: - id: 197 name: hello_docker @@ -38225,7 +38242,7 @@ paths: application/json: schema: type: array - items: &252 + items: &253 title: Organization Invitation description: Organization Invitation type: object @@ -38272,7 +38289,7 @@ paths: - invitation_teams_url - node_id examples: - default: &253 + default: &254 value: - id: 1 login: monalisa @@ -38339,7 +38356,7 @@ paths: application/json: schema: type: array - items: &229 + items: &230 title: Org Hook description: Org Hook type: object @@ -38510,9 +38527,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: &230 + default: &231 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -38560,7 +38577,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *79 - - &231 + - &232 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. @@ -38573,9 +38590,9 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: - default: *230 + default: *231 '404': *6 x-github: githubCloudOnly: false @@ -38603,7 +38620,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *79 - - *231 + - *232 requestBody: required: false content: @@ -38648,7 +38665,7 @@ paths: description: Response content: application/json: - schema: *229 + schema: *230 examples: default: value: @@ -38690,7 +38707,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *79 - - *231 + - *232 responses: '204': description: Response @@ -38718,7 +38735,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *79 - - *231 + - *232 responses: '200': description: Response @@ -38749,7 +38766,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *79 - - *231 + - *232 requestBody: required: false content: @@ -38800,10 +38817,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *79 - - *231 - - *17 - *232 + - *17 - *233 + - *234 responses: '200': description: Response @@ -38811,9 +38828,9 @@ paths: application/json: schema: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '400': *14 '422': *15 x-github: @@ -38839,16 +38856,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *79 - - *231 + - *232 - *16 responses: '200': description: Response content: application/json: - schema: *236 + schema: *237 examples: - default: *237 + default: *238 '400': *14 '422': *15 x-github: @@ -38874,7 +38891,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *79 - - *231 + - *232 - *16 responses: '202': *40 @@ -38904,7 +38921,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *79 - - *231 + - *232 responses: '204': description: Response @@ -38929,7 +38946,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *79 - - &242 + - &243 name: actor_type in: path description: The type of the actor @@ -38942,14 +38959,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &243 + - &244 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &238 + - &239 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`.' @@ -38957,7 +38974,7 @@ paths: required: true schema: type: string - - &239 + - &240 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) @@ -39053,12 +39070,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *79 - - *238 - *239 + - *240 - *19 - *17 - *63 - - &248 + - &249 name: sort description: The property to sort the results by. in: query @@ -39138,14 +39155,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *79 - - *238 - *239 + - *240 responses: '200': description: Response content: application/json: - schema: &240 + schema: &241 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -39161,7 +39178,7 @@ paths: type: integer format: int64 examples: - default: &241 + default: &242 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -39184,23 +39201,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *79 - - &244 + - &245 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *238 - *239 + - *240 responses: '200': description: Response content: application/json: - schema: *240 + schema: *241 examples: - default: *241 + default: *242 x-github: enabledForGitHubApps: true category: orgs @@ -39220,18 +39237,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *79 - - *238 - *239 - - *242 + - *240 - *243 + - *244 responses: '200': description: Response content: application/json: - schema: *240 + schema: *241 examples: - default: *241 + default: *242 x-github: enabledForGitHubApps: true category: orgs @@ -39251,9 +39268,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *79 - - *238 - *239 - - &245 + - *240 + - &246 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -39266,7 +39283,7 @@ paths: description: Response content: application/json: - schema: &246 + schema: &247 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -39282,7 +39299,7 @@ paths: type: integer format: int64 examples: - default: &247 + default: &248 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -39321,18 +39338,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *79 - - *244 - - *238 - - *239 - *245 + - *239 + - *240 + - *246 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 x-github: enabledForGitHubApps: true category: orgs @@ -39352,19 +39369,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *79 - - *242 - *243 - - *238 + - *244 - *239 - - *245 + - *240 + - *246 responses: '200': description: Response content: application/json: - schema: *246 + schema: *247 examples: - default: *247 + default: *248 x-github: enabledForGitHubApps: true category: orgs @@ -39384,13 +39401,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *79 - - *244 - - *238 + - *245 - *239 + - *240 - *19 - *17 - *63 - - *248 + - *249 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -39471,7 +39488,7 @@ paths: application/json: schema: *22 examples: - default: &555 + default: &556 value: id: 1 account: @@ -39637,12 +39654,12 @@ paths: application/json: schema: anyOf: - - &250 + - &251 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &249 + limit: &250 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -39667,7 +39684,7 @@ paths: properties: {} additionalProperties: false examples: - default: &251 + default: &252 value: limit: collaborators_only origin: organization @@ -39696,13 +39713,13 @@ paths: required: true content: application/json: - schema: &556 + schema: &557 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *249 + limit: *250 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -39726,9 +39743,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: - default: *251 + default: *252 '422': *15 x-github: githubCloudOnly: false @@ -39938,9 +39955,9 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: - default: *253 + default: *254 headers: Link: *71 '404': *6 @@ -40017,7 +40034,7 @@ paths: description: Response content: application/json: - schema: *252 + schema: *253 examples: default: value: @@ -40072,7 +40089,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *79 - - &254 + - &255 name: invitation_id description: The unique identifier of the invitation. in: path @@ -40103,7 +40120,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *79 - - *254 + - *255 - *17 - *19 responses: @@ -40115,7 +40132,7 @@ paths: type: array items: *211 examples: - default: &275 + default: &276 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -40158,7 +40175,7 @@ paths: application/json: schema: type: array - items: &255 + items: &256 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -40411,9 +40428,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: - default: &256 + default: &257 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -40469,7 +40486,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *79 - - &257 + - &258 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -40577,9 +40594,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *256 examples: - default: *256 + default: *257 '404': *6 '422': *7 x-github: @@ -40604,7 +40621,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *79 - - *257 + - *258 responses: '204': *60 '404': *6 @@ -40634,9 +40651,9 @@ paths: application/json: schema: type: array - items: *258 + items: *259 examples: - default: &560 + default: &561 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -40719,9 +40736,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - default: &259 + default: &260 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -40754,7 +40771,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *79 - - &260 + - &261 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -40807,9 +40824,9 @@ paths: description: Response content: application/json: - schema: *258 + schema: *259 examples: - default: *259 + default: *260 '404': *6 '422': *7 x-github: @@ -40834,7 +40851,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *79 - - *260 + - *261 responses: '204': description: Response @@ -40897,7 +40914,7 @@ paths: - closed - all default: open - - *261 + - *262 - name: type description: Can be the name of an issue type. in: query @@ -40928,7 +40945,7 @@ paths: type: array items: *89 examples: - default: *262 + default: *263 headers: Link: *71 '404': *6 @@ -41088,9 +41105,9 @@ paths: type: integer codespaces: type: array - items: *263 + items: *264 examples: - default: *264 + default: *265 '304': *38 '500': *56 '401': *25 @@ -41117,7 +41134,7 @@ paths: parameters: - *79 - *75 - - &265 + - &266 name: codespace_name in: path required: true @@ -41152,15 +41169,15 @@ paths: parameters: - *79 - *75 - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: &480 + default: &481 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -41340,7 +41357,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *266 + schema: *267 examples: default: value: @@ -41416,7 +41433,7 @@ paths: description: Response content: application/json: - schema: &267 + schema: &268 title: Org Membership description: Org Membership type: object @@ -41483,7 +41500,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &268 + response-if-user-has-an-active-admin-membership-with-organization: &269 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -41584,9 +41601,9 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: - response-if-user-already-had-membership-with-organization: *268 + response-if-user-already-had-membership-with-organization: *269 '422': *15 '403': *29 '451': *15 @@ -41658,7 +41675,7 @@ paths: application/json: schema: type: array - items: &269 + items: &270 title: Migration description: A migration. type: object @@ -41987,7 +42004,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -42166,7 +42183,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *79 - - &270 + - &271 name: migration_id description: The unique identifier of the migration. in: path @@ -42193,7 +42210,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -42363,7 +42380,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *79 - - *270 + - *271 responses: '302': description: Response @@ -42385,7 +42402,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *79 - - *270 + - *271 responses: '204': description: Response @@ -42409,8 +42426,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *79 - - *270 - - &755 + - *271 + - &756 name: repo_name description: repo_name parameter in: path @@ -42438,7 +42455,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *79 - - *270 + - *271 - *17 - *19 responses: @@ -42492,7 +42509,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &272 + items: &273 title: Organization Role description: Organization roles type: object @@ -42667,7 +42684,7 @@ paths: parameters: - *79 - *81 - - &271 + - &272 name: role_id description: The unique identifier of the role. in: path @@ -42704,7 +42721,7 @@ paths: parameters: - *79 - *81 - - *271 + - *272 responses: '204': description: Response @@ -42757,7 +42774,7 @@ paths: parameters: - *79 - *75 - - *271 + - *272 responses: '204': description: Response @@ -42789,7 +42806,7 @@ paths: parameters: - *79 - *75 - - *271 + - *272 responses: '204': description: Response @@ -42818,13 +42835,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *79 - - *271 + - *272 responses: '200': description: Response content: application/json: - schema: *272 + schema: *273 examples: default: value: @@ -42875,7 +42892,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *79 - - *271 + - *272 - *17 - *19 responses: @@ -42953,8 +42970,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *273 - required: *274 + properties: *274 + required: *275 nullable: true type: description: The ownership type of the team @@ -42986,7 +43003,7 @@ paths: - type - parent examples: - default: *275 + default: *276 headers: Link: *71 '404': @@ -43016,7 +43033,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *79 - - *271 + - *272 - *17 - *19 responses: @@ -43044,13 +43061,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &349 + items: &350 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *273 - required: *274 + properties: *274 + required: *275 name: nullable: true type: string @@ -43338,7 +43355,7 @@ paths: - nuget - container - *79 - - &756 + - &757 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -43374,12 +43391,12 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *277 + default: *278 '403': *29 '401': *25 - '400': &758 + '400': &759 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -43401,7 +43418,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &278 + - &279 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 @@ -43419,7 +43436,7 @@ paths: - docker - nuget - container - - &279 + - &280 name: package_name description: The name of the package. in: path @@ -43432,7 +43449,7 @@ paths: description: Response content: application/json: - schema: *276 + schema: *277 examples: default: value: @@ -43484,8 +43501,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *278 - *279 + - *280 - *79 responses: '204': @@ -43518,8 +43535,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - name: token description: package token @@ -43552,8 +43569,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: - - *278 - *279 + - *280 - *79 - *19 - *17 @@ -43574,7 +43591,7 @@ paths: application/json: schema: type: array - items: &280 + items: &281 title: Package Version description: A version of a software package type: object @@ -43699,10 +43716,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - - &281 + - &282 name: package_version_id description: Unique identifier of the package version. in: path @@ -43714,7 +43731,7 @@ paths: description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -43750,10 +43767,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - - *281 + - *282 responses: '204': description: Response @@ -43785,10 +43802,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *278 - *279 + - *280 - *79 - - *281 + - *282 responses: '204': description: Response @@ -43818,7 +43835,7 @@ paths: - *79 - *17 - *19 - - &282 + - &283 name: sort description: The property by which to sort the results. in: query @@ -43829,7 +43846,7 @@ paths: - created_at default: created_at - *63 - - &283 + - &284 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -43840,7 +43857,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &284 + - &285 name: repository description: The name of the repository to use to filter the results. in: query @@ -43848,7 +43865,7 @@ paths: schema: type: string example: Hello-World - - &285 + - &286 name: permission description: The permission to use to filter the results. in: query @@ -43856,7 +43873,7 @@ paths: schema: type: string example: issues_read - - &286 + - &287 name: last_used_before description: 'Only show fine-grained personal access tokens used before the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -43866,7 +43883,7 @@ paths: schema: type: string format: date-time - - &287 + - &288 name: last_used_after description: 'Only show fine-grained personal access tokens used after the given time. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) @@ -43876,7 +43893,7 @@ paths: schema: type: string format: date-time - - &288 + - &289 name: token_id description: The ID of the token in: query @@ -44189,7 +44206,7 @@ paths: type: array items: *164 examples: - default: &289 + default: &290 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -44326,14 +44343,14 @@ paths: - *79 - *17 - *19 - - *282 - - *63 - *283 + - *63 - *284 - *285 - *286 - *287 - *288 + - *289 responses: '500': *56 '422': *15 @@ -44615,7 +44632,7 @@ paths: type: array items: *164 examples: - default: *289 + default: *290 headers: Link: *71 x-github: @@ -44657,7 +44674,7 @@ paths: type: integer configurations: type: array - items: &290 + items: &291 title: Organization private registry description: Private registry configuration for an organization type: object @@ -45168,7 +45185,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &291 + org-private-registry-with-selected-visibility: &292 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -45264,9 +45281,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *290 + schema: *291 examples: - default: *291 + default: *292 '404': *6 x-github: githubCloudOnly: false @@ -45517,7 +45534,7 @@ paths: application/json: schema: type: array - items: &292 + items: &293 title: Projects v2 Project description: A projects v2 project type: object @@ -45587,7 +45604,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &847 + properties: &848 id: type: number description: The unique identifier of the status update. @@ -45635,7 +45652,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &848 + required: &849 - id - node_id - created_at @@ -45660,7 +45677,7 @@ paths: - deleted_at - deleted_by examples: - default: &293 + default: &294 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -45763,7 +45780,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &294 + - &295 name: project_number description: The project's number. in: path @@ -45776,9 +45793,9 @@ paths: description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *293 + default: *294 headers: Link: *71 '304': *38 @@ -45801,7 +45818,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *79 - - *294 + - *295 requestBody: required: true description: Details of the draft item to create in the project. @@ -45835,7 +45852,7 @@ paths: description: Response content: application/json: - schema: &300 + schema: &301 title: Projects v2 Item description: An item belonging to a project type: object @@ -45849,7 +45866,7 @@ paths: content: oneOf: - *89 - - &455 + - &456 title: Pull Request Simple description: Pull Request Simple type: object @@ -45955,8 +45972,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 nullable: true active_lock_reason: type: string @@ -46038,7 +46055,7 @@ paths: _links: type: object properties: - comments: &297 + comments: &298 title: Link description: Hypermedia Link type: object @@ -46047,13 +46064,13 @@ paths: type: string required: - href - commits: *297 - statuses: *297 - html: *297 - issue: *297 - review_comments: *297 - review_comment: *297 - self: *297 + commits: *298 + statuses: *298 + html: *298 + issue: *298 + review_comments: *298 + review_comment: *298 + self: *298 required: - comments - commits @@ -46064,7 +46081,7 @@ paths: - review_comment - self author_association: *86 - auto_merge: &627 + auto_merge: &628 title: Auto merge description: The status of auto merging a pull request. type: object @@ -46089,7 +46106,7 @@ paths: - commit_title - commit_message nullable: true - stack: &628 + stack: &629 title: Pull Request Stack description: The stack information associated with a pull request. @@ -46203,7 +46220,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &299 + content_type: &300 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -46243,7 +46260,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &301 + draft_issue: &302 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -46317,7 +46334,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *294 + - *295 - *79 - *17 - *48 @@ -46329,7 +46346,7 @@ paths: application/json: schema: type: array - items: &298 + items: &299 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -46479,7 +46496,7 @@ paths: - updated_at - project_url examples: - default: &779 + default: &780 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46609,7 +46626,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *294 + - *295 - *79 requestBody: required: true @@ -46656,7 +46673,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &780 + items: &781 type: object properties: name: @@ -46693,7 +46710,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &781 + iteration_configuration: &782 type: object description: The configuration for iteration fields. properties: @@ -46743,7 +46760,7 @@ paths: value: name: Due date data_type: date - single_select_field: &782 + single_select_field: &783 summary: Create a single select field value: name: Priority @@ -46770,7 +46787,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &783 + iteration_field: &784 summary: Create an iteration field value: name: Sprint @@ -46794,9 +46811,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *298 + schema: *299 examples: - text_field: &784 + text_field: &785 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -46805,7 +46822,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: &785 + number_field: &786 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -46814,7 +46831,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: &786 + date_field: &787 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -46823,7 +46840,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: &787 + single_select_field: &788 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46857,7 +46874,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &788 + iteration_field: &789 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -46902,8 +46919,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *294 - - &789 + - *295 + - &790 name: field_id description: The unique identifier of the field. in: path @@ -46916,9 +46933,9 @@ paths: description: Response content: application/json: - schema: *298 + schema: *299 examples: - default: &790 + default: &791 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -46974,7 +46991,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *294 + - *295 - *79 - 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) @@ -47007,7 +47024,7 @@ paths: application/json: schema: type: array - items: &302 + items: &303 title: Projects v2 Item description: An item belonging to a project type: object @@ -47023,7 +47040,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *299 + content_type: *300 content: type: object additionalProperties: true @@ -47066,7 +47083,7 @@ paths: - updated_at - archived_at examples: - default: &303 + default: &304 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -47764,7 +47781,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *79 - - *294 + - *295 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -47834,22 +47851,22 @@ paths: description: Response content: application/json: - schema: *300 + schema: *301 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *301 + value: *302 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *301 + value: *302 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *301 + value: *302 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *301 + value: *302 '304': *38 '403': *29 '401': *25 @@ -47869,9 +47886,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *294 + - *295 - *79 - - &304 + - &305 name: item_id description: The unique identifier of the project item. in: path @@ -47897,9 +47914,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -47920,9 +47937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *294 + - *295 - *79 - - *304 + - *305 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -47992,13 +48009,13 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - text_field: *303 - number_field: *303 - date_field: *303 - single_select_field: *303 - iteration_field: *303 + text_field: *304 + number_field: *304 + date_field: *304 + single_select_field: *304 + iteration_field: *304 '401': *25 '403': *29 '404': *6 @@ -48018,9 +48035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *294 + - *295 - *79 - - *304 + - *305 responses: '204': description: Response @@ -48044,7 +48061,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *79 - - *294 + - *295 requestBody: required: true content: @@ -48080,6 +48097,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -48115,7 +48173,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &770 + schema: &771 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -48213,7 +48271,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &305 + value: &306 value: id: 1 number: 1 @@ -48259,10 +48317,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *305 + value: *306 roadmap_view: summary: Response for creating a roadmap view - value: *305 + value: *306 '304': *38 '403': *29 '401': *25 @@ -48290,9 +48348,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *294 + - *295 - *79 - - &791 + - &792 name: view_number description: The number that identifies the project view. in: path @@ -48324,9 +48382,9 @@ paths: application/json: schema: type: array - items: *302 + items: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -48359,7 +48417,7 @@ paths: application/json: schema: type: array - items: &306 + items: &307 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -48427,7 +48485,7 @@ paths: - property_name - value_type examples: - default: &307 + default: &308 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48487,7 +48545,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *306 + items: *307 minItems: 1 maxItems: 100 required: @@ -48517,9 +48575,9 @@ paths: application/json: schema: type: array - items: *306 + items: *307 examples: - default: *307 + default: *308 '403': *29 '404': *6 x-github: @@ -48541,7 +48599,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *79 - - &308 + - &309 name: custom_property_name description: The custom property name in: path @@ -48553,9 +48611,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *307 examples: - default: &309 + default: &310 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -48590,7 +48648,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *79 - - *308 + - *309 requestBody: required: true content: @@ -48661,9 +48719,9 @@ paths: description: Response content: application/json: - schema: *306 + schema: *307 examples: - default: *309 + default: *310 '403': *29 '404': *6 x-github: @@ -48687,7 +48745,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *79 - - *308 + - *309 responses: '204': *60 '403': *29 @@ -48748,7 +48806,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &310 + items: &311 title: Custom Property Value description: Custom property name and associated value type: object @@ -48835,7 +48893,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *310 + items: *311 required: - repository_names - properties @@ -49027,7 +49085,7 @@ paths: type: array items: *164 examples: - default: *289 + default: *290 headers: Link: *71 x-github: @@ -49229,7 +49287,7 @@ paths: description: Response content: application/json: - schema: &360 + schema: &361 title: Full Repository description: Full Repository type: object @@ -49514,8 +49572,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *311 - required: *312 + properties: *312 + required: *313 nullable: true temp_clone_token: type: string @@ -49627,7 +49685,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &501 + properties: &502 url: type: string format: uri @@ -49643,12 +49701,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &502 + required: &503 - url - key - name - html_url - security_and_analysis: *313 + security_and_analysis: *314 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -49732,7 +49790,7 @@ paths: - network_count - subscribers_count examples: - default: &362 + default: &363 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -50253,7 +50311,7 @@ paths: - *79 - *17 - *19 - - &652 + - &653 name: targets description: | A comma-separated list of rule targets to filter by. @@ -50271,7 +50329,7 @@ paths: application/json: schema: type: array - items: &340 + items: &341 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -50306,7 +50364,7 @@ paths: source: type: string description: The name of the source - enforcement: &316 + enforcement: &317 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -50319,7 +50377,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &317 + items: &318 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -50390,7 +50448,7 @@ paths: conditions: nullable: true anyOf: - - &314 + - &315 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -50414,7 +50472,7 @@ paths: match. items: type: string - - &318 + - &319 title: Organization ruleset conditions type: object description: |- @@ -50428,7 +50486,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *314 + - *315 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -50462,7 +50520,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *314 + - *315 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -50484,7 +50542,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *314 + - *315 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -50497,7 +50555,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &315 + items: &316 title: Repository ruleset property targeting definition type: object @@ -50530,17 +50588,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *315 + items: *316 required: - repository_property rules: type: array - items: &653 + items: &654 title: Repository Rule type: object description: A repository rule. oneOf: - - &319 + - &320 title: creation description: Only allow users with bypass permission to create matching refs. @@ -50552,7 +50610,7 @@ paths: type: string enum: - creation - - &320 + - &321 title: update description: Only allow users with bypass permission to update matching refs. @@ -50573,7 +50631,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &321 + - &322 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -50585,7 +50643,7 @@ paths: type: string enum: - deletion - - &322 + - &323 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -50597,7 +50655,7 @@ paths: type: string enum: - required_linear_history - - &650 + - &651 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -50675,7 +50733,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &323 + - &324 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -50699,7 +50757,7 @@ paths: type: string required: - required_deployment_environments - - &324 + - &325 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -50711,7 +50769,7 @@ paths: type: string enum: - required_signatures - - &325 + - &326 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -50854,7 +50912,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &326 + - &327 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -50902,7 +50960,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &327 + - &328 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -50914,7 +50972,7 @@ paths: type: string enum: - non_fast_forward - - &328 + - &329 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -50951,7 +51009,7 @@ paths: required: - operator - pattern - - &329 + - &330 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -50988,7 +51046,7 @@ paths: required: - operator - pattern - - &330 + - &331 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -51025,7 +51083,7 @@ paths: required: - operator - pattern - - &331 + - &332 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -51062,7 +51120,7 @@ paths: required: - operator - pattern - - &332 + - &333 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -51099,7 +51157,7 @@ paths: required: - operator - pattern - - &337 + - &338 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -51149,7 +51207,7 @@ paths: - repository_id required: - workflows - - &338 + - &339 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -51210,7 +51268,7 @@ paths: - tool required: - code_scanning_tools - - &339 + - &340 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -51236,7 +51294,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &651 + - &652 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -51248,7 +51306,7 @@ paths: type: string enum: - license_compliance_scanning - - &333 + - &334 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -51273,7 +51331,7 @@ paths: type: string required: - restricted_file_paths - - &334 + - &335 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -51297,7 +51355,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &335 + - &336 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -51320,7 +51378,7 @@ paths: type: string required: - restricted_file_extensions - - &336 + - &337 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -51418,21 +51476,20 @@ paths: - push - repository default: branch - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *318 + items: *318 + conditions: *319 rules: type: array description: An array of rules within the ruleset. - items: &342 + items: &343 title: Repository Rule type: object description: A repository rule. oneOf: - - *319 - *320 - *321 - *322 @@ -51453,6 +51510,7 @@ paths: - *337 - *338 - *339 + - *340 required: - name - enforcement @@ -51490,9 +51548,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &341 + default: &342 value: id: 21 name: super cool ruleset @@ -51548,7 +51606,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *79 - - &654 + - &655 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 @@ -51563,7 +51621,7 @@ paths: in: query schema: type: string - - &655 + - &656 name: time_period description: |- The time period to filter by. @@ -51579,14 +51637,14 @@ paths: - week - month default: day - - &656 + - &657 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 - - &657 + - &658 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -51599,7 +51657,7 @@ paths: - bypass - all default: all - - &658 + - &659 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. @@ -51622,7 +51680,7 @@ paths: description: Response content: application/json: - schema: &659 + schema: &660 title: Rule Suites description: Response type: array @@ -51677,7 +51735,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &660 + default: &661 value: - id: 21 actor_id: 12 @@ -51721,7 +51779,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *79 - - &661 + - &662 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -51737,7 +51795,7 @@ paths: description: Response content: application/json: - schema: &662 + schema: &663 title: Rule Suite description: Response type: object @@ -51836,7 +51894,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &663 + default: &664 value: id: 21 actor_id: 12 @@ -51909,9 +51967,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '404': *6 '500': *56 put: @@ -51955,16 +52013,16 @@ paths: - tag - push - repository - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *318 + items: *318 + conditions: *319 rules: description: An array of rules within the ruleset. type: array - items: *342 + items: *343 examples: default: value: @@ -51999,9 +52057,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *341 + default: *342 '404': *6 '422': *15 '500': *56 @@ -52059,7 +52117,7 @@ paths: application/json: schema: type: array - items: &343 + items: &344 title: Ruleset version type: object description: The historical version of a ruleset @@ -52083,7 +52141,7 @@ paths: type: string format: date-time examples: - default: &665 + default: &666 value: - version_id: 3 actor: @@ -52136,9 +52194,9 @@ paths: description: Response content: application/json: - schema: &666 + schema: &667 allOf: - - *343 + - *344 - type: object required: - state @@ -52208,7 +52266,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *79 - - &667 + - &668 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -52219,7 +52277,7 @@ paths: enum: - open - resolved - - &668 + - &669 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -52229,7 +52287,7 @@ paths: required: false schema: type: string - - &669 + - &670 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -52240,7 +52298,7 @@ paths: required: false schema: type: string - - &670 + - &671 name: exclude_providers in: query description: |- @@ -52251,7 +52309,7 @@ paths: required: false schema: type: string - - &671 + - &672 name: providers in: query description: |- @@ -52262,7 +52320,7 @@ paths: required: false schema: type: string - - &672 + - &673 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -52271,7 +52329,7 @@ paths: required: false schema: type: string - - &673 + - &674 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -52290,7 +52348,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &674 + - &675 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. @@ -52305,7 +52363,7 @@ paths: - *63 - *19 - *17 - - &675 + - &676 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 @@ -52315,7 +52373,7 @@ paths: required: false schema: type: string - - &676 + - &677 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 @@ -52325,7 +52383,7 @@ paths: required: false schema: type: string - - &677 + - &678 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -52334,7 +52392,7 @@ paths: required: false schema: type: string - - &678 + - &679 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -52343,7 +52401,7 @@ paths: schema: type: boolean default: false - - &679 + - &680 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -52352,7 +52410,7 @@ paths: schema: type: boolean default: false - - &680 + - &681 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -52361,7 +52419,7 @@ paths: schema: type: boolean default: false - - &681 + - &682 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -52372,7 +52430,7 @@ paths: required: false schema: type: boolean - - &682 + - &683 name: included_metadata in: query description: |- @@ -52383,7 +52441,7 @@ paths: required: false schema: type: string - - &683 + - &684 name: owner_email_hash in: query description: |- @@ -52421,14 +52479,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &684 + state: &685 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: &685 + resolution: &686 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -52545,8 +52603,8 @@ paths: pull request. ' - oneOf: &686 - - &688 + oneOf: &687 + - &689 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -52604,7 +52662,7 @@ paths: - blob_url - commit_sha - commit_url - - &689 + - &690 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. @@ -52659,7 +52717,7 @@ paths: - page_url - commit_sha - commit_url - - &690 + - &691 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -52679,7 +52737,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &691 + - &692 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -52699,7 +52757,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &692 + - &693 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -52719,7 +52777,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &693 + - &694 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -52733,7 +52791,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &694 + - &695 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -52747,7 +52805,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &695 + - &696 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -52761,7 +52819,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &696 + - &697 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. @@ -52781,7 +52839,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &697 + - &698 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. @@ -52801,7 +52859,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &698 + - &699 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. @@ -52821,7 +52879,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &699 + - &700 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. @@ -52841,7 +52899,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &700 + - &701 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -53093,7 +53151,7 @@ paths: subcategory: custom-patterns parameters: - *79 - - &701 + - &702 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -53104,7 +53162,7 @@ paths: enum: - published - unpublished - - &702 + - &703 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -53115,7 +53173,7 @@ paths: enum: - enabled - disabled - - &703 + - &704 name: sort description: The property to sort the results by. in: query @@ -53137,7 +53195,7 @@ paths: application/json: schema: type: array - items: &344 + items: &345 title: Secret Scanning Custom Pattern description: A custom pattern for secret scanning. type: object @@ -53185,7 +53243,7 @@ paths: nullable: true items: type: string - custom_pattern_version: &345 + custom_pattern_version: &346 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -53209,7 +53267,7 @@ paths: - state - push_protection_enabled examples: - default: &704 + default: &705 value: - id: 1 name: Example Custom Pattern @@ -53272,7 +53330,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &705 + items: &706 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -53309,7 +53367,7 @@ paths: items: type: string examples: - default: &706 + default: &707 value: patterns: - name: Example Custom Pattern @@ -53333,9 +53391,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *344 + items: *345 examples: - default: &707 + default: &708 value: created_patterns: - id: 1 @@ -53387,7 +53445,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &708 + items: &709 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -53441,7 +53499,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &709 + items: &710 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -53451,7 +53509,7 @@ paths: pattern_id: type: integer description: The ID of the custom pattern to delete. - custom_pattern_version: *345 + custom_pattern_version: *346 post_delete_action: type: string description: |- @@ -53464,7 +53522,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &710 + default: &711 value: patterns: - pattern_id: 2 @@ -53475,7 +53533,7 @@ paths: '400': *14 '403': *29 '404': *6 - '412': &346 + '412': &347 description: Precondition Failed content: application/json: @@ -53510,7 +53568,7 @@ paths: required: true content: application/json: - schema: &711 + schema: &712 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -53549,9 +53607,9 @@ paths: description: Updated list of regexes that the secret must not match. items: type: string - custom_pattern_version: *345 + custom_pattern_version: *346 examples: - default: &712 + default: &713 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -53566,9 +53624,9 @@ paths: description: Pattern updated successfully. content: application/json: - schema: *344 + schema: *345 examples: - default: &713 + default: &714 value: id: 1 name: Example Custom Pattern @@ -53588,7 +53646,7 @@ paths: '400': *14 '403': *29 '404': *6 - '412': *346 + '412': *347 '422': *15 "/orgs/{org}/secret-scanning/pattern-configurations": get: @@ -53621,11 +53679,11 @@ paths: related to push protection. type: object properties: - pattern_config_version: *345 + pattern_config_version: *346 provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &347 + items: &348 type: object properties: token_type: @@ -53691,7 +53749,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *347 + items: *348 examples: default: value: @@ -53748,7 +53806,7 @@ paths: schema: type: object properties: - pattern_config_version: *345 + pattern_config_version: *346 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -53774,7 +53832,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *345 + custom_pattern_version: *346 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -53872,7 +53930,7 @@ paths: application/json: schema: type: array - items: &717 + items: &718 description: A repository security advisory. type: object properties: @@ -54074,7 +54132,7 @@ paths: login: type: string description: The username of the user credited. - type: *348 + type: *349 credits_detailed: type: array nullable: true @@ -54084,7 +54142,7 @@ paths: type: object properties: user: *4 - type: *348 + type: *349 state: type: string description: The state of the user's acceptance of the @@ -54144,7 +54202,7 @@ paths: - private_fork additionalProperties: false examples: - default: &718 + default: &719 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -54531,7 +54589,7 @@ paths: application/json: schema: type: array - items: *349 + items: *350 examples: default: value: @@ -54884,7 +54942,7 @@ paths: type: integer network_configurations: type: array - items: &350 + items: &351 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -55030,9 +55088,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *351 examples: - default: &351 + default: &352 value: id: 123456789ABCDEF name: My network configuration @@ -55061,7 +55119,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *79 - - &352 + - &353 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -55073,9 +55131,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *351 examples: - default: *351 + default: *352 headers: Link: *71 x-github: @@ -55097,7 +55155,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *79 - - *352 + - *353 requestBody: required: true content: @@ -55150,9 +55208,9 @@ paths: description: Response content: application/json: - schema: *350 + schema: *351 examples: - default: *351 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55172,7 +55230,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *79 - - *352 + - *353 responses: '204': description: Response @@ -55291,7 +55349,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 headers: Link: *71 '403': *29 @@ -55381,7 +55439,7 @@ paths: description: Response content: application/json: - schema: &353 + schema: &354 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -55444,8 +55502,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *273 - required: *274 + properties: *274 + required: *275 nullable: true members_count: type: integer @@ -55708,7 +55766,7 @@ paths: - repos_count - organization examples: - default: &354 + default: &355 value: id: 1 node_id: MDQ6VGVhbTE= @@ -55785,9 +55843,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 x-github: githubCloudOnly: false @@ -55876,16 +55934,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '201': description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 '422': *15 '403': *29 @@ -55915,7 +55973,7 @@ paths: responses: '204': description: Response - '422': &355 + '422': &356 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -55949,12 +56007,12 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: - default: *253 + default: *254 headers: Link: *71 - '422': *355 + '422': *356 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55998,7 +56056,7 @@ paths: application/json: schema: type: array - items: &734 + items: &735 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -56117,7 +56175,7 @@ paths: - type - url examples: - default: &735 + default: &736 value: - login: octocat id: 1 @@ -56176,7 +56234,7 @@ paths: description: Response content: application/json: - schema: &356 + schema: &357 title: Team Membership description: Team Membership type: object @@ -56203,7 +56261,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &736 + response-if-user-is-a-team-maintainer: &737 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -56266,9 +56324,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - response-if-users-membership-with-team-is-now-pending: &737 + response-if-users-membership-with-team-is-now-pending: &738 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -56346,7 +56404,7 @@ paths: type: array items: *164 examples: - default: *289 + default: *290 headers: Link: *71 x-github: @@ -56377,14 +56435,14 @@ paths: parameters: - *79 - *81 - - *357 - *358 + - *359 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &738 + schema: &739 title: Team Repository description: A team's access to a repository. type: object @@ -56948,8 +57006,8 @@ paths: parameters: - *79 - *81 - - *357 - *358 + - *359 requestBody: required: false content: @@ -56996,8 +57054,8 @@ paths: parameters: - *79 - *81 - - *357 - *358 + - *359 responses: '204': description: Response @@ -57034,7 +57092,7 @@ paths: type: array items: *211 examples: - response-if-child-teams-exist: &739 + response-if-child-teams-exist: &740 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -57187,7 +57245,7 @@ paths: resources: type: object properties: - core: &359 + core: &360 title: Rate Limit type: object properties: @@ -57204,17 +57262,17 @@ paths: - remaining - reset - used - graphql: *359 - search: *359 - code_search: *359 - source_import: *359 - integration_manifest: *359 - actions_runner_registration: *359 - scim: *359 - dependency_snapshots: *359 - dependency_sbom: *359 - code_scanning_autofix: *359 - copilot_usage_records: *359 + graphql: *360 + search: *360 + code_search: *360 + source_import: *360 + integration_manifest: *360 + actions_runner_registration: *360 + scim: *360 + dependency_snapshots: *360 + dependency_sbom: *360 + code_scanning_autofix: *360 + copilot_usage_records: *360 required: - core - search @@ -57311,14 +57369,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *360 + schema: *361 examples: default-response: summary: Default response @@ -57822,7 +57880,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *361 + '301': *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57840,8 +57898,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -58151,10 +58209,10 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 - '307': &363 + default: *363 + '307': &364 description: Temporary Redirect content: application/json: @@ -58183,8 +58241,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -58206,7 +58264,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *363 + '307': *364 '404': *6 '409': *55 x-github: @@ -58230,11 +58288,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 - - &395 + - &396 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -58257,7 +58315,7 @@ paths: type: integer artifacts: type: array - items: &364 + items: &365 title: Artifact description: An artifact type: object @@ -58335,7 +58393,7 @@ paths: - expires_at - updated_at examples: - default: &396 + default: &397 value: total_count: 2 artifacts: @@ -58396,9 +58454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *357 - *358 - - &365 + - *359 + - &366 name: artifact_id description: The unique identifier of the artifact. in: path @@ -58410,7 +58468,7 @@ paths: description: Response content: application/json: - schema: *364 + schema: *365 examples: default: value: @@ -58448,9 +58506,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *357 - *358 - - *365 + - *359 + - *366 responses: '204': description: Response @@ -58474,9 +58532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *357 - *358 - - *365 + - *359 + - *366 - name: archive_format in: path required: true @@ -58486,7 +58544,7 @@ paths: '302': description: Response headers: - Location: &520 + Location: &521 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 @@ -58511,14 +58569,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &366 + schema: &367 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -58551,13 +58609,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *366 + schema: *367 examples: selected_actions: *43 responses: @@ -58586,14 +58644,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &367 + schema: &368 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -58626,13 +58684,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *367 + schema: *368 examples: selected_actions: *45 responses: @@ -58663,14 +58721,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *368 + schema: *369 examples: default: value: @@ -58696,11 +58754,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 - - &369 + - &370 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 @@ -58734,7 +58792,7 @@ paths: description: Response content: application/json: - schema: &370 + schema: &371 title: Repository actions caches description: Repository actions caches type: object @@ -58776,7 +58834,7 @@ paths: - total_count - actions_caches examples: - default: &371 + default: &372 value: total_count: 1 actions_caches: @@ -58808,23 +58866,23 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *357 - *358 + - *359 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *369 + - *370 responses: '200': description: Response content: application/json: - schema: *370 + schema: *371 examples: - default: *371 + default: *372 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58844,8 +58902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *357 - *358 + - *359 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -58874,8 +58932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *49 responses: @@ -58957,8 +59015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *357 - *358 + - *359 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -59110,9 +59168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *357 - *358 - - &372 + - *359 + - &373 name: job_id description: The unique identifier of the job. in: path @@ -59124,7 +59182,7 @@ paths: description: Response content: application/json: - schema: &399 + schema: &400 title: Job description: Information of a job execution in a workflow run type: object @@ -59431,9 +59489,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *357 - *358 - - *372 + - *359 + - *373 responses: '302': description: Response @@ -59461,9 +59519,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *357 - *358 - - *372 + - *359 + - *373 requestBody: required: false content: @@ -59513,8 +59571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Status response @@ -59573,8 +59631,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -59642,8 +59700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -59661,7 +59719,7 @@ paths: type: integer secrets: type: array - items: &401 + items: &402 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -59681,7 +59739,7 @@ paths: - created_at - updated_at examples: - default: &402 + default: &403 value: total_count: 2 secrets: @@ -59714,8 +59772,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -59733,7 +59791,7 @@ paths: type: integer variables: type: array - items: &403 + items: &404 title: Actions Variable type: object properties: @@ -59763,7 +59821,7 @@ paths: - created_at - updated_at examples: - default: &404 + default: &405 value: total_count: 2 variables: @@ -59796,8 +59854,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -59806,11 +59864,11 @@ paths: schema: type: object properties: - enabled: &374 + enabled: &375 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *149 - selected_actions_url: *373 + selected_actions_url: *374 sha_pinning_required: *150 required: - enabled @@ -59839,8 +59897,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -59851,7 +59909,7 @@ paths: schema: type: object properties: - enabled: *374 + enabled: *375 allowed_actions: *149 sha_pinning_required: *150 required: @@ -59883,14 +59941,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &375 + schema: &376 type: object properties: access_level: @@ -59907,7 +59965,7 @@ paths: required: - access_level examples: - default: &376 + default: &377 value: access_level: organization x-github: @@ -59931,15 +59989,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *375 + schema: *376 examples: - default: *376 + default: *377 responses: '204': description: Response @@ -59963,14 +60021,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *377 + schema: *378 examples: default: value: @@ -59994,8 +60052,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Empty response for successful settings update @@ -60005,7 +60063,7 @@ paths: required: true content: application/json: - schema: *378 + schema: *379 examples: default: summary: Set retention days @@ -60029,8 +60087,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -60038,7 +60096,7 @@ paths: application/json: schema: *151 examples: - default: *379 + default: *380 '404': *6 x-github: enabledForGitHubApps: true @@ -60057,8 +60115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -60092,14 +60150,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *380 + schema: *381 examples: default: *152 '403': *29 @@ -60121,13 +60179,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *381 + schema: *382 examples: default: *152 responses: @@ -60153,8 +60211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -60181,8 +60239,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -60214,14 +60272,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *382 + schema: *383 examples: default: *159 x-github: @@ -60244,8 +60302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Success response @@ -60256,7 +60314,7 @@ paths: required: true content: application/json: - schema: *383 + schema: *384 examples: default: *159 x-github: @@ -60285,8 +60343,8 @@ paths: in: query schema: type: string - - *357 - *358 + - *359 - *17 - *19 responses: @@ -60330,8 +60388,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -60339,9 +60397,9 @@ paths: application/json: schema: type: array - items: *384 + items: *385 examples: - default: *385 + default: *386 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60363,8 +60421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -60407,7 +60465,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *386 + '201': *387 '404': *6 '422': *7 '409': *55 @@ -60438,8 +60496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -60447,7 +60505,7 @@ paths: application/json: schema: *168 examples: - default: *387 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60475,8 +60533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -60484,7 +60542,7 @@ paths: application/json: schema: *168 examples: - default: *388 + default: *389 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60506,8 +60564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: '200': @@ -60516,7 +60574,7 @@ paths: application/json: schema: *166 examples: - default: *389 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -60537,8 +60595,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: '204': @@ -60565,8 +60623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: '200': *170 @@ -60591,8 +60649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 requestBody: required: true @@ -60641,8 +60699,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 requestBody: required: true @@ -60692,11 +60750,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 responses: - '200': *390 + '200': *391 '404': *6 x-github: githubCloudOnly: false @@ -60723,10 +60781,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *357 - *358 + - *359 - *165 - - *391 + - *392 responses: '200': *170 '404': *6 @@ -60754,9 +60812,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *357 - *358 - - &407 + - *359 + - &408 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. @@ -60764,7 +60822,7 @@ paths: required: false schema: type: string - - &408 + - &409 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -60772,7 +60830,7 @@ paths: required: false schema: type: string - - &409 + - &410 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -60781,7 +60839,7 @@ paths: required: false schema: type: string - - &410 + - &411 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 @@ -60808,7 +60866,7 @@ paths: - pending - *17 - *19 - - &411 + - &412 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)." @@ -60817,7 +60875,7 @@ paths: schema: type: string format: date-time - - &392 + - &393 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -60826,13 +60884,13 @@ paths: schema: type: boolean default: false - - &412 + - &413 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &413 + - &414 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -60855,7 +60913,7 @@ paths: type: integer workflow_runs: type: array - items: &393 + items: &394 title: Workflow Run description: An invocation of a workflow type: object @@ -61003,7 +61061,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &437 + properties: &438 id: type: string description: SHA for the commit @@ -61054,7 +61112,7 @@ paths: - name - email nullable: true - required: &438 + required: &439 - id - tree_id - message @@ -61101,7 +61159,7 @@ paths: - workflow_url - pull_requests examples: - default: &414 + default: &415 value: total_count: 1 workflow_runs: @@ -61337,24 +61395,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *357 - *358 - - &394 + - *359 + - &395 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *392 + - *393 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: &397 + default: &398 value: id: 30433642 name: Build @@ -61595,9 +61653,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '204': description: Response @@ -61620,9 +61678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '200': description: Response @@ -61741,9 +61799,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '201': description: Response @@ -61776,12 +61834,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *357 - *358 - - *394 + - *359 + - *395 - *17 - *19 - - *395 + - *396 - *63 responses: '200': @@ -61798,9 +61856,9 @@ paths: type: integer artifacts: type: array - items: *364 + items: *365 examples: - default: *396 + default: *397 headers: Link: *71 x-github: @@ -61824,25 +61882,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *357 - *358 - - *394 - - &398 + - *359 + - *395 + - &399 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *392 + - *393 responses: '200': description: Response content: application/json: - schema: *393 + schema: *394 examples: - default: *397 + default: *398 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61865,10 +61923,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *357 - *358 - - *394 - - *398 + - *359 + - *395 + - *399 - *17 - *19 responses: @@ -61886,9 +61944,9 @@ paths: type: integer jobs: type: array - items: *399 + items: *400 examples: - default: &400 + default: &401 value: total_count: 1 jobs: @@ -62001,10 +62059,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *357 - *358 - - *394 - - *398 + - *359 + - *395 + - *399 responses: '302': description: Response @@ -62032,9 +62090,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '202': description: Response @@ -62080,9 +62138,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 - *17 - *48 - *49 @@ -62253,9 +62311,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: true content: @@ -62322,9 +62380,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '202': description: Response @@ -62357,9 +62415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 - 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 @@ -62389,9 +62447,9 @@ paths: type: integer jobs: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *71 x-github: @@ -62416,9 +62474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '302': description: Response @@ -62445,9 +62503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '204': description: Response @@ -62474,9 +62532,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '200': description: Response @@ -62536,7 +62594,7 @@ paths: items: type: object properties: - type: &527 + type: &528 type: string description: The type of reviewer. enum: @@ -62621,9 +62679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: true content: @@ -62670,12 +62728,12 @@ paths: application/json: schema: type: array - items: &522 + items: &523 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &810 + properties: &811 url: type: string format: uri @@ -62760,7 +62818,7 @@ paths: nullable: true properties: *84 required: *85 - required: &811 + required: &812 - id - node_id - sha @@ -62776,7 +62834,7 @@ paths: - created_at - updated_at examples: - default: &523 + default: &524 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -62832,9 +62890,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: false content: @@ -62878,9 +62936,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *357 - *358 - - *394 + - *359 + - *395 requestBody: required: false content: @@ -62933,9 +62991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *357 - *358 - - *394 + - *359 + - *395 responses: '200': description: Response @@ -63072,8 +63130,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -63091,9 +63149,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -63118,8 +63176,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -63149,17 +63207,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &415 + default: &416 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -63185,8 +63243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -63244,8 +63302,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -63271,8 +63329,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -63290,9 +63348,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -63315,8 +63373,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -63368,17 +63426,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: &416 + default: &417 value: name: USERNAME value: octocat @@ -63404,8 +63462,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 requestBody: required: true @@ -63448,8 +63506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '204': @@ -63475,8 +63533,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -63494,7 +63552,7 @@ paths: type: integer workflows: type: array - items: &405 + items: &406 title: Workflow description: A GitHub Actions workflow type: object @@ -63601,9 +63659,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *357 - *358 - - &406 + - *359 + - &407 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -63618,7 +63676,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: default: value: @@ -63651,9 +63709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '204': description: Response @@ -63678,9 +63736,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '200': description: Response including the workflow run ID and URLs. @@ -63760,9 +63818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '204': description: Response @@ -63789,19 +63847,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *357 - *358 - - *406 + - *359 - *407 - *408 - *409 - *410 + - *411 - *17 - *19 - - *411 - - *392 - *412 + - *393 - *413 + - *414 responses: '200': description: Response @@ -63817,9 +63875,9 @@ paths: type: integer workflow_runs: type: array - items: *393 + items: *394 examples: - default: *414 + default: *415 headers: Link: *71 x-github: @@ -63851,9 +63909,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *357 - *358 - - *406 + - *359 + - *407 responses: '200': description: Response @@ -63914,8 +63972,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *357 - *358 + - *359 - *63 - *17 - *48 @@ -64084,8 +64142,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -64103,9 +64161,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -64129,8 +64187,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -64148,9 +64206,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -64175,8 +64233,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -64194,9 +64252,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -64221,8 +64279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -64252,17 +64310,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *415 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64284,8 +64342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -64343,8 +64401,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -64370,8 +64428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *357 - *358 + - *359 - *181 - *19 responses: @@ -64389,9 +64447,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -64414,8 +64472,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -64467,17 +64525,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *416 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64498,8 +64556,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 requestBody: required: true @@ -64542,8 +64600,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *357 - *358 + - *359 - *175 responses: '204': @@ -64565,8 +64623,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -64603,8 +64661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *357 - *358 + - *359 - name: assignee in: path required: true @@ -64640,8 +64698,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -64751,8 +64809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *357 - *358 + - *359 - *17 - *48 - *49 @@ -64793,7 +64851,7 @@ paths: initiator: type: string examples: - default: *417 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64813,8 +64871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -64822,7 +64880,7 @@ paths: application/json: schema: type: array - items: &418 + items: &419 title: Autolink reference description: An autolink reference. type: object @@ -64876,8 +64934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -64916,9 +64974,9 @@ paths: description: response content: application/json: - schema: *418 + schema: *419 examples: - default: &419 + default: &420 value: id: 1 key_prefix: TICKET- @@ -64949,9 +65007,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *357 - *358 - - &420 + - *359 + - &421 name: autolink_id description: The unique identifier of the autolink. in: path @@ -64963,9 +65021,9 @@ paths: description: Response content: application/json: - schema: *418 + schema: *419 examples: - default: *419 + default: *420 '404': *6 x-github: githubCloudOnly: false @@ -64985,9 +65043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *357 - *358 - - *420 + - *359 + - *421 responses: '204': description: Response @@ -65011,8 +65069,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response if Dependabot is enabled @@ -65060,8 +65118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -65082,8 +65140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -65103,8 +65161,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *357 - *358 + - *359 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -65142,7 +65200,7 @@ paths: - url protected: type: boolean - protection: &422 + protection: &423 title: Branch Protection description: Branch Protection type: object @@ -65184,7 +65242,7 @@ paths: required: - contexts - checks - enforce_admins: &425 + enforce_admins: &426 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -65199,7 +65257,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &427 + required_pull_request_reviews: &428 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -65275,7 +65333,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &424 + restrictions: &425 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -65552,9 +65610,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *357 - *358 - - &423 + - *359 + - &424 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). @@ -65568,14 +65626,14 @@ paths: description: Response content: application/json: - schema: &433 + schema: &434 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &493 + commit: &494 title: Commit description: Commit type: object @@ -65609,7 +65667,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &421 + properties: &422 name: type: string example: '"Chris Wanstrath"' @@ -65625,7 +65683,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *422 nullable: true message: type: string @@ -65646,7 +65704,7 @@ paths: required: - sha - url - verification: &545 + verification: &546 title: Verification type: object properties: @@ -65716,7 +65774,7 @@ paths: type: integer files: type: array - items: &505 + items: &506 title: Diff Entry description: Diff Entry type: object @@ -65800,7 +65858,7 @@ paths: - self protected: type: boolean - protection: *422 + protection: *423 protection_url: type: string format: uri @@ -65907,7 +65965,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *361 + '301': *362 '404': *6 x-github: githubCloudOnly: false @@ -65929,15 +65987,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *422 + schema: *423 examples: default: value: @@ -66131,9 +66189,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -66388,7 +66446,7 @@ paths: url: type: string format: uri - required_status_checks: &430 + required_status_checks: &431 title: Status Check Policy description: Status Check Policy type: object @@ -66540,7 +66598,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *424 + restrictions: *425 required_conversation_resolution: type: object properties: @@ -66652,9 +66710,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -66679,17 +66737,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: &426 + default: &427 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -66711,17 +66769,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: *426 + default: *427 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66740,9 +66798,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -66767,17 +66825,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: &428 + default: &429 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -66873,9 +66931,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -66973,9 +67031,9 @@ paths: description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: *428 + default: *429 '422': *15 x-github: githubCloudOnly: false @@ -66996,9 +67054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67025,17 +67083,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: &429 + default: &430 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -67058,17 +67116,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: - default: *429 + default: *430 '404': *6 x-github: githubCloudOnly: false @@ -67088,9 +67146,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67115,17 +67173,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *430 + schema: *431 examples: - default: &431 + default: &432 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -67151,9 +67209,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67205,9 +67263,9 @@ paths: description: Response content: application/json: - schema: *430 + schema: *431 examples: - default: *431 + default: *432 '404': *6 '422': *15 x-github: @@ -67229,9 +67287,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67255,9 +67313,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -67291,9 +67349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67360,9 +67418,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67426,9 +67484,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: content: application/json: @@ -67494,15 +67552,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -67593,9 +67651,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '204': description: Response @@ -67618,9 +67676,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -67630,7 +67688,7 @@ paths: type: array items: *5 examples: - default: &432 + default: &433 value: - id: 1 slug: octoapp @@ -67687,9 +67745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -67723,7 +67781,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *433 '422': *15 x-github: githubCloudOnly: false @@ -67744,9 +67802,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -67780,7 +67838,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *433 '422': *15 x-github: githubCloudOnly: false @@ -67801,9 +67859,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -67837,7 +67895,7 @@ paths: type: array items: *5 examples: - default: *432 + default: *433 '422': *15 x-github: githubCloudOnly: false @@ -67859,9 +67917,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -67871,7 +67929,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '404': *6 x-github: githubCloudOnly: false @@ -67891,9 +67949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67931,7 +67989,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '422': *15 x-github: githubCloudOnly: false @@ -67952,9 +68010,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: false content: @@ -67992,7 +68050,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '422': *15 x-github: githubCloudOnly: false @@ -68013,9 +68071,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: content: application/json: @@ -68052,7 +68110,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 '422': *15 x-github: githubCloudOnly: false @@ -68074,9 +68132,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 responses: '200': description: Response @@ -68110,9 +68168,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68170,9 +68228,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68230,9 +68288,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68292,9 +68350,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 requestBody: required: true content: @@ -68316,7 +68374,7 @@ paths: description: Response content: application/json: - schema: *433 + schema: *434 examples: default: value: @@ -68432,8 +68490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -68712,7 +68770,7 @@ paths: description: Response content: application/json: - schema: &434 + schema: &435 title: CheckRun description: A check performed on the code of a given code change type: object @@ -68832,7 +68890,7 @@ paths: check. type: array items: *94 - deployment: &803 + deployment: &804 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -69112,9 +69170,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *357 - *358 - - &435 + - *359 + - &436 name: check_run_id description: The unique identifier of the check run. in: path @@ -69126,9 +69184,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *435 examples: - default: &436 + default: &437 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -69228,9 +69286,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *357 - *358 - - *435 + - *359 + - *436 requestBody: required: true content: @@ -69470,9 +69528,9 @@ paths: description: Response content: application/json: - schema: *434 + schema: *435 examples: - default: *436 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -69492,9 +69550,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *357 - *358 - - *435 + - *359 + - *436 - *17 - *19 responses: @@ -69589,9 +69647,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *357 - *358 - - *435 + - *359 + - *436 responses: '201': description: Response @@ -69635,8 +69693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -69658,7 +69716,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &439 + schema: &440 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -69744,12 +69802,12 @@ paths: type: string format: date-time nullable: true - head_commit: &831 + head_commit: &832 title: Simple Commit description: A commit. type: object - properties: *437 - required: *438 + properties: *438 + required: *439 latest_check_runs_count: type: integer check_runs_url: @@ -69777,7 +69835,7 @@ paths: - check_runs_url - pull_requests examples: - default: &440 + default: &441 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -70068,9 +70126,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *439 + schema: *440 examples: - default: *440 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70089,8 +70147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -70399,9 +70457,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *357 - *358 - - &441 + - *359 + - &442 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -70413,9 +70471,9 @@ paths: description: Response content: application/json: - schema: *439 + schema: *440 examples: - default: *440 + default: *441 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70438,17 +70496,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *357 - *358 - - *441 - - &498 + - *359 + - *442 + - &499 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &499 + - &500 name: status description: Returns check runs with the specified `status`. in: query @@ -70487,9 +70545,9 @@ paths: type: integer check_runs: type: array - items: *434 + items: *435 examples: - default: &500 + default: &501 value: total_count: 1 check_runs: @@ -70591,9 +70649,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *357 - *358 - - *441 + - *359 + - *442 responses: '201': description: Response @@ -70622,8 +70680,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *63 - *48 @@ -70645,7 +70703,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 description: Code quality finding type: object properties: @@ -70775,7 +70833,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &443 + '403': &444 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -70802,8 +70860,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *357 - *358 + - *359 - name: finding_number in: path description: The number that identifies a finding. @@ -70815,7 +70873,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: default: value: @@ -70844,7 +70902,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *443 + '403': *444 '404': *6 '503': *123 x-github: @@ -70866,8 +70924,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -70939,7 +70997,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *443 + '403': *444 '404': *6 '503': *123 x-github: @@ -70960,8 +71018,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -71097,21 +71155,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *357 - *358 - - *444 + - *359 - *445 + - *446 - *19 - *17 - - &463 + - &464 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: *446 - - &464 + schema: *447 + - &465 name: pr description: The number of the pull request for the results you want to list. in: query @@ -71136,13 +71194,13 @@ paths: be returned. in: query required: false - schema: *447 + schema: *448 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *448 + schema: *449 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -71166,7 +71224,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: *449 + instances_url: *450 state: *198 fixed_at: *194 dismissed_by: @@ -71177,11 +71235,11 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: *450 - dismissed_comment: *451 - rule: *452 - tool: *453 - most_recent_instance: *454 + dismissed_reason: *451 + dismissed_comment: *452 + rule: *453 + tool: *454 + most_recent_instance: *455 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -71307,7 +71365,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *38 - '403': &456 + '403': &457 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -71334,9 +71392,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *357 - *358 - - &457 + - *359 + - &458 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -71350,7 +71408,7 @@ paths: description: Response content: application/json: - schema: &458 + schema: &459 type: object properties: number: *189 @@ -71358,7 +71416,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: *449 + instances_url: *450 state: *198 fixed_at: *194 dismissed_by: @@ -71369,8 +71427,8 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: *450 - dismissed_comment: *451 + dismissed_reason: *451 + dismissed_comment: *452 rule: type: object properties: @@ -71424,8 +71482,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *453 - most_recent_instance: *454 + tool: *454 + most_recent_instance: *455 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -71439,7 +71497,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *455 + items: *456 required: - number - created_at @@ -71528,7 +71586,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *38 - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -71548,9 +71606,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 requestBody: required: true content: @@ -71565,8 +71623,8 @@ paths: enum: - open - dismissed - dismissed_reason: *450 - dismissed_comment: *451 + dismissed_reason: *451 + dismissed_comment: *452 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -71594,7 +71652,7 @@ paths: description: Response content: application/json: - schema: *458 + schema: *459 examples: default: value: @@ -71670,7 +71728,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &462 + '403': &463 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -71697,15 +71755,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 responses: '200': description: Response content: application/json: - schema: &459 + schema: &460 type: object properties: status: @@ -71731,13 +71789,13 @@ paths: - description - started_at examples: - default: &460 + default: &461 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &461 + '400': &462 description: Bad Request content: application/json: @@ -71748,7 +71806,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': *456 + '403': *457 '404': *6 '500': *56 x-github: @@ -71773,29 +71831,29 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 responses: '200': description: OK content: application/json: - schema: *459 + schema: *460 examples: - default: *460 + default: *461 '202': description: Accepted content: application/json: - schema: *459 + schema: *460 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *461 + '400': *462 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -71827,9 +71885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 requestBody: required: false content: @@ -71874,8 +71932,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *461 - '403': *462 + '400': *462 + '403': *463 '404': *6 '422': description: Unprocessable Entity @@ -71899,13 +71957,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 - *19 - *17 - - *463 - *464 + - *465 responses: '200': description: Response @@ -71916,10 +71974,10 @@ paths: items: type: object properties: - ref: *446 - analysis_key: *465 - environment: *466 - category: *467 + ref: *447 + analysis_key: *466 + environment: *467 + category: *468 state: type: string description: State of a code scanning alert instance. @@ -71934,7 +71992,7 @@ paths: properties: text: type: string - location: *468 + location: *469 html_url: type: string classifications: @@ -71942,7 +72000,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: *469 + items: *470 examples: default: value: @@ -71979,7 +72037,7 @@ paths: end_column: 50 classifications: - source - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -72013,25 +72071,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *357 - *358 - - *444 + - *359 - *445 + - *446 - *19 - *17 - - *464 + - *465 - 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: *446 + schema: *447 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &470 + schema: &471 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -72052,23 +72110,23 @@ paths: application/json: schema: type: array - items: &471 + items: &472 type: object properties: - ref: *446 - commit_sha: &479 + ref: *447 + commit_sha: &480 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: *465 + analysis_key: *466 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *467 + category: *468 error: type: string example: error reading field xyz @@ -72092,8 +72150,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *470 - tool: *453 + sarif_id: *471 + tool: *454 deletable: type: boolean warning: @@ -72154,7 +72212,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -72190,8 +72248,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *357 - *358 + - *359 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72204,7 +72262,7 @@ paths: description: Response content: application/json: - schema: *471 + schema: *472 examples: response: summary: application/json response @@ -72258,7 +72316,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *456 + '403': *457 '404': *6 '422': description: Response if analysis could not be processed @@ -72345,8 +72403,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *357 - *358 + - *359 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -72399,7 +72457,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': *462 + '403': *463 '404': *6 '503': *123 x-github: @@ -72421,8 +72479,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -72430,7 +72488,7 @@ paths: application/json: schema: type: array - items: &472 + items: &473 title: CodeQL Database description: A CodeQL database. type: object @@ -72541,7 +72599,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': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -72570,8 +72628,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *357 - *358 + - *359 - name: language in: path description: The language of the CodeQL database. @@ -72583,7 +72641,7 @@ paths: description: Response content: application/json: - schema: *472 + schema: *473 examples: default: value: @@ -72615,9 +72673,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': &509 + '302': &510 description: Found - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -72639,8 +72697,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *357 - *358 + - *359 - name: language in: path description: The language of the CodeQL database. @@ -72650,7 +72708,7 @@ paths: responses: '204': description: Response - '403': *462 + '403': *463 '404': *6 '503': *123 x-github: @@ -72678,8 +72736,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -72688,7 +72746,7 @@ paths: type: object additionalProperties: false properties: - language: &473 + language: &474 type: string description: The language targeted by the CodeQL query enum: @@ -72768,7 +72826,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &477 + schema: &478 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -72778,7 +72836,7 @@ paths: description: The ID of the variant analysis. controller_repo: *68 actor: *4 - query_language: *473 + query_language: *474 query_pack_url: type: string description: The download url for the query pack. @@ -72825,7 +72883,7 @@ paths: items: type: object properties: - repository: &474 + repository: &475 title: Repository Identifier description: Repository Identifier type: object @@ -72861,7 +72919,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &478 + analysis_status: &479 type: string description: The new status of the CodeQL variant analysis repository task. @@ -72893,7 +72951,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &475 + access_mismatch_repos: &476 type: object properties: repository_count: @@ -72907,7 +72965,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: *474 + items: *475 required: - repository_count - repositories @@ -72929,8 +72987,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *475 - over_limit_repos: *475 + no_codeql_db_repos: *476 + over_limit_repos: *476 required: - access_mismatch_repos - not_found_repos @@ -72946,7 +73004,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &476 + value: &477 summary: Default response value: id: 1 @@ -73092,10 +73150,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *476 + value: *477 repository_lists: summary: Response for a successful variant analysis submission - value: *476 + value: *477 '404': *6 '422': description: Unable to process variant analysis submission @@ -73123,8 +73181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *357 - *358 + - *359 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -73136,9 +73194,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *478 examples: - default: *476 + default: *477 '404': *6 '503': *123 x-github: @@ -73161,7 +73219,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *357 + - *358 - name: repo in: path description: The name of the controller repository. @@ -73196,7 +73254,7 @@ paths: type: object properties: repository: *68 - analysis_status: *478 + analysis_status: *479 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -73321,8 +73379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -73405,7 +73463,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *456 + '403': *457 '404': *6 '503': *123 x-github: @@ -73426,8 +73484,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -73519,7 +73577,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *462 + '403': *463 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -73590,8 +73648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -73599,7 +73657,7 @@ paths: schema: type: object properties: - commit_sha: *479 + commit_sha: *480 ref: type: string description: |- @@ -73657,7 +73715,7 @@ paths: schema: type: object properties: - id: *470 + id: *471 url: type: string description: The REST API URL for checking the status of the upload. @@ -73671,7 +73729,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': *462 + '403': *463 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -73694,8 +73752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *357 - *358 + - *359 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -73741,7 +73799,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': *456 + '403': *457 '404': description: Not Found if the sarif id does not match any upload '503': *123 @@ -73766,8 +73824,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -73848,8 +73906,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *357 - *358 + - *359 - 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 @@ -73969,8 +74027,8 @@ paths: parameters: - *17 - *19 - - *357 - *358 + - *359 responses: '200': description: Response @@ -73986,7 +74044,7 @@ paths: type: integer codespaces: type: array - items: *263 + items: *264 examples: default: value: @@ -74284,8 +74342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -74348,17 +74406,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '400': *14 '401': *25 '403': *29 @@ -74387,8 +74445,8 @@ paths: parameters: - *17 - *19 - - *357 - *358 + - *359 responses: '200': description: Response @@ -74452,8 +74510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *357 - *358 + - *359 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -74488,14 +74546,14 @@ paths: type: integer machines: type: array - items: &744 + items: &745 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *481 - required: *482 + properties: *482 + required: *483 examples: - default: &745 + default: &746 value: total_count: 2 machines: @@ -74535,8 +74593,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *357 - *358 + - *359 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -74620,8 +74678,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *357 - *358 + - *359 - 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 @@ -74687,8 +74745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -74706,7 +74764,7 @@ paths: type: integer secrets: type: array - items: &486 + items: &487 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -74726,7 +74784,7 @@ paths: - created_at - updated_at examples: - default: *483 + default: *484 headers: Link: *71 x-github: @@ -74749,16 +74807,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *484 + schema: *485 examples: - default: *485 + default: *486 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -74778,17 +74836,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *487 + default: *488 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74808,8 +74866,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -74862,8 +74920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -74892,8 +74950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *357 - *358 + - *359 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -74935,7 +74993,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &488 + properties: &489 login: type: string example: octocat @@ -75028,7 +75086,7 @@ paths: user_view_type: type: string example: public - required: &489 + required: &490 - avatar_url - events_url - followers_url @@ -75102,8 +75160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *357 - *358 + - *359 - *75 responses: '204': @@ -75150,8 +75208,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *357 - *358 + - *359 - *75 requestBody: required: false @@ -75178,7 +75236,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &559 + schema: &560 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -75407,8 +75465,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *357 - *358 + - *359 - *75 responses: '204': @@ -75440,8 +75498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *357 - *358 + - *359 - *75 responses: '200': @@ -75462,8 +75520,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *488 - required: *489 + properties: *489 + required: *490 nullable: true required: - permission @@ -75518,8 +75576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -75529,7 +75587,7 @@ paths: application/json: schema: type: array - items: &490 + items: &491 title: Commit Comment description: Commit Comment type: object @@ -75587,7 +75645,7 @@ paths: - created_at - updated_at examples: - default: &495 + default: &496 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75646,17 +75704,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: &496 + default: &497 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -75713,8 +75771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -75737,7 +75795,7 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: default: value: @@ -75788,8 +75846,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -75811,8 +75869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -75839,7 +75897,7 @@ paths: application/json: schema: type: array - items: &491 + items: &492 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -75882,7 +75940,7 @@ paths: - content - created_at examples: - default: &563 + default: &564 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -75927,8 +75985,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -75961,9 +76019,9 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: &492 + default: &493 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -75992,9 +76050,9 @@ paths: description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -76016,10 +76074,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *357 - *358 + - *359 - *105 - - &564 + - &565 name: reaction_id description: The unique identifier of the reaction. in: path @@ -76074,8 +76132,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *357 - *358 + - *359 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -76131,9 +76189,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: &635 + default: &636 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -76227,9 +76285,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *357 - *358 - - &494 + - *359 + - &495 name: commit_sha description: The SHA of the commit. in: path @@ -76301,9 +76359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *357 - *358 - - *494 + - *359 + - *495 - *17 - *19 responses: @@ -76313,9 +76371,9 @@ paths: application/json: schema: type: array - items: *490 + items: *491 examples: - default: *495 + default: *496 headers: Link: *71 x-github: @@ -76343,9 +76401,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *357 - *358 - - *494 + - *359 + - *495 requestBody: required: true content: @@ -76380,9 +76438,9 @@ paths: description: Response content: application/json: - schema: *490 + schema: *491 examples: - default: *496 + default: *497 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76410,9 +76468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *357 - *358 - - *494 + - *359 + - *495 - *17 - *19 responses: @@ -76422,9 +76480,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: &626 + default: &627 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -76961,11 +77019,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *357 - *358 + - *359 - *19 - *17 - - &497 + - &498 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)" @@ -76980,9 +77038,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: &613 + default: &614 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -77070,7 +77128,7 @@ paths: schema: type: string examples: - default: &506 + default: &507 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -77083,7 +77141,7 @@ paths: schema: type: string examples: - default: &507 + default: &508 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -77136,11 +77194,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *357 - *358 - - *497 + - *359 - *498 - *499 + - *500 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -77174,9 +77232,9 @@ paths: type: integer check_runs: type: array - items: *434 + items: *435 examples: - default: *500 + default: *501 headers: Link: *71 x-github: @@ -77201,9 +77259,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *357 - *358 - - *497 + - *359 + - *498 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -77211,7 +77269,7 @@ paths: schema: type: integer example: 1 - - *498 + - *499 - *17 - *19 responses: @@ -77229,7 +77287,7 @@ paths: type: integer check_suites: type: array - items: *439 + items: *440 examples: default: value: @@ -77429,9 +77487,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *357 - *358 - - *497 + - *359 + - *498 - *17 - *19 responses: @@ -77629,9 +77687,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *357 - *358 - - *497 + - *359 + - *498 - *17 - *19 responses: @@ -77641,7 +77699,7 @@ paths: application/json: schema: type: array - items: &723 + items: &724 title: Status description: The status of a commit. type: object @@ -77722,7 +77780,7 @@ paths: site_admin: false headers: Link: *71 - '301': *361 + '301': *362 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77750,8 +77808,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -77780,20 +77838,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *501 - required: *502 + properties: *502 + required: *503 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &503 + properties: &504 url: type: string format: uri html_url: type: string format: uri - required: &504 + required: &505 - url - html_url nullable: true @@ -77807,26 +77865,26 @@ paths: contributing: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true readme: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true issue_template: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true pull_request_template: title: Community Health File type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true required: - code_of_conduct @@ -77953,8 +78011,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *357 - *358 + - *359 - *19 - *17 - name: basehead @@ -77997,8 +78055,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *493 - merge_base_commit: *493 + base_commit: *494 + merge_base_commit: *494 status: type: string enum: @@ -78018,10 +78076,10 @@ paths: example: 6 commits: type: array - items: *493 + items: *494 files: type: array - items: *505 + items: *506 required: - url - html_url @@ -78267,12 +78325,12 @@ paths: schema: type: string examples: - default: *506 + default: *507 application/vnd.github.patch: schema: type: string examples: - default: *507 + default: *508 '404': *6 '500': *56 '503': *123 @@ -78317,8 +78375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *357 - *358 + - *359 - name: path description: path parameter in: path @@ -78478,7 +78536,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &508 + response-if-content-is-a-file-github-object: &509 summary: Response if content is a file value: type: file @@ -78610,7 +78668,7 @@ paths: - size - type - url - - &641 + - &642 title: Content File description: Content File type: object @@ -78811,7 +78869,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *508 + response-if-content-is-a-file: *509 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -78880,7 +78938,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *509 + '302': *510 '304': *38 x-github: githubCloudOnly: false @@ -78903,8 +78961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *357 - *358 + - *359 - name: path description: path parameter in: path @@ -78997,7 +79055,7 @@ paths: description: Response content: application/json: - schema: &510 + schema: &511 title: File Commit description: File Commit type: object @@ -79149,7 +79207,7 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: example-for-creating-a-file: value: @@ -79203,7 +79261,7 @@ paths: schema: oneOf: - *3 - - &540 + - &541 description: Repository rule violation was detected type: object properties: @@ -79224,7 +79282,7 @@ paths: items: type: object properties: - placeholder_id: &714 + placeholder_id: &715 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -79256,8 +79314,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *357 - *358 + - *359 - name: path description: path parameter in: path @@ -79318,7 +79376,7 @@ paths: description: Response content: application/json: - schema: *510 + schema: *511 examples: default: value: @@ -79373,8 +79431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *357 - *358 + - *359 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -79503,8 +79561,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -79655,8 +79713,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *357 - *358 + - *359 - *213 - *214 - *215 @@ -79669,10 +79727,11 @@ paths: schema: type: string - *218 - - *511 + - *512 - *219 - *220 - *221 + - *222 - *63 - *48 - *49 @@ -79684,7 +79743,7 @@ paths: application/json: schema: type: array - items: &515 + items: &516 type: object description: A Dependabot alert. properties: @@ -79731,7 +79790,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *512 + security_advisory: *513 security_vulnerability: *67 url: *192 html_url: *193 @@ -79762,8 +79821,8 @@ paths: nullable: true maxLength: 280 fixed_at: *194 - auto_dismissed_at: *513 - dismissal_request: *514 + auto_dismissed_at: *514 + dismissal_request: *515 assignees: type: array description: The users assigned to this alert. @@ -79796,6 +79855,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -79917,6 +79977,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -80018,9 +80079,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *357 - *358 - - &516 + - *359 + - &517 name: alert_number in: path description: |- @@ -80035,7 +80096,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: default: value: @@ -80047,6 +80108,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -80167,9 +80229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *357 - *358 - - *516 + - *359 + - *517 requestBody: required: true content: @@ -80242,7 +80304,7 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: default: value: @@ -80254,6 +80316,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -80372,8 +80435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -80391,7 +80454,7 @@ paths: type: integer secrets: type: array - items: &519 + items: &520 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -80444,16 +80507,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *518 + default: *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80473,15 +80536,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '200': description: Response content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -80507,8 +80570,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 requestBody: required: true @@ -80561,8 +80624,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *357 - *358 + - *359 - *172 responses: '204': @@ -80585,8 +80648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *357 - *358 + - *359 - 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 @@ -80749,8 +80812,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -80988,8 +81051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - *358 + - *359 - name: sbom_uuid in: path required: true @@ -81000,7 +81063,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *520 + Location: *521 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -81021,8 +81084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -81060,8 +81123,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -81136,7 +81199,7 @@ paths: - version - url additionalProperties: false - metadata: &521 + metadata: &522 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -81169,7 +81232,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *521 + metadata: *522 resolved: type: object description: A collection of resolved package dependencies. @@ -81182,7 +81245,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *521 + metadata: *522 relationship: type: string description: A notation of whether a dependency is requested @@ -81311,8 +81374,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *357 - *358 + - *359 - name: sha description: The SHA recorded at creation time. in: query @@ -81352,9 +81415,9 @@ paths: application/json: schema: type: array - items: *522 + items: *523 examples: - default: *523 + default: *524 headers: Link: *71 x-github: @@ -81420,8 +81483,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -81502,7 +81565,7 @@ paths: description: Response content: application/json: - schema: *522 + schema: *523 examples: simple-example: summary: Simple example @@ -81575,9 +81638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *357 - *358 - - &524 + - *359 + - &525 name: deployment_id description: deployment_id parameter in: path @@ -81589,7 +81652,7 @@ paths: description: Response content: application/json: - schema: *522 + schema: *523 examples: default: value: @@ -81654,9 +81717,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *357 - *358 - - *524 + - *359 + - *525 responses: '204': description: Response @@ -81678,9 +81741,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *357 - *358 - - *524 + - *359 + - *525 - *17 - *19 responses: @@ -81690,7 +81753,7 @@ paths: application/json: schema: type: array - items: &525 + items: &526 title: Deployment Status description: The status of a deployment. type: object @@ -81851,9 +81914,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *357 - *358 - - *524 + - *359 + - *525 requestBody: required: true content: @@ -81928,9 +81991,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: &526 + default: &527 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -81986,9 +82049,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *357 - *358 - - *524 + - *359 + - *525 - name: status_id in: path required: true @@ -81999,9 +82062,9 @@ paths: description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 '404': *6 x-github: githubCloudOnly: false @@ -82026,8 +82089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -82084,8 +82147,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -82102,7 +82165,7 @@ paths: type: integer environments: type: array - items: &528 + items: &529 title: Environment description: Details of a deployment environment type: object @@ -82154,7 +82217,7 @@ paths: type: type: string example: wait_timer - wait_timer: &530 + wait_timer: &531 type: integer example: 30 description: The amount of time to delay a job after @@ -82191,7 +82254,7 @@ paths: items: type: object properties: - type: *527 + type: *528 reviewer: anyOf: - *4 @@ -82215,7 +82278,7 @@ paths: - id - node_id - type - deployment_branch_policy: &531 + deployment_branch_policy: &532 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -82331,9 +82394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *357 - *358 - - &529 + - *359 + - &530 name: environment_name in: path required: true @@ -82346,9 +82409,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: &532 + default: &533 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -82432,9 +82495,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *357 - *358 - - *529 + - *359 + - *530 requestBody: required: false content: @@ -82443,7 +82506,7 @@ paths: type: object nullable: true properties: - wait_timer: *530 + wait_timer: *531 prevent_self_review: type: boolean example: false @@ -82460,13 +82523,13 @@ paths: items: type: object properties: - type: *527 + type: *528 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *531 + deployment_branch_policy: *532 additionalProperties: false examples: default: @@ -82486,9 +82549,9 @@ paths: description: Response content: application/json: - schema: *528 + schema: *529 examples: - default: *532 + default: *533 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -82512,9 +82575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *357 - *358 - - *529 + - *359 + - *530 responses: '204': description: Default response @@ -82539,9 +82602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *17 - *19 responses: @@ -82559,7 +82622,7 @@ paths: example: 2 branch_policies: type: array - items: &533 + items: &534 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -82616,9 +82679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 + - *359 + - *530 requestBody: required: true content: @@ -82664,9 +82727,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - example-wildcard: &534 + example-wildcard: &535 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -82708,10 +82771,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 - - &535 + - *359 + - *530 + - &536 name: branch_policy_id in: path required: true @@ -82723,9 +82786,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82744,10 +82807,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 - - *535 + - *359 + - *530 + - *536 requestBody: required: true content: @@ -82775,9 +82838,9 @@ paths: description: Response content: application/json: - schema: *533 + schema: *534 examples: - default: *534 + default: *535 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82796,10 +82859,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *357 - *358 - - *529 - - *535 + - *359 + - *530 + - *536 responses: '204': description: Response @@ -82824,9 +82887,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *529 + - *530 + - *359 - *358 - - *357 responses: '200': description: List of deployment protection rules @@ -82842,7 +82905,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &536 + items: &537 title: Deployment protection rule description: Deployment protection rule type: object @@ -82861,7 +82924,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &537 + app: &538 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -82960,9 +83023,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: - - *529 + - *530 + - *359 - *358 - - *357 requestBody: content: application/json: @@ -82983,9 +83046,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *536 + schema: *537 examples: - default: &538 + default: &539 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -83020,9 +83083,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: - - *529 + - *530 + - *359 - *358 - - *357 - *19 - *17 responses: @@ -83041,7 +83104,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *537 + items: *538 examples: default: value: @@ -83076,10 +83139,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *357 - *358 - - *529 - - &539 + - *359 + - *530 + - &540 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -83091,9 +83154,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *537 examples: - default: *538 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83114,10 +83177,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *529 + - *530 + - *359 - *358 - - *357 - - *539 + - *540 responses: '204': description: Response @@ -83143,9 +83206,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *17 - *19 responses: @@ -83163,9 +83226,9 @@ paths: type: integer secrets: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -83190,9 +83253,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *357 - *358 - - *529 + - *359 + - *530 responses: '200': description: Response @@ -83222,18 +83285,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *172 responses: '200': description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *415 + default: *416 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83255,9 +83318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *172 requestBody: required: true @@ -83315,9 +83378,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *172 responses: '204': @@ -83343,9 +83406,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *181 - *19 responses: @@ -83363,9 +83426,9 @@ paths: type: integer variables: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -83388,9 +83451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *357 - *358 - - *529 + - *359 + - *530 requestBody: required: true content: @@ -83442,18 +83505,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *357 - *358 - - *529 + - *359 + - *530 - *175 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *416 + default: *417 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83474,10 +83537,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *357 - *358 + - *359 - *175 - - *529 + - *530 requestBody: required: true content: @@ -83519,10 +83582,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *357 - *358 + - *359 - *175 - - *529 + - *530 responses: '204': description: Response @@ -83544,8 +83607,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -83613,8 +83676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *357 - *358 + - *359 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -83773,8 +83836,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -83806,9 +83869,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 '400': *14 '422': *15 '403': *29 @@ -83829,8 +83892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -83890,7 +83953,7 @@ paths: schema: oneOf: - *133 - - *540 + - *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83915,8 +83978,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *357 - *358 + - *359 - name: file_sha in: path required: true @@ -84015,8 +84078,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -84125,7 +84188,7 @@ paths: description: Response content: application/json: - schema: &541 + schema: &542 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -84339,15 +84402,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *357 - *358 - - *494 + - *359 + - *495 responses: '200': description: Response content: application/json: - schema: *541 + schema: *542 examples: default: value: @@ -84403,9 +84466,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *357 - *358 - - &542 + - *359 + - &543 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. @@ -84422,7 +84485,7 @@ paths: application/json: schema: type: array - items: &543 + items: &544 title: Git Reference description: Git references within a repository type: object @@ -84497,17 +84560,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *357 - *358 - - *542 + - *359 + - *543 responses: '200': description: Response content: application/json: - schema: *543 + schema: *544 examples: - default: &544 + default: &545 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -84536,8 +84599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -84566,9 +84629,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *544 examples: - default: *544 + default: *545 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -84594,9 +84657,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *357 - *358 - - *542 + - *359 + - *543 requestBody: required: true content: @@ -84625,9 +84688,9 @@ paths: description: Response content: application/json: - schema: *543 + schema: *544 examples: - default: *544 + default: *545 '422': *15 '409': *55 x-github: @@ -84645,9 +84708,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *357 - *358 - - *542 + - *359 + - *543 responses: '204': description: Response @@ -84702,8 +84765,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -84770,7 +84833,7 @@ paths: description: Response content: application/json: - schema: &546 + schema: &547 title: Git Tag description: Metadata for a Git tag type: object @@ -84821,7 +84884,7 @@ paths: - sha - type - url - verification: *545 + verification: *546 required: - sha - url @@ -84831,7 +84894,7 @@ paths: - tag - message examples: - default: &547 + default: &548 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -84904,8 +84967,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *357 - *358 + - *359 - name: tag_sha in: path required: true @@ -84916,9 +84979,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: - default: *547 + default: *548 '404': *6 '409': *55 x-github: @@ -84942,8 +85005,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -85016,7 +85079,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &549 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -85112,8 +85175,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *357 - *358 + - *359 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -85136,7 +85199,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: default-response: summary: Default response @@ -85194,8 +85257,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -85238,8 +85301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -85249,7 +85312,7 @@ paths: application/json: schema: type: array - items: &549 + items: &550 title: Webhook description: Webhooks for repositories. type: object @@ -85303,7 +85366,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &839 + last_response: &840 title: Hook Response type: object properties: @@ -85377,8 +85440,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -85430,9 +85493,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: &550 + default: &551 value: type: Repository id: 12345678 @@ -85480,17 +85543,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '200': description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 '404': *6 x-github: githubCloudOnly: false @@ -85510,9 +85573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 requestBody: required: true content: @@ -85557,9 +85620,9 @@ paths: description: Response content: application/json: - schema: *549 + schema: *550 examples: - default: *550 + default: *551 '422': *15 '404': *6 x-github: @@ -85580,9 +85643,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '204': description: Response @@ -85606,9 +85669,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '200': description: Response @@ -85635,9 +85698,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *357 - *358 - - *231 + - *359 + - *232 requestBody: required: false content: @@ -85681,12 +85744,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *357 - *358 - - *231 - - *17 + - *359 - *232 + - *17 - *233 + - *234 responses: '200': description: Response @@ -85694,9 +85757,9 @@ paths: application/json: schema: type: array - items: *234 + items: *235 examples: - default: *235 + default: *236 '400': *14 '422': *15 x-github: @@ -85715,18 +85778,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 - *16 responses: '200': description: Response content: application/json: - schema: *236 + schema: *237 examples: - default: *237 + default: *238 '400': *14 '422': *15 x-github: @@ -85745,9 +85808,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 - *16 responses: '202': *40 @@ -85770,9 +85833,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '204': description: Response @@ -85797,9 +85860,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *357 - *358 - - *231 + - *359 + - *232 responses: '204': description: Response @@ -85822,8 +85885,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response if immutable releases are enabled @@ -85869,8 +85932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *357 - *358 + - *359 responses: '204': *60 '409': *55 @@ -85890,8 +85953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *357 - *358 + - *359 responses: '204': *60 '409': *55 @@ -85948,14 +86011,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &551 + schema: &552 title: Import description: A repository import from an external source. type: object @@ -86054,7 +86117,7 @@ paths: - html_url - authors_url examples: - default: &554 + default: &555 value: vcs: subversion use_lfs: true @@ -86070,7 +86133,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': &552 + '503': &553 description: Unavailable due to service under maintenance. content: application/json: @@ -86099,8 +86162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -86148,7 +86211,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: default: value: @@ -86173,7 +86236,7 @@ paths: type: string '422': *15 '404': *6 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86201,8 +86264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -86251,7 +86314,7 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: example-1: summary: Example 1 @@ -86299,7 +86362,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': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86322,12 +86385,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *357 - *358 + - *359 responses: '204': description: Response - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86353,9 +86416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *357 - *358 - - &768 + - *359 + - &769 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -86369,7 +86432,7 @@ paths: application/json: schema: type: array - items: &553 + items: &554 title: Porter Author description: Porter Author type: object @@ -86423,7 +86486,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': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86448,8 +86511,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *357 - *358 + - *359 - name: author_id in: path required: true @@ -86479,7 +86542,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -86492,7 +86555,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86516,8 +86579,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -86558,7 +86621,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86586,8 +86649,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -86614,11 +86677,11 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *554 + default: *555 '422': *15 - '503': *552 + '503': *553 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86641,8 +86704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -86650,8 +86713,8 @@ paths: application/json: schema: *22 examples: - default: *555 - '301': *361 + default: *556 + '301': *362 '404': *6 x-github: githubCloudOnly: false @@ -86671,8 +86734,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -86680,12 +86743,12 @@ paths: application/json: schema: anyOf: - - *250 + - *251 - type: object properties: {} additionalProperties: false examples: - default: &557 + default: &558 value: limit: collaborators_only origin: repository @@ -86710,13 +86773,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *556 + schema: *557 examples: default: summary: Example request body @@ -86728,9 +86791,9 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: - default: *557 + default: *558 '409': description: Response x-github: @@ -86752,8 +86815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -86780,8 +86843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -86835,13 +86898,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: &558 + schema: &559 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -86891,13 +86954,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: application/json: - schema: *558 + schema: *559 examples: default: summary: Example request body @@ -86930,8 +86993,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -86984,8 +87047,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -87061,8 +87124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -87072,9 +87135,9 @@ paths: application/json: schema: type: array - items: *559 + items: *560 examples: - default: &760 + default: &761 value: - id: 1 repository: @@ -87205,9 +87268,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *357 - *358 - - *254 + - *359 + - *255 requestBody: required: false content: @@ -87236,7 +87299,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: default: value: @@ -87367,9 +87430,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *357 - *358 - - *254 + - *359 + - *255 responses: '204': description: Response @@ -87392,8 +87455,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -87401,9 +87464,9 @@ paths: application/json: schema: type: array - items: *258 + items: *259 examples: - default: *560 + default: *561 '404': *6 x-github: githubCloudOnly: false @@ -87432,8 +87495,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *357 - *358 + - *359 - 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 @@ -87495,7 +87558,7 @@ paths: required: false schema: type: string - - *261 + - *262 - name: sort description: What to sort results by. in: query @@ -87520,7 +87583,7 @@ paths: type: array items: *89 examples: - default: &574 + default: &575 value: - id: 1 node_id: MDU6SXNzdWUx @@ -87669,7 +87732,7 @@ paths: state_reason: completed headers: Link: *71 - '301': *361 + '301': *362 '422': *15 '404': *6 x-github: @@ -87698,8 +87761,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -87801,7 +87864,7 @@ paths: application/json: schema: *89 examples: - default: &571 + default: &572 value: id: 1 node_id: MDU6SXNzdWUx @@ -87967,8 +88030,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *357 - *358 + - *359 - *113 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -87989,9 +88052,9 @@ paths: application/json: schema: type: array - items: *561 + items: *562 examples: - default: &573 + default: &574 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88050,17 +88113,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: &562 + default: &563 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -88116,8 +88179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -88140,9 +88203,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 '422': *15 x-github: githubCloudOnly: false @@ -88160,8 +88223,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -88190,15 +88253,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -88271,8 +88334,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -88298,8 +88361,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -88326,9 +88389,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -88349,8 +88412,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -88383,16 +88446,16 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -88414,10 +88477,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *357 - *358 + - *359 - *105 - - *564 + - *565 responses: '204': description: Response @@ -88437,8 +88500,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -88448,7 +88511,7 @@ paths: application/json: schema: type: array - items: &570 + items: &571 title: Issue Event description: Issue Event type: object @@ -88491,8 +88554,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *565 - required: *566 + properties: *566 + required: *567 nullable: true label: title: Issue Event Label @@ -88601,7 +88664,7 @@ paths: required: - from - to - issue_type: &567 + issue_type: &568 title: Issue Type description: The type of issue. type: object @@ -88629,14 +88692,14 @@ paths: required: - id - name - prev_issue_type: *567 + prev_issue_type: *568 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &568 + properties: &569 number: type: integer description: The number of the referenced issue. @@ -88674,7 +88737,7 @@ paths: - id - node_id - name - required: &569 + required: &570 - number - title - state @@ -88686,24 +88749,24 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -88714,7 +88777,7 @@ paths: is disabled or the event type does not support intent. type: object nullable: true - properties: &575 + properties: &576 rationale: type: string description: The reasoning the agent provided for the change. @@ -88927,8 +88990,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *357 - *358 + - *359 - name: event_id in: path required: true @@ -88939,7 +89002,7 @@ paths: description: Response content: application/json: - schema: *570 + schema: *571 examples: default: value: @@ -89166,9 +89229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *357 - *358 - - &572 + - *359 + - &573 name: issue_number description: The number that identifies the issue. in: path @@ -89184,7 +89247,7 @@ paths: examples: default: summary: Issue - value: *571 + value: *572 pinned_comment: summary: Issue with pinned comment value: @@ -89364,7 +89427,7 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *361 + '301': *362 '404': *6 '410': *33 '304': *38 @@ -89391,9 +89454,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -89740,11 +89803,11 @@ paths: - already_applied - issue_already_closed examples: - default: *571 + default: *572 '422': *15 '503': *123 '403': *29 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -89764,9 +89827,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -89816,7 +89879,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89832,9 +89895,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: content: application/json: @@ -89861,7 +89924,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89883,9 +89946,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: assignee in: path required: true @@ -89925,9 +89988,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *96 - *17 - *19 @@ -89938,9 +90001,9 @@ paths: application/json: schema: type: array - items: *561 + items: *562 examples: - default: *573 + default: *574 headers: Link: *71 '404': *6 @@ -89973,9 +90036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -89997,9 +90060,9 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: - default: *562 + default: *563 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -90034,9 +90097,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -90048,10 +90111,10 @@ paths: type: array items: *89 examples: - default: *574 + default: *575 headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -90081,9 +90144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -90107,13 +90170,13 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *361 + '301': *362 '403': *29 '410': *33 '422': *15 @@ -90146,9 +90209,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -90162,8 +90225,8 @@ paths: application/json: schema: *89 examples: - default: *571 - '301': *361 + default: *572 + '301': *362 '400': *14 '401': *25 '403': *29 @@ -90194,9 +90257,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -90208,10 +90271,10 @@ paths: type: array items: *89 examples: - default: *574 + default: *575 headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -90230,9 +90293,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -90246,7 +90309,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &581 + - &582 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -90299,7 +90362,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - label - id @@ -90311,7 +90374,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &582 + - &583 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -90364,7 +90427,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - label - id @@ -90410,7 +90473,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - id - node_id @@ -90469,7 +90532,7 @@ paths: - performed_via_github_app - assignee - assigner - - &583 + - &584 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -90520,7 +90583,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &584 + - &585 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -90571,7 +90634,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &585 + - &586 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -90625,7 +90688,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &586 + - &587 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -90672,7 +90735,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &587 + - &588 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -90719,7 +90782,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &588 + - &589 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -90779,7 +90842,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &589 + - &590 title: Locked Issue Event description: Locked Issue Event type: object @@ -90827,7 +90890,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &590 + - &591 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -90893,7 +90956,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &591 + - &592 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -90959,7 +91022,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &592 + - &593 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -91025,7 +91088,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &593 + - &594 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -91081,7 +91144,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &598 + - &599 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -91114,7 +91177,7 @@ paths: nullable: true properties: *84 required: *85 - issue_type: *567 + issue_type: *568 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -91125,7 +91188,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - issue_type - id @@ -91137,7 +91200,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &599 + - &600 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -91170,7 +91233,7 @@ paths: nullable: true properties: *84 required: *85 - prev_issue_type: *567 + prev_issue_type: *568 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -91181,7 +91244,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - prev_issue_type - id @@ -91193,7 +91256,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &600 + - &601 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -91226,8 +91289,8 @@ paths: nullable: true properties: *84 required: *85 - issue_type: *567 - prev_issue_type: *567 + issue_type: *568 + prev_issue_type: *568 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -91238,7 +91301,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - issue_type - prev_issue_type @@ -91251,7 +91314,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &601 + - &602 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -91291,8 +91354,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - sub_issue - id @@ -91304,7 +91367,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &602 + - &603 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -91344,8 +91407,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - sub_issue - id @@ -91357,7 +91420,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &603 + - &604 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -91397,8 +91460,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - parent_issue - id @@ -91410,7 +91473,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &604 + - &605 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -91450,8 +91513,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - parent_issue - id @@ -91463,7 +91526,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &605 + - &606 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -91503,8 +91566,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocked_by - id @@ -91516,7 +91579,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &606 + - &607 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -91556,8 +91619,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocked_by - id @@ -91569,7 +91632,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &607 + - &608 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -91609,8 +91672,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocking - id @@ -91622,7 +91685,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &608 + - &609 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -91662,8 +91725,8 @@ paths: events). type: object nullable: true - properties: *568 - required: *569 + properties: *569 + required: *570 required: - blocking - id @@ -91727,9 +91790,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -91739,9 +91802,9 @@ paths: application/json: schema: type: array - items: *576 + items: *577 examples: - default: &577 + default: &578 value: - issue_field_id: 1 issue_field_name: DRI @@ -91781,7 +91844,7 @@ paths: color: green headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -91812,9 +91875,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -91884,9 +91947,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *576 + items: *577 examples: - default: *577 + default: *578 '400': *14 '403': *29 '404': *6 @@ -91922,9 +91985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -91989,9 +92052,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *576 + items: *577 examples: - default: *577 + default: *578 '400': *14 '403': *29 '404': *6 @@ -92022,10 +92085,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *357 - *358 - - *572 - - *257 + - *359 + - *573 + - *258 responses: '204': description: Issue field value deleted successfully @@ -92050,9 +92113,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -92064,7 +92127,7 @@ paths: type: array items: *88 examples: - default: &578 + default: &579 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -92082,7 +92145,7 @@ paths: default: false headers: Link: *71 - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -92100,9 +92163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -92182,8 +92245,8 @@ paths: type: array items: *88 examples: - default: *578 - '301': *361 + default: *579 + '301': *362 '404': *6 '410': *33 '422': *15 @@ -92202,9 +92265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -92266,8 +92329,8 @@ paths: type: array items: *88 examples: - default: *578 - '301': *361 + default: *579 + '301': *362 '404': *6 '410': *33 '422': *15 @@ -92286,13 +92349,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 responses: '204': description: Response - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -92313,9 +92376,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: name in: path required: true @@ -92339,7 +92402,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *361 + '301': *362 '404': *6 '410': *33 x-github: @@ -92361,9 +92424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: false content: @@ -92409,9 +92472,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 responses: '204': description: Response @@ -92441,9 +92504,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 responses: '200': description: Response @@ -92451,8 +92514,8 @@ paths: application/json: schema: *89 examples: - default: *571 - '301': *361 + default: *572 + '301': *362 '404': *6 '410': *33 x-github: @@ -92471,9 +92534,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - 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. @@ -92499,9 +92562,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -92523,9 +92586,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -92557,16 +92620,16 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -92588,10 +92651,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *357 - *358 - - *572 - - *564 + - *359 + - *573 + - *565 responses: '204': description: Response @@ -92620,9 +92683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -92646,7 +92709,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -92679,9 +92742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 responses: @@ -92693,7 +92756,7 @@ paths: type: array items: *89 examples: - default: *574 + default: *575 headers: Link: *71 '404': *6 @@ -92725,9 +92788,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -92756,7 +92819,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -92783,9 +92846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 requestBody: required: true content: @@ -92818,7 +92881,7 @@ paths: application/json: schema: *89 examples: - default: *571 + default: *572 '403': *29 '404': *6 '422': *7 @@ -92847,9 +92910,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-issue-suggestions parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: state in: query required: false @@ -92886,7 +92949,7 @@ paths: application/json: schema: type: array - items: &579 + items: &580 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -93038,9 +93101,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#approve-an-issue-suggestion parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: suggestion_id in: path required: true @@ -93052,9 +93115,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: &580 + default: &581 value: id: 12 issue_id: 4567 @@ -93092,9 +93155,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *357 - *358 - - *572 + - *359 + - *573 - name: suggestion_id in: path required: true @@ -93106,9 +93169,9 @@ paths: description: Response content: application/json: - schema: *579 + schema: *580 examples: - default: *580 + default: *581 '403': *29 '404': *6 '422': *15 @@ -93128,9 +93191,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *357 - *358 - - *572 + - *359 + - *573 - *17 - *19 - name: exclude @@ -93151,7 +93214,6 @@ paths: description: Timeline Event type: object anyOf: - - *581 - *582 - *583 - *584 @@ -93164,6 +93226,7 @@ paths: - *591 - *592 - *593 + - *594 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -93224,15 +93287,15 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *594 - required: *595 + properties: *595 + required: *596 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *596 - required: *597 + properties: *597 + required: *598 nullable: true required: - event @@ -93487,7 +93550,7 @@ paths: type: string comments: type: array - items: &629 + items: &630 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -93702,7 +93765,7 @@ paths: type: string comments: type: array - items: *490 + items: *491 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -93746,7 +93809,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - id - node_id @@ -93847,7 +93910,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *575 + properties: *576 required: - id - node_id @@ -93858,7 +93921,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *598 - *599 - *600 - *601 @@ -93869,6 +93931,7 @@ paths: - *606 - *607 - *608 + - *609 examples: default: value: @@ -94042,8 +94105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -94053,7 +94116,7 @@ paths: application/json: schema: type: array - items: &609 + items: &610 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -94119,8 +94182,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -94156,9 +94219,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: &610 + default: &611 value: id: 1 key: ssh-rsa AAA... @@ -94192,9 +94255,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *357 - *358 - - &611 + - *359 + - &612 name: key_id description: The unique identifier of the key. in: path @@ -94206,9 +94269,9 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: - default: *610 + default: *611 '404': *6 x-github: githubCloudOnly: false @@ -94226,9 +94289,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *357 - *358 - - *611 + - *359 + - *612 responses: '204': description: Response @@ -94248,8 +94311,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -94261,7 +94324,7 @@ paths: type: array items: *88 examples: - default: *578 + default: *579 headers: Link: *71 '404': *6 @@ -94282,8 +94345,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -94321,7 +94384,7 @@ paths: application/json: schema: *88 examples: - default: &612 + default: &613 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -94353,8 +94416,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *357 - *358 + - *359 - name: name in: path required: true @@ -94367,7 +94430,7 @@ paths: application/json: schema: *88 examples: - default: *612 + default: *613 '404': *6 x-github: githubCloudOnly: false @@ -94384,8 +94447,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *357 - *358 + - *359 - name: name in: path required: true @@ -94450,8 +94513,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *357 - *358 + - *359 - name: name in: path required: true @@ -94477,8 +94540,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -94517,9 +94580,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *357 - *358 - - *463 + - *359 + - *464 responses: '200': description: Response @@ -94664,8 +94727,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -94730,8 +94793,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -94765,9 +94828,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *493 + schema: *494 examples: - default: *613 + default: *614 '204': description: Response when already merged '404': @@ -94792,8 +94855,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *357 - *358 + - *359 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -94834,12 +94897,12 @@ paths: application/json: schema: type: array - items: &614 + items: &615 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 examples: default: value: @@ -94895,8 +94958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -94936,9 +94999,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: &615 + default: &616 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -94997,9 +95060,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *357 - *358 - - &616 + - *359 + - &617 name: milestone_number description: The number that identifies the milestone. in: path @@ -95011,9 +95074,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 '404': *6 x-github: githubCloudOnly: false @@ -95030,9 +95093,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *357 - *358 - - *616 + - *359 + - *617 requestBody: required: false content: @@ -95070,9 +95133,9 @@ paths: description: Response content: application/json: - schema: *614 + schema: *615 examples: - default: *615 + default: *616 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95088,9 +95151,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *357 - *358 - - *616 + - *359 + - *617 responses: '204': description: Response @@ -95111,9 +95174,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *357 - *358 - - *616 + - *359 + - *617 - *17 - *19 responses: @@ -95125,7 +95188,7 @@ paths: type: array items: *88 examples: - default: *578 + default: *579 headers: Link: *71 x-github: @@ -95144,12 +95207,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *357 - *358 - - *617 + - *359 - *618 - - *96 - *619 + - *96 + - *620 - *17 - *19 responses: @@ -95161,7 +95224,7 @@ paths: type: array items: *116 examples: - default: *620 + default: *621 headers: Link: *71 x-github: @@ -95185,8 +95248,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -95244,14 +95307,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: &621 + schema: &622 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -95376,7 +95439,7 @@ paths: - custom_404 - public examples: - default: &622 + default: &623 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -95417,8 +95480,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -95472,9 +95535,9 @@ paths: description: Response content: application/json: - schema: *621 + schema: *622 examples: - default: *622 + default: *623 '422': *15 '409': *55 x-github: @@ -95497,8 +95560,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -95597,8 +95660,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -95624,8 +95687,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -95635,7 +95698,7 @@ paths: application/json: schema: type: array - items: &623 + items: &624 title: Page Build description: Page Build type: object @@ -95729,8 +95792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *357 - *358 + - *359 responses: '201': description: Response @@ -95775,16 +95838,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *623 + schema: *624 examples: - default: &624 + default: &625 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -95832,8 +95895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *357 - *358 + - *359 - name: build_id in: path required: true @@ -95844,9 +95907,9 @@ paths: description: Response content: application/json: - schema: *623 + schema: *624 examples: - default: *624 + default: *625 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95866,8 +95929,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -95972,9 +96035,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *357 - *358 - - &625 + - *359 + - &626 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -96032,9 +96095,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *357 - *358 - - *625 + - *359 + - *626 responses: '204': *60 '404': *6 @@ -96061,8 +96124,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -96320,8 +96383,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Private vulnerability reporting status @@ -96358,8 +96421,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': *60 '422': *14 @@ -96380,8 +96443,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': *60 '422': *14 @@ -96403,8 +96466,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -96412,7 +96475,7 @@ paths: application/json: schema: type: array - items: *310 + items: *311 examples: default: value: @@ -96443,8 +96506,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -96456,7 +96519,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *310 + items: *311 required: - properties examples: @@ -96506,8 +96569,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *357 - *358 + - *359 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -96567,9 +96630,9 @@ paths: application/json: schema: type: array - items: *455 + items: *456 examples: - default: *626 + default: *627 headers: Link: *71 '304': *38 @@ -96601,8 +96664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -96667,7 +96730,7 @@ paths: description: Response content: application/json: - schema: &631 + schema: &632 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -96778,8 +96841,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 nullable: true active_lock_reason: type: string @@ -96811,7 +96874,7 @@ paths: items: *4 requested_teams: type: array - items: *349 + items: *350 head: type: object properties: @@ -96849,14 +96912,14 @@ paths: _links: type: object properties: - comments: *297 - commits: *297 - statuses: *297 - html: *297 - issue: *297 - review_comments: *297 - review_comment: *297 - self: *297 + comments: *298 + commits: *298 + statuses: *298 + html: *298 + issue: *298 + review_comments: *298 + review_comment: *298 + self: *298 required: - comments - commits @@ -96867,8 +96930,8 @@ paths: - review_comment - self author_association: *86 - auto_merge: *627 - stack: *628 + auto_merge: *628 + stack: *629 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -96958,7 +97021,7 @@ paths: - merged_by - review_comments examples: - default: &632 + default: &633 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -97465,8 +97528,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *357 - *358 + - *359 - name: sort in: query required: false @@ -97495,9 +97558,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: &634 + default: &635 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97574,17 +97637,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *357 - *358 + - *359 - *105 responses: '200': description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: &630 + default: &631 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -97659,8 +97722,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -97683,9 +97746,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97701,8 +97764,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *357 - *358 + - *359 - *105 responses: '204': @@ -97724,8 +97787,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *357 - *358 + - *359 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -97752,9 +97815,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -97775,8 +97838,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *357 - *358 + - *359 - *105 requestBody: required: true @@ -97809,16 +97872,16 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -97840,10 +97903,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *357 - *358 + - *359 - *105 - - *564 + - *565 responses: '204': description: Response @@ -97886,9 +97949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *357 - *358 - - &633 + - *359 + - &634 name: pull_number description: The number that identifies the pull request. in: path @@ -97901,9 +97964,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '304': *38 '404': *6 '406': @@ -97938,9 +98001,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -97982,9 +98045,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: *632 + default: *633 '422': *15 '403': *29 x-github: @@ -98006,9 +98069,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: true content: @@ -98068,17 +98131,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '401': *25 '403': *29 '404': *6 @@ -98108,9 +98171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *113 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -98131,9 +98194,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *634 + default: *635 headers: Link: *71 x-github: @@ -98166,9 +98229,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: true content: @@ -98273,7 +98336,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: example-for-a-multi-line-comment: value: @@ -98361,9 +98424,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *105 requestBody: required: true @@ -98386,7 +98449,7 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: default: value: @@ -98472,9 +98535,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *17 - *19 responses: @@ -98484,9 +98547,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *635 + default: *636 headers: Link: *71 x-github: @@ -98516,9 +98579,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *17 - *19 responses: @@ -98528,7 +98591,7 @@ paths: application/json: schema: type: array - items: *505 + items: *506 examples: default: value: @@ -98566,9 +98629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *357 - *358 - - *633 + - *359 + - *634 responses: '204': description: Response if pull request has been merged @@ -98591,9 +98654,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -98715,9 +98778,9 @@ paths: category: pulls subcategory: pulls parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -98769,7 +98832,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &636 + schema: &637 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -98854,7 +98917,7 @@ paths: merge queue content: application/json: - schema: *636 + schema: *637 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -98874,7 +98937,7 @@ paths: this pull request content: application/json: - schema: *636 + schema: *637 examples: response-if-a-merge-request-already-exists: value: @@ -98890,7 +98953,7 @@ paths: it is closed content: application/json: - schema: *636 + schema: *637 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -98922,9 +98985,9 @@ paths: category: pulls subcategory: pulls parameters: - - *357 - *358 - - *633 + - *359 + - *634 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -98937,7 +99000,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *636 + schema: *637 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -98985,9 +99048,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 responses: '200': description: Response @@ -99062,9 +99125,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -99101,7 +99164,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: default: value: @@ -99637,9 +99700,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: true content: @@ -99673,7 +99736,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *456 examples: default: value: @@ -100158,9 +100221,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 - *17 - *19 responses: @@ -100170,7 +100233,7 @@ paths: application/json: schema: type: array - items: &637 + items: &638 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -100321,9 +100384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -100409,9 +100472,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: &639 + default: &640 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100474,10 +100537,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - &638 + - *359 + - *634 + - &639 name: review_id description: The unique identifier of the review. in: path @@ -100489,9 +100552,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: &640 + default: &641 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -100550,10 +100613,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 requestBody: required: true content: @@ -100576,7 +100639,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: default: value: @@ -100638,18 +100701,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 responses: '200': description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *639 + default: *640 '422': *7 '404': *6 x-github: @@ -100676,10 +100739,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 - *17 - *19 responses: @@ -100762,9 +100825,9 @@ paths: _links: type: object properties: - self: *297 - html: *297 - pull_request: *297 + self: *298 + html: *298 + pull_request: *298 required: - self - html @@ -100914,10 +100977,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 requestBody: required: true content: @@ -100945,7 +101008,7 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: default: value: @@ -101008,10 +101071,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *357 - *358 - - *633 - - *638 + - *359 + - *634 + - *639 requestBody: required: true content: @@ -101046,9 +101109,9 @@ paths: description: Response content: application/json: - schema: *637 + schema: *638 examples: - default: *640 + default: *641 '404': *6 '422': *7 '403': *29 @@ -101070,9 +101133,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *357 - *358 - - *633 + - *359 + - *634 requestBody: required: false content: @@ -101135,8 +101198,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *357 - *358 + - *359 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -101149,9 +101212,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: &642 + default: &643 value: type: file encoding: base64 @@ -101193,8 +101256,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *357 - *358 + - *359 - name: dir description: The alternate path to look for a README file in: path @@ -101214,9 +101277,9 @@ paths: description: Response content: application/json: - schema: *641 + schema: *642 examples: - default: *642 + default: *643 '404': *6 '422': *15 x-github: @@ -101238,8 +101301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -101249,7 +101312,7 @@ paths: application/json: schema: type: array - items: *643 + items: *644 examples: default: value: @@ -101348,8 +101411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -101425,9 +101488,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: &647 + default: &648 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -101532,9 +101595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *357 - *358 - - &645 + - *359 + - &646 name: asset_id description: The unique identifier of the asset. in: path @@ -101546,9 +101609,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: &646 + default: &647 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 @@ -101583,7 +101646,7 @@ paths: type: User site_admin: false '404': *6 - '302': *509 + '302': *510 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101599,9 +101662,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *357 - *358 - - *645 + - *359 + - *646 requestBody: required: false content: @@ -101629,9 +101692,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *646 + default: *647 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101647,9 +101710,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *357 - *358 - - *645 + - *359 + - *646 responses: '204': description: Response @@ -101674,8 +101737,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -101760,16 +101823,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *357 - *358 + - *359 responses: '200': description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *647 + default: *648 '404': *6 x-github: githubCloudOnly: false @@ -101787,8 +101850,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *357 - *358 + - *359 - name: tag description: tag parameter in: path @@ -101801,9 +101864,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *647 + default: *648 '404': *6 x-github: githubCloudOnly: false @@ -101825,9 +101888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *357 - *358 - - &648 + - *359 + - &649 name: release_id description: The unique identifier of the release. in: path @@ -101841,9 +101904,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: *643 + schema: *644 examples: - default: *647 + default: *648 '401': description: Unauthorized x-github: @@ -101867,9 +101930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 requestBody: required: false content: @@ -101933,9 +101996,9 @@ paths: description: Response content: application/json: - schema: *643 + schema: *644 examples: - default: *647 + default: *648 '404': description: Not Found if the discussion category name is invalid content: @@ -101956,9 +102019,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 responses: '204': description: Response @@ -101979,9 +102042,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *357 - *358 - - *648 + - *359 + - *649 - *17 - *19 responses: @@ -101991,7 +102054,7 @@ paths: application/json: schema: type: array - items: *644 + items: *645 examples: default: value: @@ -102072,9 +102135,9 @@ paths: description: The URL origin (protocol + host name + port) is included in `upload_url` returned in the response of the "Create a release" endpoint parameters: - - *357 - *358 - - *648 + - *359 + - *649 - name: name in: query required: true @@ -102100,7 +102163,7 @@ paths: description: Response for successful upload content: application/json: - schema: *644 + schema: *645 examples: response-for-successful-upload: value: @@ -102155,9 +102218,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 - 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. @@ -102181,9 +102244,9 @@ paths: application/json: schema: type: array - items: *491 + items: *492 examples: - default: *563 + default: *564 headers: Link: *71 '404': *6 @@ -102204,9 +102267,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *357 - *358 - - *648 + - *359 + - *649 requestBody: required: true content: @@ -102236,16 +102299,16 @@ paths: description: Reaction exists content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '201': description: Reaction created content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '422': *15 x-github: githubCloudOnly: false @@ -102267,10 +102330,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *357 - *358 - - *648 - - *564 + - *359 + - *649 + - *565 responses: '204': description: Response @@ -102294,9 +102357,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *357 - *358 - - *423 + - *359 + - *424 - *17 - *19 responses: @@ -102312,8 +102375,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *319 - - &649 + - *320 + - &650 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -102332,72 +102395,72 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *320 - - *649 - allOf: - *321 - - *649 + - *650 - allOf: - *322 - - *649 - - allOf: - *650 - - *649 - allOf: - *323 - - *649 + - *650 + - allOf: + - *651 + - *650 - allOf: - *324 - - *649 + - *650 - allOf: - *325 - - *649 + - *650 - allOf: - *326 - - *649 + - *650 - allOf: - *327 - - *649 + - *650 - allOf: - *328 - - *649 + - *650 - allOf: - *329 - - *649 + - *650 - allOf: - *330 - - *649 + - *650 - allOf: - *331 - - *649 + - *650 - allOf: - *332 - - *649 + - *650 - allOf: - - *337 - - *649 + - *333 + - *650 - allOf: - *338 - - *649 + - *650 - allOf: - *339 - - *649 + - *650 - allOf: - - *651 - - *649 + - *340 + - *650 - allOf: - - *333 - - *649 + - *652 + - *650 - allOf: - *334 - - *649 + - *650 - allOf: - *335 - - *649 + - *650 - allOf: - *336 - - *649 + - *650 + - allOf: + - *337 + - *650 examples: default: value: @@ -102436,8 +102499,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - *17 - *19 - name: includes_parents @@ -102448,7 +102511,7 @@ paths: schema: type: boolean default: true - - *652 + - *653 responses: '200': description: Response @@ -102456,7 +102519,7 @@ paths: application/json: schema: type: array - items: *340 + items: *341 examples: default: value: @@ -102503,8 +102566,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 requestBody: description: Request body required: true @@ -102524,16 +102587,16 @@ paths: - tag - push default: branch - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *314 + items: *318 + conditions: *315 rules: type: array description: An array of rules within the ruleset. - items: *653 + items: *654 required: - name - enforcement @@ -102564,9 +102627,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: &664 + default: &665 value: id: 42 name: super cool ruleset @@ -102614,13 +102677,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *357 - *358 - - *654 + - *359 - *655 - *656 - *657 - *658 + - *659 - *17 - *19 responses: @@ -102628,9 +102691,9 @@ paths: description: Response content: application/json: - schema: *659 + schema: *660 examples: - default: *660 + default: *661 '404': *6 '500': *56 x-github: @@ -102651,17 +102714,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *357 - *358 - - *661 + - *359 + - *662 responses: '200': description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '404': *6 '500': *56 x-github: @@ -102689,8 +102752,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102710,9 +102773,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *664 + default: *665 '404': *6 '500': *56 put: @@ -102730,8 +102793,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102756,16 +102819,16 @@ paths: - branch - tag - push - enforcement: *316 + enforcement: *317 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *317 - conditions: *314 + items: *318 + conditions: *315 rules: description: An array of rules within the ruleset. type: array - items: *653 + items: *654 examples: default: value: @@ -102793,9 +102856,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *341 examples: - default: *664 + default: *665 '404': *6 '422': *15 '500': *56 @@ -102814,8 +102877,8 @@ paths: category: repos subcategory: rules parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102838,8 +102901,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *357 - *358 + - *359 - *17 - *19 - name: ruleset_id @@ -102855,9 +102918,9 @@ paths: application/json: schema: type: array - items: *343 + items: *344 examples: - default: *665 + default: *666 '404': *6 '500': *56 x-github: @@ -102876,8 +102939,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *357 - *358 + - *359 - name: ruleset_id description: The ID of the ruleset. in: path @@ -102895,7 +102958,7 @@ paths: description: Response content: application/json: - schema: *666 + schema: *667 examples: default: value: @@ -102950,9 +103013,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *357 - *358 - - *667 + - *359 - *668 - *669 - *670 @@ -102960,10 +103022,10 @@ paths: - *672 - *673 - *674 + - *675 - *63 - *19 - *17 - - *675 - *676 - *677 - *678 @@ -102972,6 +103034,7 @@ paths: - *681 - *682 - *683 + - *684 responses: '200': description: Response @@ -102998,8 +103061,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *684 - resolution: *685 + state: *685 + resolution: *686 resolved_at: type: string format: date-time @@ -103105,7 +103168,7 @@ paths: pull request. ' - oneOf: *686 + oneOf: *687 nullable: true has_more_locations: type: boolean @@ -103269,16 +103332,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *357 - *358 - - *457 - - *680 + - *359 + - *458 + - *681 responses: '200': description: Response content: application/json: - schema: &687 + schema: &688 type: object properties: number: *189 @@ -103296,8 +103359,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *684 - resolution: *685 + state: *685 + resolution: *686 resolved_at: type: string format: date-time @@ -103403,7 +103466,7 @@ paths: pull request. ' - oneOf: *686 + oneOf: *687 nullable: true has_more_locations: type: boolean @@ -103431,7 +103494,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &860 + metadata: &861 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -103504,9 +103567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 requestBody: required: true content: @@ -103514,8 +103577,8 @@ paths: schema: type: object properties: - state: *684 - resolution: *685 + state: *685 + resolution: *686 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -103559,7 +103622,7 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: default: value: @@ -103661,9 +103724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *357 - *358 - - *457 + - *359 + - *458 - *19 - *17 responses: @@ -103674,7 +103737,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &862 + items: &863 type: object properties: type: @@ -103700,7 +103763,6 @@ paths: example: commit details: oneOf: - - *688 - *689 - *690 - *691 @@ -103713,6 +103775,7 @@ paths: - *698 - *699 - *700 + - *701 examples: default: value: @@ -103801,11 +103864,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 - - *701 + - *359 - *702 - *703 + - *704 - *63 - *19 - *17 @@ -103816,9 +103879,9 @@ paths: application/json: schema: type: array - items: *344 + items: *345 examples: - default: *704 + default: *705 headers: Link: *71 '403': *29 @@ -103841,8 +103904,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -103855,9 +103918,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *705 + items: *706 examples: - default: *706 + default: *707 responses: '201': description: All patterns created successfully. @@ -103869,9 +103932,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *344 + items: *345 examples: - default: *707 + default: *708 '400': *14 '403': *29 '404': *6 @@ -103895,7 +103958,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *708 + items: *709 delete: summary: Bulk delete repository custom patterns description: |- @@ -103914,8 +103977,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -103929,7 +103992,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *709 + items: *710 post_delete_action: type: string description: |- @@ -103942,14 +104005,14 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *710 + default: *711 responses: '204': description: All patterns deleted successfully. '400': *14 '403': *29 '404': *6 - '412': *346 + '412': *347 "/repos/{owner}/{repo}/secret-scanning/custom-patterns/{pattern_id}": patch: summary: Update a repository custom pattern @@ -103969,8 +104032,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *357 - *358 + - *359 - name: pattern_id in: path required: true @@ -103981,21 +104044,21 @@ paths: required: true content: application/json: - schema: *711 + schema: *712 examples: - default: *712 + default: *713 responses: '200': description: Pattern updated successfully. content: application/json: - schema: *344 + schema: *345 examples: - default: *713 + default: *714 '400': *14 '403': *29 '404': *6 - '412': *346 + '412': *347 '422': *15 "/repos/{owner}/{repo}/secret-scanning/push-protection-bypasses": post: @@ -104013,8 +104076,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -104022,14 +104085,14 @@ paths: schema: type: object properties: - reason: &715 + reason: &716 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *714 + placeholder_id: *715 required: - reason - placeholder_id @@ -104046,7 +104109,7 @@ paths: schema: type: object properties: - reason: *715 + reason: *716 expire_at: type: string format: date-time @@ -104092,8 +104155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *357 - *358 + - *359 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -104108,7 +104171,7 @@ paths: properties: incremental_scans: type: array - items: &716 + items: &717 description: Information on a single scan performed by secret scanning on the repository type: object @@ -104139,15 +104202,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *716 + items: *717 backfill_scans: type: array - items: *716 + items: *717 custom_pattern_backfill_scans: type: array items: allOf: - - *716 + - *717 - type: object properties: pattern_name: @@ -104160,7 +104223,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *716 + items: *717 examples: default: value: @@ -104225,8 +104288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *357 - *358 + - *359 - *63 - name: sort description: The property to sort the results by. @@ -104270,9 +104333,9 @@ paths: application/json: schema: type: array - items: *717 + items: *718 examples: - default: *718 + default: *719 '400': *14 '404': *6 x-github: @@ -104295,8 +104358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -104369,7 +104432,7 @@ paths: login: type: string description: The username of the user credited. - type: *348 + type: *349 required: - login - type @@ -104456,9 +104519,9 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: &720 + default: &721 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -104688,8 +104751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -104793,7 +104856,7 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: default: value: @@ -104939,17 +105002,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *357 - *358 - - *719 + - *359 + - *720 responses: '200': description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: *720 + default: *721 '403': *29 '404': *6 x-github: @@ -104973,9 +105036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *357 - *358 - - *719 + - *359 + - *720 requestBody: required: true content: @@ -105048,7 +105111,7 @@ paths: login: type: string description: The username of the user credited. - type: *348 + type: *349 required: - login - type @@ -105134,10 +105197,10 @@ paths: description: Response content: application/json: - schema: *717 + schema: *718 examples: - default: *720 - add_credit: *720 + default: *721 + add_credit: *721 '403': *29 '404': *6 '422': @@ -105175,9 +105238,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *357 - *358 - - *719 + - *359 + - *720 responses: '202': *40 '400': *14 @@ -105204,17 +105267,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *357 - *358 - - *719 + - *359 + - *720 responses: '202': description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 '400': *14 '422': *15 '403': *29 @@ -105235,8 +105298,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#list-pull-request-stacks parameters: - - *357 - *358 + - *359 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -105368,8 +105431,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -105436,7 +105499,7 @@ paths: format: date-time pull_requests: type: array - items: &721 + items: &722 title: Pull Request Stack Pull Request type: object allOf: @@ -105662,8 +105725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *357 - *358 + - *359 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -105712,7 +105775,7 @@ paths: format: date-time pull_requests: type: array - items: *721 + items: *722 examples: default: value: @@ -105832,8 +105895,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *357 - *358 + - *359 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -105905,7 +105968,7 @@ paths: format: date-time pull_requests: type: array - items: *721 + items: *722 examples: default: value: @@ -106109,8 +106172,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *357 - *358 + - *359 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -106159,7 +106222,7 @@ paths: format: date-time pull_requests: type: array - items: *721 + items: *722 examples: default: value: @@ -106265,8 +106328,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -106365,8 +106428,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *357 - *358 + - *359 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -106375,7 +106438,7 @@ paths: application/json: schema: type: array - items: &722 + items: &723 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -106408,8 +106471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -106485,8 +106548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -106582,8 +106645,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *357 - *358 + - *359 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -106737,8 +106800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *357 - *358 + - *359 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -106748,7 +106811,7 @@ paths: application/json: schema: type: array - items: *722 + items: *723 examples: default: value: @@ -106781,8 +106844,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *357 - *358 + - *359 - name: sha in: path required: true @@ -106836,7 +106899,7 @@ paths: description: Response content: application/json: - schema: *723 + schema: *724 examples: default: value: @@ -106890,8 +106953,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -106923,14 +106986,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *357 - *358 + - *359 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &724 + schema: &725 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -106998,8 +107061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *357 - *358 + - *359 requestBody: required: false content: @@ -107025,7 +107088,7 @@ paths: description: Response content: application/json: - schema: *724 + schema: *725 examples: default: value: @@ -107052,8 +107115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -107073,8 +107136,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -107153,8 +107216,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *357 - *358 + - *359 - name: ref in: path required: true @@ -107190,8 +107253,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *357 - *358 + - *359 - *17 - *19 responses: @@ -107203,7 +107266,7 @@ paths: type: array items: *211 examples: - default: *275 + default: *276 headers: Link: *71 '404': *6 @@ -107223,8 +107286,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *357 - *358 + - *359 - *19 - *17 responses: @@ -107232,7 +107295,7 @@ paths: description: Response content: application/json: - schema: &725 + schema: &726 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -107244,7 +107307,7 @@ paths: required: - names examples: - default: &726 + default: &727 value: names: - octocat @@ -107267,8 +107330,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -107299,9 +107362,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *726 examples: - default: *726 + default: *727 '404': *6 '422': *7 x-github: @@ -107322,9 +107385,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *357 - *358 - - &727 + - *359 + - &728 name: per description: The time frame to display results for. in: query @@ -107353,7 +107416,7 @@ paths: example: 128 clones: type: array - items: &728 + items: &729 title: Traffic type: object properties: @@ -107440,8 +107503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -107531,8 +107594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *357 - *358 + - *359 responses: '200': description: Response @@ -107592,9 +107655,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *357 - *358 - - *727 + - *359 + - *728 responses: '200': description: Response @@ -107613,7 +107676,7 @@ paths: example: 3782 views: type: array - items: *728 + items: *729 required: - uniques - count @@ -107690,8 +107753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *357 - *358 + - *359 requestBody: required: true content: @@ -107964,8 +108027,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *357 - *358 + - *359 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -107988,8 +108051,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -108011,8 +108074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -108038,8 +108101,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *357 - *358 + - *359 - name: ref in: path required: true @@ -108131,9 +108194,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -108384,7 +108447,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &729 + text_matches: &730 title: Search Result Text Matches type: array items: @@ -108546,7 +108609,7 @@ paths: enum: - author-date - committer-date - - &730 + - &731 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 @@ -108617,7 +108680,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *422 nullable: true comment_count: type: integer @@ -108637,7 +108700,7 @@ paths: url: type: string format: uri - verification: *545 + verification: *546 required: - author - committer @@ -108656,7 +108719,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *421 + properties: *422 nullable: true parents: type: array @@ -108674,7 +108737,7 @@ paths: type: number node_id: type: string - text_matches: *729 + text_matches: *730 required: - sha - node_id @@ -108866,7 +108929,7 @@ paths: - interactions - created - updated - - *730 + - *731 - *17 - *19 - name: advanced_search @@ -108980,11 +109043,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: type: string state_reason: @@ -108994,8 +109057,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *295 - required: *296 + properties: *296 + required: *297 nullable: true comments: type: integer @@ -109009,7 +109072,7 @@ paths: type: string format: date-time nullable: true - text_matches: *729 + text_matches: *730 pull_request: type: object properties: @@ -109053,7 +109116,7 @@ paths: timeline_url: type: string format: uri - type: *258 + type: *259 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -109289,7 +109352,7 @@ paths: enum: - created - updated - - *730 + - *731 - *17 - *19 responses: @@ -109333,7 +109396,7 @@ paths: nullable: true score: type: number - text_matches: *729 + text_matches: *730 required: - id - node_id @@ -109418,7 +109481,7 @@ paths: - forks - help-wanted-issues - updated - - *730 + - *731 - *17 - *19 responses: @@ -109666,7 +109729,7 @@ paths: - admin - pull - push - text_matches: *729 + text_matches: *730 temp_clone_token: type: string allow_merge_commit: @@ -109966,7 +110029,7 @@ paths: type: string format: uri nullable: true - text_matches: *729 + text_matches: *730 related: type: array nullable: true @@ -110157,7 +110220,7 @@ paths: - followers - repositories - joined - - *730 + - *731 - *17 - *19 responses: @@ -110261,7 +110324,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *729 + text_matches: *730 blog: type: string nullable: true @@ -110340,7 +110403,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &733 + - &734 name: team_id description: The unique identifier of the team. in: path @@ -110352,9 +110415,9 @@ paths: description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 x-github: githubCloudOnly: false @@ -110381,7 +110444,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *733 + - *734 requestBody: required: true content: @@ -110449,16 +110512,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '201': description: Response content: application/json: - schema: *353 + schema: *354 examples: - default: *354 + default: *355 '404': *6 '422': *15 '403': *29 @@ -110486,7 +110549,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *733 + - *734 responses: '204': description: Response @@ -110515,7 +110578,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *733 + - *734 - *17 - *19 responses: @@ -110525,9 +110588,9 @@ paths: application/json: schema: type: array - items: *252 + items: *253 examples: - default: *253 + default: *254 headers: Link: *71 x-github: @@ -110555,7 +110618,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *733 + - *734 - name: role description: Filters members returned by their role in the team. in: query @@ -110576,9 +110639,9 @@ paths: application/json: schema: type: array - items: *734 + items: *735 examples: - default: *735 + default: *736 headers: Link: *71 '404': *6 @@ -110606,7 +110669,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -110643,7 +110706,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -110683,7 +110746,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -110720,16 +110783,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *733 + - *734 - *75 responses: '200': description: Response content: application/json: - schema: *356 + schema: *357 examples: - response-if-user-is-a-team-maintainer: *736 + response-if-user-is-a-team-maintainer: *737 '404': *6 x-github: githubCloudOnly: false @@ -110762,7 +110825,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *733 + - *734 - *75 requestBody: required: false @@ -110788,9 +110851,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *357 examples: - response-if-users-membership-with-team-is-now-pending: *737 + response-if-users-membership-with-team-is-now-pending: *738 '403': description: Forbidden if team synchronization is set up '422': @@ -110824,7 +110887,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *733 + - *734 - *75 responses: '204': @@ -110852,7 +110915,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *733 + - *734 - *17 - *19 responses: @@ -110864,7 +110927,7 @@ paths: type: array items: *164 examples: - default: *289 + default: *290 headers: Link: *71 '404': *6 @@ -110894,15 +110957,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *733 - - *357 + - *734 - *358 + - *359 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *738 + schema: *739 examples: alternative-response-with-extra-repository-information: value: @@ -111052,9 +111115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *733 - - *357 + - *734 - *358 + - *359 requestBody: required: false content: @@ -111104,9 +111167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *733 - - *357 + - *734 - *358 + - *359 responses: '204': description: Response @@ -111131,7 +111194,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *733 + - *734 - *17 - *19 responses: @@ -111143,7 +111206,7 @@ paths: type: array items: *211 examples: - response-if-child-teams-exist: *739 + response-if-child-teams-exist: *740 headers: Link: *71 '404': *6 @@ -111176,7 +111239,7 @@ paths: application/json: schema: oneOf: - - &740 + - &741 title: Private User description: Private User type: object @@ -111379,7 +111442,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &767 + - &768 title: Public User description: Public User type: object @@ -111691,7 +111754,7 @@ paths: description: Response content: application/json: - schema: *740 + schema: *741 examples: default: value: @@ -111894,9 +111957,9 @@ paths: type: integer codespaces: type: array - items: *263 + items: *264 examples: - default: *264 + default: *265 '304': *38 '500': *56 '401': *25 @@ -112035,17 +112098,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '401': *25 '403': *29 '404': *6 @@ -112089,7 +112152,7 @@ paths: type: integer secrets: type: array - items: &741 + items: &742 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -112129,7 +112192,7 @@ paths: - visibility - selected_repositories_url examples: - default: *483 + default: *484 headers: Link: *71 x-github: @@ -112205,7 +112268,7 @@ paths: description: Response content: application/json: - schema: *741 + schema: *742 examples: default: value: @@ -112495,15 +112558,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '304': *38 '500': *56 '401': *25 @@ -112529,7 +112592,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 requestBody: required: false content: @@ -112559,9 +112622,9 @@ paths: description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '401': *25 '403': *29 '404': *6 @@ -112583,7 +112646,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '202': *40 '304': *38 @@ -112612,13 +112675,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '202': description: Response content: application/json: - schema: &742 + schema: &743 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -112659,7 +112722,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &743 + default: &744 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -112691,7 +112754,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *265 + - *266 - name: export_id in: path required: true @@ -112704,9 +112767,9 @@ paths: description: Response content: application/json: - schema: *742 + schema: *743 examples: - default: *743 + default: *744 '404': *6 x-github: githubCloudOnly: false @@ -112727,7 +112790,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *265 + - *266 responses: '200': description: Response @@ -112743,9 +112806,9 @@ paths: type: integer machines: type: array - items: *744 + items: *745 examples: - default: *745 + default: *746 '304': *38 '500': *56 '401': *25 @@ -112774,7 +112837,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *265 + - *266 requestBody: required: true content: @@ -112824,13 +112887,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *360 + repository: *361 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *481 - required: *482 + properties: *482 + required: *483 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -113604,15 +113667,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '304': *38 '500': *56 '400': *14 @@ -113644,15 +113707,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *263 + schema: *264 examples: - default: *480 + default: *481 '500': *56 '401': *25 '403': *29 @@ -113682,9 +113745,9 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: &757 + default: &758 value: - id: 197 name: hello_docker @@ -113785,7 +113848,7 @@ paths: application/json: schema: type: array - items: &746 + items: &747 title: Email description: Email type: object @@ -113850,9 +113913,9 @@ paths: application/json: schema: type: array - items: *746 + items: *747 examples: - default: &759 + default: &760 value: - email: octocat@github.com verified: true @@ -113927,7 +113990,7 @@ paths: application/json: schema: type: array - items: *746 + items: *747 examples: default: value: @@ -114183,7 +114246,7 @@ paths: application/json: schema: type: array - items: &747 + items: &748 title: GPG Key description: A unique encryption key type: object @@ -114314,7 +114377,7 @@ paths: - subkeys - revoked examples: - default: &777 + default: &778 value: - id: 3 name: Octocat's GPG Key @@ -114399,9 +114462,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *748 examples: - default: &748 + default: &749 value: id: 3 name: Octocat's GPG Key @@ -114458,7 +114521,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &749 + - &750 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -114470,9 +114533,9 @@ paths: description: Response content: application/json: - schema: *747 + schema: *748 examples: - default: *748 + default: *749 '404': *6 '304': *38 '403': *29 @@ -114495,7 +114558,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *749 + - *750 responses: '204': description: Response @@ -114783,12 +114846,12 @@ paths: application/json: schema: anyOf: - - *250 + - *251 - type: object properties: {} additionalProperties: false examples: - default: *251 + default: *252 '204': description: Response when there are no restrictions x-github: @@ -114812,7 +114875,7 @@ paths: required: true content: application/json: - schema: *556 + schema: *557 examples: default: value: @@ -114823,7 +114886,7 @@ paths: description: Response content: application/json: - schema: *250 + schema: *251 examples: default: value: @@ -114904,7 +114967,7 @@ paths: - closed - all default: open - - *261 + - *262 - name: sort description: What to sort results by. in: query @@ -114929,7 +114992,7 @@ paths: type: array items: *89 examples: - default: *262 + default: *263 headers: Link: *71 '404': *6 @@ -114962,7 +115025,7 @@ paths: application/json: schema: type: array - items: &750 + items: &751 title: Key description: Key type: object @@ -115063,9 +115126,9 @@ paths: description: Response content: application/json: - schema: *750 + schema: *751 examples: - default: &751 + default: &752 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -115098,15 +115161,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *611 + - *612 responses: '200': description: Response content: application/json: - schema: *750 + schema: *751 examples: - default: *751 + default: *752 '404': *6 '304': *38 '403': *29 @@ -115129,7 +115192,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *611 + - *612 responses: '204': description: Response @@ -115162,7 +115225,7 @@ paths: application/json: schema: type: array - items: &752 + items: &753 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -115230,7 +115293,7 @@ paths: - account - plan examples: - default: &753 + default: &754 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -115292,9 +115355,9 @@ paths: application/json: schema: type: array - items: *752 + items: *753 examples: - default: *753 + default: *754 headers: Link: *71 '304': *38 @@ -115334,7 +115397,7 @@ paths: application/json: schema: type: array - items: *267 + items: *268 examples: default: value: @@ -115448,7 +115511,7 @@ paths: description: Response content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -115535,9 +115598,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *267 + schema: *268 examples: - default: &754 + default: &755 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -115584,9 +115647,9 @@ paths: processed asynchronously. content: application/json: - schema: *267 + schema: *268 examples: - default: *754 + default: *755 '403': *29 '404': *6 '422': *15 @@ -115615,7 +115678,7 @@ paths: application/json: schema: type: array - items: *269 + items: *270 examples: default: value: @@ -115868,7 +115931,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -116048,7 +116111,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *270 + - *271 - name: exclude in: query required: false @@ -116061,7 +116124,7 @@ paths: description: Response content: application/json: - schema: *269 + schema: *270 examples: default: value: @@ -116255,7 +116318,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *270 + - *271 responses: '302': description: Response @@ -116281,7 +116344,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *270 + - *271 responses: '204': description: Response @@ -116310,8 +116373,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *270 - - *755 + - *271 + - *756 responses: '204': description: Response @@ -116335,7 +116398,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *270 + - *271 - *17 - *19 responses: @@ -116424,7 +116487,7 @@ paths: - docker - nuget - container - - *756 + - *757 - *19 - *17 responses: @@ -116434,10 +116497,10 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *757 - '400': *758 + default: *758 + '400': *759 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -116457,16 +116520,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *278 - *279 + - *280 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: - default: &778 + default: &779 value: id: 40201 name: octo-name @@ -116579,8 +116642,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *278 - *279 + - *280 responses: '204': description: Response @@ -116610,8 +116673,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *278 - *279 + - *280 - name: token description: package token schema: @@ -116643,8 +116706,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: - - *278 - *279 + - *280 - *19 - *17 - name: state @@ -116664,7 +116727,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -116713,15 +116776,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -116757,9 +116820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 responses: '204': description: Response @@ -116789,9 +116852,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 responses: '204': description: Response @@ -116828,9 +116891,9 @@ paths: application/json: schema: type: array - items: *746 + items: *747 examples: - default: *759 + default: *760 headers: Link: *71 '304': *38 @@ -116943,7 +117006,7 @@ paths: type: array items: *83 examples: - default: &766 + default: &767 summary: Default response value: - id: 1296269 @@ -117247,9 +117310,9 @@ paths: description: Response content: application/json: - schema: *360 + schema: *361 examples: - default: *362 + default: *363 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -117288,9 +117351,9 @@ paths: application/json: schema: type: array - items: *559 + items: *560 examples: - default: *760 + default: *761 headers: Link: *71 '304': *38 @@ -117313,7 +117376,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *254 + - *255 responses: '204': description: Response @@ -117337,7 +117400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *254 + - *255 responses: '204': description: Response @@ -117370,7 +117433,7 @@ paths: application/json: schema: type: array - items: &761 + items: &762 title: Social account description: Social media account type: object @@ -117385,7 +117448,7 @@ paths: - provider - url examples: - default: &762 + default: &763 value: - provider: twitter url: https://twitter.com/github @@ -117447,9 +117510,9 @@ paths: application/json: schema: type: array - items: *761 + items: *762 examples: - default: *762 + default: *763 '422': *15 '304': *38 '404': *6 @@ -117536,7 +117599,7 @@ paths: application/json: schema: type: array - items: &763 + items: &764 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -117556,7 +117619,7 @@ paths: - title - created_at examples: - default: &795 + default: &796 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -117620,9 +117683,9 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: - default: &764 + default: &765 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -117652,7 +117715,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: - - &765 + - &766 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -117664,9 +117727,9 @@ paths: description: Response content: application/json: - schema: *763 + schema: *764 examples: - default: *764 + default: *765 '404': *6 '304': *38 '403': *29 @@ -117689,7 +117752,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: - - *765 + - *766 responses: '204': description: Response @@ -117718,7 +117781,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &796 + - &797 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 @@ -117743,11 +117806,11 @@ paths: type: array items: *83 examples: - default-response: *766 + default-response: *767 application/vnd.github.v3.star+json: schema: type: array - items: &797 + items: &798 title: Starred Repository description: Starred Repository type: object @@ -117903,8 +117966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *357 - *358 + - *359 responses: '204': description: Response if this repository is starred by you @@ -117932,8 +117995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -117957,8 +118020,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *357 - *358 + - *359 responses: '204': description: Response @@ -117993,7 +118056,7 @@ paths: type: array items: *164 examples: - default: *289 + default: *290 headers: Link: *71 '304': *38 @@ -118030,7 +118093,7 @@ paths: application/json: schema: type: array - items: *353 + items: *354 examples: default: value: @@ -118116,10 +118179,10 @@ paths: application/json: schema: oneOf: - - *740 - - *767 + - *741 + - *768 examples: - default-response: &771 + default-response: &772 summary: Default response value: login: octocat @@ -118154,7 +118217,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &772 + response-with-git-hub-plan-information: &773 summary: Response with GitHub plan information value: login: octocat @@ -118211,14 +118274,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &769 + - &770 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *294 + - *295 requestBody: required: true description: Details of the draft item to create in the project. @@ -118252,9 +118315,9 @@ paths: description: Response content: application/json: - schema: *300 + schema: *301 examples: - draft_issue: *301 + draft_issue: *302 '304': *38 '403': *29 '401': *25 @@ -118277,7 +118340,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *768 + - *769 - *17 responses: '200': @@ -118312,8 +118375,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *769 - - *294 + - *770 + - *295 requestBody: required: true content: @@ -118349,6 +118412,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -118384,17 +118488,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *770 + schema: *771 examples: table_view: summary: Response for creating a table view - value: *305 + value: *306 board_view: summary: Response for creating a board view with filter - value: *305 + value: *306 roadmap_view: summary: Response for creating a roadmap view - value: *305 + value: *306 '304': *38 '403': *29 '401': *25 @@ -118436,11 +118540,11 @@ paths: application/json: schema: oneOf: - - *740 - - *767 + - *741 + - *768 examples: - default-response: *771 - response-with-git-hub-plan-information: *772 + default-response: *772 + response-with-git-hub-plan-information: *773 '404': *6 x-github: githubCloudOnly: false @@ -118490,8 +118594,8 @@ paths: required: - subject_digests examples: - default: *773 - withPredicateType: *774 + default: *774 + withPredicateType: *775 responses: '200': description: Response @@ -118530,7 +118634,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *775 + default: *776 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -118719,7 +118823,7 @@ paths: initiator: type: string examples: - default: *417 + default: *418 '201': description: Response content: @@ -119000,7 +119104,7 @@ paths: application/json: schema: *205 examples: - default: &776 + default: &777 summary: Example response for a user copilot space value: id: 42 @@ -119101,7 +119205,7 @@ paths: application/json: schema: *205 examples: - default: *776 + default: *777 '403': *29 '404': *6 x-github: @@ -119224,7 +119328,7 @@ paths: application/json: schema: *205 examples: - default: *776 + default: *777 '403': *29 '404': *6 '422': *15 @@ -119990,9 +120094,9 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *757 + default: *758 '403': *29 '401': *25 x-github: @@ -120376,9 +120480,9 @@ paths: application/json: schema: type: array - items: *747 + items: *748 examples: - default: *777 + default: *778 headers: Link: *71 x-github: @@ -120482,7 +120586,7 @@ paths: application/json: schema: *22 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120606,7 +120710,7 @@ paths: - docker - nuget - container - - *756 + - *757 - *75 - *19 - *17 @@ -120617,12 +120721,12 @@ paths: application/json: schema: type: array - items: *276 + items: *277 examples: - default: *757 + default: *758 '403': *29 '401': *25 - '400': *758 + '400': *759 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120642,17 +120746,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *278 - *279 + - *280 - *75 responses: '200': description: Response content: application/json: - schema: *276 + schema: *277 examples: - default: *778 + default: *779 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -120673,8 +120777,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *278 - *279 + - *280 - *75 responses: '204': @@ -120707,8 +120811,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *278 - *279 + - *280 - *75 - name: token description: package token @@ -120741,8 +120845,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: - - *278 - *279 + - *280 - *75 responses: '200': @@ -120751,7 +120855,7 @@ paths: application/json: schema: type: array - items: *280 + items: *281 examples: default: value: @@ -120809,16 +120913,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *278 - *279 - - *281 + - *280 + - *282 - *75 responses: '200': description: Response content: application/json: - schema: *280 + schema: *281 examples: default: value: @@ -120853,10 +120957,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *278 - *279 + - *280 - *75 - - *281 + - *282 responses: '204': description: Response @@ -120888,10 +120992,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *278 - *279 + - *280 - *75 - - *281 + - *282 responses: '204': description: Response @@ -120932,9 +121036,9 @@ paths: application/json: schema: type: array - items: *292 + items: *293 examples: - default: *293 + default: *294 headers: Link: *71 '304': *38 @@ -120956,16 +121060,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *294 + - *295 - *75 responses: '200': description: Response content: application/json: - schema: *292 + schema: *293 examples: - default: *293 + default: *294 headers: Link: *71 '304': *38 @@ -120987,7 +121091,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *294 + - *295 - *75 - *17 - *48 @@ -120999,9 +121103,9 @@ paths: application/json: schema: type: array - items: *298 + items: *299 examples: - default: *779 + default: *780 headers: Link: *71 '304': *38 @@ -121023,7 +121127,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *75 - - *294 + - *295 requestBody: required: true content: @@ -121061,7 +121165,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *780 + items: *781 required: - name - data_type @@ -121077,7 +121181,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *781 + iteration_configuration: *782 required: - name - data_type @@ -121099,20 +121203,20 @@ paths: value: name: Due date data_type: date - single_select_field: *782 - iteration_field: *783 + single_select_field: *783 + iteration_field: *784 responses: '201': description: Response content: application/json: - schema: *298 + schema: *299 examples: - text_field: *784 - number_field: *785 - date_field: *786 - single_select_field: *787 - iteration_field: *788 + text_field: *785 + number_field: *786 + date_field: *787 + single_select_field: *788 + iteration_field: *789 '304': *38 '403': *29 '401': *25 @@ -121133,17 +121237,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *294 - - *789 + - *295 + - *790 - *75 responses: '200': description: Response content: application/json: - schema: *298 + schema: *299 examples: - default: *790 + default: *791 headers: Link: *71 '304': *38 @@ -121166,7 +121270,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *294 + - *295 - *75 - *48 - *49 @@ -121199,9 +121303,9 @@ paths: application/json: schema: type: array - items: *302 + items: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -121223,7 +121327,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *75 - - *294 + - *295 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -121293,22 +121397,22 @@ paths: description: Response content: application/json: - schema: *300 + schema: *301 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *301 + value: *302 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *301 + value: *302 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *301 + value: *302 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *301 + value: *302 '304': *38 '403': *29 '401': *25 @@ -121328,9 +121432,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *294 + - *295 - *75 - - *304 + - *305 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -121350,9 +121454,9 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -121373,9 +121477,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *294 + - *295 - *75 - - *304 + - *305 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -121445,13 +121549,13 @@ paths: description: Response content: application/json: - schema: *302 + schema: *303 examples: - text_field: *303 - number_field: *303 - date_field: *303 - single_select_field: *303 - iteration_field: *303 + text_field: *304 + number_field: *304 + date_field: *304 + single_select_field: *304 + iteration_field: *304 '401': *25 '403': *29 '404': *6 @@ -121471,9 +121575,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *294 + - *295 - *75 - - *304 + - *305 responses: '204': description: Response @@ -121495,9 +121599,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *294 + - *295 - *75 - - *791 + - *792 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -121523,9 +121627,9 @@ paths: application/json: schema: type: array - items: *302 + items: *303 examples: - default: *303 + default: *304 headers: Link: *71 '304': *38 @@ -121746,7 +121850,7 @@ paths: type: array items: *164 examples: - default: *289 + default: *290 headers: Link: *71 x-github: @@ -122036,7 +122140,7 @@ paths: parameters: - *75 - *125 - - *792 + - *793 - *127 responses: '200': @@ -122135,9 +122239,9 @@ paths: - *125 - *126 - *127 - - *793 - - *130 - *794 + - *130 + - *795 responses: '200': description: Response when getting a billing usage summary @@ -122271,9 +122375,9 @@ paths: application/json: schema: type: array - items: *761 + items: *762 examples: - default: *762 + default: *763 headers: Link: *71 x-github: @@ -122303,9 +122407,9 @@ paths: application/json: schema: type: array - items: *763 + items: *764 examples: - default: *795 + default: *796 headers: Link: *71 x-github: @@ -122330,7 +122434,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *75 - - *796 + - *797 - *63 - *17 - *19 @@ -122342,11 +122446,11 @@ paths: schema: anyOf: - type: array - items: *797 + items: *798 - type: array items: *83 examples: - default-response: *766 + default-response: *767 headers: Link: *71 x-github: @@ -122377,7 +122481,7 @@ paths: type: array items: *164 examples: - default: *289 + default: *290 headers: Link: *71 x-github: @@ -122505,7 +122609,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &798 + enterprise: &799 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -122563,7 +122667,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &799 + installation: &800 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -122582,7 +122686,7 @@ x-webhooks: required: - id - node_id - organization: &800 + organization: &801 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -122642,13 +122746,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &801 + repository: &802 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &833 + properties: &834 id: description: Unique identifier of the repository example: 42 @@ -123332,7 +123436,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &834 + required: &835 - archive_url - assignees_url - blobs_url @@ -123483,10 +123587,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -123562,11 +123666,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - rule: &802 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + rule: &803 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) @@ -123789,11 +123893,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - rule: *802 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + rule: *803 sender: *4 required: - action @@ -123976,11 +124080,11 @@ x-webhooks: - everyone required: - from - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - rule: *802 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + rule: *803 sender: *4 required: - action @@ -124064,7 +124168,7 @@ x-webhooks: type: string enum: - completed - check_run: &804 + check_run: &805 title: CheckRun description: A check performed on the code of a given code change type: object @@ -124155,7 +124259,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *803 + deployment: *804 details_url: example: https://example.com type: string @@ -124240,10 +124344,10 @@ x-webhooks: - output - app - pull_requests - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 sender: *4 required: - check_run @@ -124634,11 +124738,11 @@ x-webhooks: type: string enum: - created - check_run: *804 - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + check_run: *805 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 sender: *4 required: - check_run @@ -125032,11 +125136,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *804 - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + check_run: *805 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 requested_action: description: The action requested by the user. type: object @@ -125439,11 +125543,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *804 - installation: *799 - enterprise: *798 - organization: *800 - repository: *801 + check_run: *805 + installation: *800 + enterprise: *799 + organization: *801 + repository: *802 sender: *4 required: - check_run @@ -126413,10 +126517,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -127115,10 +127219,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -127811,10 +127915,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -127980,7 +128084,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -128125,20 +128229,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &805 + commit_oid: &806 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: *798 - installation: *799 - organization: *800 - ref: &806 + enterprise: *799 + installation: *800 + organization: *801 + ref: &807 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: *801 + repository: *802 sender: *4 required: - action @@ -128303,7 +128407,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -128533,12 +128637,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -128633,7 +128737,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -128804,12 +128908,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -128975,7 +129079,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -129141,12 +129245,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -129245,7 +129349,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -129420,16 +129524,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *801 + repository: *802 sender: *4 required: - action @@ -129526,7 +129630,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -129666,12 +129770,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *805 - enterprise: *798 - installation: *799 - organization: *800 - ref: *806 - repository: *801 + commit_oid: *806 + enterprise: *799 + installation: *800 + organization: *801 + ref: *807 + repository: *802 sender: *4 required: - action @@ -129837,7 +129941,7 @@ x-webhooks: required: - login - id - dismissed_comment: *451 + dismissed_comment: *452 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -129982,10 +130086,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -130240,10 +130344,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -130323,18 +130427,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *800 - pusher_type: &807 + organization: *801 + pusher_type: &808 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &808 + ref: &809 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -130344,7 +130448,7 @@ x-webhooks: enum: - tag - branch - repository: *801 + repository: *802 sender: *4 required: - ref @@ -130426,10 +130530,10 @@ x-webhooks: type: string enum: - created - definition: *306 - enterprise: *798 - installation: *799 - organization: *800 + definition: *307 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -130514,9 +130618,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -130593,10 +130697,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *306 - enterprise: *798 - installation: *799 - organization: *800 + definition: *307 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -130673,10 +130777,10 @@ x-webhooks: type: string enum: - updated - definition: *306 - enterprise: *798 - installation: *799 - organization: *800 + definition: *307 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -130753,19 +130857,19 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - repository: *801 - organization: *800 + enterprise: *799 + installation: *800 + repository: *802 + organization: *801 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *310 + items: *311 old_property_values: type: array description: The old custom property values for the repository. - items: *310 + items: *311 required: - action - repository @@ -130841,18 +130945,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - pusher_type: *807 - ref: *808 + enterprise: *799 + installation: *800 + organization: *801 + pusher_type: *808 + ref: *809 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *801 + repository: *802 sender: *4 required: - ref @@ -130932,11 +131036,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131016,11 +131120,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131101,11 +131205,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131186,11 +131290,11 @@ x-webhooks: type: string enum: - created - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131269,11 +131373,11 @@ x-webhooks: type: string enum: - dismissed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131352,11 +131456,11 @@ x-webhooks: type: string enum: - fixed - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131436,11 +131540,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131519,11 +131623,11 @@ x-webhooks: type: string enum: - reopened - alert: *515 - installation: *799 - organization: *800 - enterprise: *798 - repository: *801 + alert: *516 + installation: *800 + organization: *801 + enterprise: *799 + repository: *802 sender: *4 required: - action @@ -131600,9 +131704,9 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - key: &809 + enterprise: *799 + installation: *800 + key: &810 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -131638,8 +131742,8 @@ x-webhooks: - verified - created_at - read_only - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -131716,11 +131820,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - key: *809 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + key: *810 + organization: *801 + repository: *802 sender: *4 required: - action @@ -132276,12 +132380,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: &815 + workflow: &816 title: Workflow type: object nullable: true @@ -133022,15 +133126,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *810 - required: *811 + properties: *811 + required: *812 nullable: true pull_requests: type: array - items: *631 - repository: *801 - organization: *800 - installation: *799 + items: *632 + repository: *802 + organization: *801 + installation: *800 sender: *4 responses: '200': @@ -133101,7 +133205,7 @@ x-webhooks: type: string enum: - approved - approver: &812 + approver: &813 type: object properties: avatar_url: @@ -133144,11 +133248,11 @@ x-webhooks: type: string comment: type: string - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - reviewers: &813 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + reviewers: &814 type: array items: type: object @@ -133227,7 +133331,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &814 + workflow_job_run: &815 type: object properties: conclusion: @@ -133958,18 +134062,18 @@ x-webhooks: type: string enum: - rejected - approver: *812 + approver: *813 comment: type: string - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - reviewers: *813 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + reviewers: *814 sender: *4 since: type: string - workflow_job_run: *814 + workflow_job_run: *815 workflow_job_runs: type: array items: @@ -134673,13 +134777,13 @@ x-webhooks: type: string enum: - requested - enterprise: *798 + enterprise: *799 environment: type: string - installation: *799 - organization: *800 - repository: *801 - requestor: &820 + installation: *800 + organization: *801 + repository: *802 + requestor: &821 title: User type: object nullable: true @@ -136568,12 +136672,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Deployment Workflow Run type: object @@ -137253,7 +137357,7 @@ x-webhooks: type: string enum: - answered - answer: &818 + answer: &819 type: object properties: author_association: @@ -137410,11 +137514,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -137541,11 +137645,11 @@ x-webhooks: - from required: - category - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -137628,11 +137732,11 @@ x-webhooks: type: string enum: - closed - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -137714,7 +137818,7 @@ x-webhooks: type: string enum: - created - comment: &817 + comment: &818 type: object properties: author_association: @@ -137871,11 +137975,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -137958,12 +138062,12 @@ x-webhooks: type: string enum: - deleted - comment: *817 - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + comment: *818 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138058,12 +138162,12 @@ x-webhooks: - from required: - body - comment: *817 - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + comment: *818 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138147,11 +138251,11 @@ x-webhooks: type: string enum: - created - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138233,11 +138337,11 @@ x-webhooks: type: string enum: - deleted - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138337,11 +138441,11 @@ x-webhooks: type: string required: - from - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138423,10 +138527,10 @@ x-webhooks: type: string enum: - labeled - discussion: *816 - enterprise: *798 - installation: *799 - label: &819 + discussion: *817 + enterprise: *799 + installation: *800 + label: &820 title: Label type: object properties: @@ -138458,8 +138562,8 @@ x-webhooks: - color - default - description - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138542,11 +138646,11 @@ x-webhooks: type: string enum: - locked - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138628,11 +138732,11 @@ x-webhooks: type: string enum: - pinned - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138714,11 +138818,11 @@ x-webhooks: type: string enum: - reopened - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138803,16 +138907,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *816 - new_repository: *801 + new_discussion: *817 + new_repository: *802 required: - new_discussion - new_repository - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138895,10 +138999,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *816 - old_answer: *818 - organization: *800 - repository: *801 + discussion: *817 + old_answer: *819 + organization: *801 + repository: *802 sender: *4 required: - action @@ -138980,12 +139084,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *816 - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139068,11 +139172,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139154,11 +139258,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *816 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + discussion: *817 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -139231,7 +139335,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *798 + enterprise: *799 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -139891,9 +139995,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - forkee @@ -140039,9 +140143,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pages: description: The pages that were updated. type: array @@ -140078,7 +140182,7 @@ x-webhooks: - action - sha - html_url - repository: *801 + repository: *802 sender: *4 required: - pages @@ -140154,10 +140258,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: &821 + organization: *801 + repositories: &822 description: An array of repository objects that the installation can access. type: array @@ -140183,8 +140287,8 @@ x-webhooks: - name - full_name - private - repository: *801 - requester: *820 + repository: *802 + requester: *821 sender: *4 required: - action @@ -140259,11 +140363,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -140339,11 +140443,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -140419,10 +140523,10 @@ x-webhooks: type: string enum: - added - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories_added: &822 + organization: *801 + repositories_added: &823 description: An array of repository objects, which were added to the installation. type: array @@ -140468,15 +140572,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *801 - repository_selection: &823 + repository: *802 + repository_selection: &824 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *820 + requester: *821 sender: *4 required: - action @@ -140555,10 +140659,10 @@ x-webhooks: type: string enum: - removed - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories_added: *822 + organization: *801 + repositories_added: *823 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -140585,9 +140689,9 @@ x-webhooks: - name - full_name - private - repository: *801 - repository_selection: *823 - requester: *820 + repository: *802 + repository_selection: *824 + requester: *821 sender: *4 required: - action @@ -140666,11 +140770,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -140848,10 +140952,10 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 target_type: type: string @@ -140930,11 +141034,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *798 + enterprise: *799 installation: *22 - organization: *800 - repositories: *821 - repository: *801 + organization: *801 + repositories: *822 + repository: *802 requester: nullable: true sender: *4 @@ -141108,15 +141212,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *594 - required: *595 + properties: *595 + required: *596 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *596 - required: *597 + properties: *597 + required: *598 nullable: true user: title: User @@ -141201,8 +141305,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -141991,8 +142095,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -142008,7 +142112,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -142341,8 +142445,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -142422,7 +142526,7 @@ x-webhooks: type: string enum: - deleted - comment: &824 + comment: &825 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -142579,15 +142683,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *594 - required: *595 + properties: *595 + required: *596 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *596 - required: *597 + properties: *597 + required: *598 nullable: true required: - url @@ -142602,8 +142706,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143388,8 +143492,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143405,7 +143509,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -143740,8 +143844,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -143821,7 +143925,7 @@ x-webhooks: type: string enum: - edited - changes: &853 + changes: &854 description: The changes to the comment. type: object properties: @@ -143833,9 +143937,9 @@ x-webhooks: type: string required: - from - comment: *824 - enterprise: *798 - installation: *799 + comment: *825 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144623,8 +144727,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144640,7 +144744,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -144973,8 +145077,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -145055,9 +145159,9 @@ x-webhooks: type: string enum: - pinned - comment: *824 - enterprise: *798 - installation: *799 + comment: *825 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -145847,8 +145951,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -145864,7 +145968,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -146199,8 +146303,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -146280,9 +146384,9 @@ x-webhooks: type: string enum: - unpinned - comment: *824 - enterprise: *798 - installation: *799 + comment: *825 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -147072,8 +147176,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147089,7 +147193,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -147424,8 +147528,8 @@ x-webhooks: - state - locked - assignee - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -147514,9 +147618,9 @@ x-webhooks: type: number blocking_issue: *89 blocking_issue_repo: *83 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -147605,9 +147709,9 @@ x-webhooks: type: number blocking_issue: *89 blocking_issue_repo: *83 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -147695,9 +147799,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -147786,9 +147890,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -147868,10 +147972,10 @@ x-webhooks: type: string enum: - assigned - assignee: *820 - enterprise: *798 - installation: *799 - issue: &825 + assignee: *821 + enterprise: *799 + installation: *800 + issue: &826 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -148663,11 +148767,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148683,7 +148787,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -148784,8 +148888,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -148865,8 +148969,8 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -149663,11 +149767,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -149683,7 +149787,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -149919,8 +150023,8 @@ x-webhooks: required: - state - closed_at - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -149999,8 +150103,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -150788,11 +150892,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150808,7 +150912,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -150908,8 +151012,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -150988,8 +151092,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -151799,11 +151903,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151819,7 +151923,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -151898,7 +152002,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &826 + milestone: &827 title: Milestone description: A collection of related issues and pull requests. type: object @@ -152036,8 +152140,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -152136,8 +152240,8 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152929,11 +153033,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152946,7 +153050,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *258 + type: *259 title: description: Title of the issue type: string @@ -153050,9 +153154,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *819 - organization: *800 - repository: *801 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -153132,9 +153236,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *798 - installation: *799 - issue: *825 + enterprise: *799 + installation: *800 + issue: *826 issue_field: type: object description: The issue field whose value was set or updated on the @@ -153288,8 +153392,8 @@ x-webhooks: - id required: - from - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -153369,9 +153473,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *798 - installation: *799 - issue: *825 + enterprise: *799 + installation: *800 + issue: *826 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -153452,8 +153556,8 @@ x-webhooks: nullable: true required: - id - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -153533,8 +153637,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154325,11 +154429,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154342,7 +154446,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *258 + type: *259 title: description: Title of the issue type: string @@ -154446,9 +154550,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *819 - organization: *800 - repository: *801 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -154528,8 +154632,8 @@ x-webhooks: type: string enum: - locked - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155344,11 +155448,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155361,7 +155465,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *258 + type: *259 title: description: Title of the issue type: string @@ -155442,8 +155546,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -155522,8 +155626,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156332,11 +156436,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156352,7 +156456,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -156430,9 +156534,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *826 - organization: *800 - repository: *801 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -157295,11 +157399,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157400,7 +157504,7 @@ x-webhooks: required: - login - id - type: *258 + type: *259 required: - id - number @@ -157880,8 +157984,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -158665,11 +158769,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158685,7 +158789,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -158793,8 +158897,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -158874,9 +158978,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *798 - installation: *799 - issue: &827 + enterprise: *799 + installation: *800 + issue: &828 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -159662,11 +159766,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -159682,7 +159786,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -159782,8 +159886,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -159862,8 +159966,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -160676,11 +160780,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160774,9 +160878,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *258 - organization: *800 - repository: *801 + type: *259 + organization: *801 + repository: *802 sender: *4 required: - action @@ -161645,11 +161749,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161665,7 +161769,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -162244,11 +162348,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *798 - installation: *799 - issue: *827 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *828 + organization: *801 + repository: *802 sender: *4 required: - action @@ -162328,12 +162432,12 @@ x-webhooks: type: string enum: - typed - enterprise: *798 - installation: *799 - issue: *825 - type: *258 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + type: *259 + organization: *801 + repository: *802 sender: *4 required: - action @@ -162414,7 +162518,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &856 + assignee: &857 title: User type: object nullable: true @@ -162484,11 +162588,11 @@ x-webhooks: required: - login - id - enterprise: *798 - installation: *799 - issue: *825 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + organization: *801 + repository: *802 sender: *4 required: - action @@ -162567,12 +162671,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *798 - installation: *799 - issue: *825 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -162652,8 +162756,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -163466,11 +163570,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *731 - issue_dependencies_summary: *732 + sub_issues_summary: *732 + issue_dependencies_summary: *733 issue_field_values: type: array - items: *576 + items: *577 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163486,7 +163590,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *258 + type: *259 updated_at: type: string format: date-time @@ -163564,8 +163668,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -163645,11 +163749,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *798 - installation: *799 - issue: *827 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *828 + organization: *801 + repository: *802 sender: *4 required: - action @@ -163728,12 +163832,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *798 - installation: *799 - issue: *825 - type: *258 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + issue: *826 + type: *259 + organization: *801 + repository: *802 sender: *4 required: - action @@ -163813,11 +163917,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -163895,11 +163999,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164009,11 +164113,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - label: *819 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + label: *820 + organization: *801 + repository: *802 sender: *4 required: - action @@ -164095,9 +164199,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: &828 + enterprise: *799 + installation: *800 + marketplace_purchase: &829 title: Marketplace Purchase type: object required: @@ -164180,8 +164284,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *800 - previous_marketplace_purchase: &829 + organization: *801 + previous_marketplace_purchase: &830 title: Marketplace Purchase type: object properties: @@ -164261,7 +164365,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *801 + repository: *802 sender: *4 required: - action @@ -164341,10 +164445,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: *828 - organization: *800 + enterprise: *799 + installation: *800 + marketplace_purchase: *829 + organization: *801 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -164427,7 +164531,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *801 + repository: *802 sender: *4 required: - action @@ -164509,10 +164613,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: *828 - organization: *800 + enterprise: *799 + installation: *800 + marketplace_purchase: *829 + organization: *801 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -164594,7 +164698,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *801 + repository: *802 sender: *4 required: - action @@ -164675,8 +164779,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 marketplace_purchase: title: Marketplace Purchase type: object @@ -164758,9 +164862,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *800 - previous_marketplace_purchase: *829 - repository: *801 + organization: *801 + previous_marketplace_purchase: *830 + repository: *802 sender: *4 required: - action @@ -164840,12 +164944,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *798 - installation: *799 - marketplace_purchase: *828 - organization: *800 - previous_marketplace_purchase: *829 - repository: *801 + enterprise: *799 + installation: *800 + marketplace_purchase: *829 + organization: *801 + previous_marketplace_purchase: *830 + repository: *802 sender: *4 required: - action @@ -164947,11 +165051,11 @@ x-webhooks: type: string required: - to - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165051,11 +165155,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165134,11 +165238,11 @@ x-webhooks: type: string enum: - removed - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165216,11 +165320,11 @@ x-webhooks: type: string enum: - added - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 scope: description: The scope of the membership. Currently, can only be `team`. @@ -165296,7 +165400,7 @@ x-webhooks: required: - login - id - team: &830 + team: &831 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -165519,11 +165623,11 @@ x-webhooks: type: string enum: - removed - enterprise: *798 - installation: *799 - member: *820 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + member: *821 + organization: *801 + repository: *802 scope: description: The scope of the membership. Currently, can only be `team`. @@ -165600,7 +165704,7 @@ x-webhooks: required: - login - id - team: *830 + team: *831 required: - action - scope @@ -165682,8 +165786,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *799 - merge_group: &832 + installation: *800 + merge_group: &833 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -165702,15 +165806,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *831 + head_commit: *832 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165796,10 +165900,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *799 - merge_group: *832 - organization: *800 - repository: *801 + installation: *800 + merge_group: *833 + organization: *801 + repository: *802 sender: *4 required: - action @@ -165872,7 +165976,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 + enterprise: *799 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -165981,16 +166085,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *799 - organization: *800 + installation: *800 + organization: *801 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -166071,11 +166175,11 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 - milestone: *826 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166154,9 +166258,9 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - milestone: &835 + enterprise: *799 + installation: *800 + milestone: &836 title: Milestone description: A collection of related issues and pull requests. type: object @@ -166293,8 +166397,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166373,11 +166477,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - milestone: *826 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166487,11 +166591,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - milestone: *826 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *827 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166571,11 +166675,11 @@ x-webhooks: type: string enum: - opened - enterprise: *798 - installation: *799 - milestone: *835 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + milestone: *836 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166654,11 +166758,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *820 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + blocked_user: *821 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166737,11 +166841,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *820 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + blocked_user: *821 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -166820,9 +166924,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - membership: &836 + enterprise: *799 + installation: *800 + membership: &837 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -166929,8 +167033,8 @@ x-webhooks: - role - organization_url - user - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167008,11 +167112,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *798 - installation: *799 - membership: *836 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + membership: *837 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167091,8 +167195,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -167208,10 +167312,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 - user: *820 + user: *821 required: - action - invitation @@ -167289,11 +167393,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *798 - installation: *799 - membership: *836 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + membership: *837 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167380,11 +167484,11 @@ x-webhooks: properties: from: type: string - enterprise: *798 - installation: *799 - membership: *836 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + membership: *837 + organization: *801 + repository: *802 sender: *4 required: - action @@ -167461,9 +167565,9 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 package: description: Information about the package. type: object @@ -167962,7 +168066,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &837 + items: &838 title: Ruby Gems metadata type: object properties: @@ -168057,7 +168161,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -168133,9 +168237,9 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 package: description: Information about the package. type: object @@ -168488,7 +168592,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 source_url: type: string format: uri @@ -168558,7 +168662,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -168734,12 +168838,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *798 + enterprise: *799 id: type: integer - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - id @@ -168816,7 +168920,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &838 + personal_access_token_request: &839 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -168962,10 +169066,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *798 - organization: *800 + enterprise: *799 + organization: *801 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169042,11 +169146,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *838 - enterprise: *798 - organization: *800 + personal_access_token_request: *839 + enterprise: *799 + organization: *801 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169122,11 +169226,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *838 - enterprise: *798 - organization: *800 + personal_access_token_request: *839 + enterprise: *799 + organization: *801 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169201,11 +169305,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *838 - organization: *800 - enterprise: *798 + personal_access_token_request: *839 + organization: *801 + enterprise: *799 sender: *4 - installation: *799 + installation: *800 required: - action - personal_access_token_request @@ -169310,7 +169414,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *839 + last_response: *840 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -169342,8 +169446,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 zen: description: Random string of GitHub zen. @@ -169588,10 +169692,10 @@ x-webhooks: - from required: - note - enterprise: *798 - installation: *799 - organization: *800 - project_card: &840 + enterprise: *799 + installation: *800 + organization: *801 + project_card: &841 title: Project Card type: object properties: @@ -169710,7 +169814,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *801 + repository: *802 sender: *4 required: - action @@ -169791,11 +169895,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - project_card: *840 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_card: *841 + repository: *802 sender: *4 required: - action @@ -169875,9 +169979,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 project_card: title: Project Card type: object @@ -170005,8 +170109,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -170100,11 +170204,11 @@ x-webhooks: - from required: - note - enterprise: *798 - installation: *799 - organization: *800 - project_card: *840 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_card: *841 + repository: *802 sender: *4 required: - action @@ -170198,9 +170302,9 @@ x-webhooks: - from required: - column_id - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 project_card: allOf: - title: Project Card @@ -170390,7 +170494,7 @@ x-webhooks: type: string required: - after_id - repository: *801 + repository: *802 sender: *4 required: - action @@ -170470,10 +170574,10 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 - organization: *800 - project: &842 + enterprise: *799 + installation: *800 + organization: *801 + project: &843 title: Project type: object properties: @@ -170597,7 +170701,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *801 + repository: *802 sender: *4 required: - action @@ -170677,10 +170781,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - project_column: &841 + enterprise: *799 + installation: *800 + organization: *801 + project_column: &842 title: Project Column type: object properties: @@ -170719,7 +170823,7 @@ x-webhooks: - name - created_at - updated_at - repository: *801 + repository: *802 sender: *4 required: - action @@ -170798,18 +170902,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - project_column: *841 + enterprise: *799 + installation: *800 + organization: *801 + project_column: *842 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -170899,11 +171003,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - project_column: *841 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_column: *842 + repository: *802 sender: *4 required: - action @@ -170983,11 +171087,11 @@ x-webhooks: type: string enum: - moved - enterprise: *798 - installation: *799 - organization: *800 - project_column: *841 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project_column: *842 + repository: *802 sender: *4 required: - action @@ -171067,11 +171171,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - project: *842 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 + repository: *802 sender: *4 required: - action @@ -171151,18 +171255,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - project: *842 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *833 - required: *834 + properties: *834 + required: *835 nullable: true sender: *4 required: @@ -171264,11 +171368,11 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - project: *842 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 + repository: *802 sender: *4 required: - action @@ -171347,11 +171451,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *798 - installation: *799 - organization: *800 - project: *842 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + project: *843 + repository: *802 sender: *4 required: - action @@ -171432,9 +171536,9 @@ x-webhooks: type: string enum: - closed - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -171515,9 +171619,9 @@ x-webhooks: type: string enum: - created - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -171598,9 +171702,9 @@ x-webhooks: type: string enum: - deleted - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -171717,9 +171821,9 @@ x-webhooks: type: string to: type: string - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -171802,7 +171906,7 @@ x-webhooks: type: string enum: - archived - changes: &846 + changes: &847 type: object properties: archived_at: @@ -171816,9 +171920,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *799 - organization: *800 - projects_v2_item: &843 + installation: *800 + organization: *801 + projects_v2_item: &844 title: Projects v2 Item description: An item belonging to a project type: object @@ -171836,7 +171940,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *299 + content_type: *300 creator: *4 created_at: type: string @@ -171953,9 +172057,9 @@ x-webhooks: nullable: true to: type: string - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172037,9 +172141,9 @@ x-webhooks: type: string enum: - created - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172120,9 +172224,9 @@ x-webhooks: type: string enum: - deleted - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172228,7 +172332,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &844 + - &845 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -172250,7 +172354,7 @@ x-webhooks: required: - id - name - - &845 + - &846 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -172284,8 +172388,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *844 - *845 + - *846 required: - field_value - type: object @@ -172301,9 +172405,9 @@ x-webhooks: nullable: true required: - body - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172398,9 +172502,9 @@ x-webhooks: to: type: string nullable: true - installation: *799 - organization: *800 - projects_v2_item: *843 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172483,10 +172587,10 @@ x-webhooks: type: string enum: - restored - changes: *846 - installation: *799 - organization: *800 - projects_v2_item: *843 + changes: *847 + installation: *800 + organization: *801 + projects_v2_item: *844 sender: *4 required: - action @@ -172568,9 +172672,9 @@ x-webhooks: type: string enum: - reopened - installation: *799 - organization: *800 - projects_v2: *292 + installation: *800 + organization: *801 + projects_v2: *293 sender: *4 required: - action @@ -172651,14 +172755,14 @@ x-webhooks: type: string enum: - created - installation: *799 - organization: *800 - projects_v2_status_update: &849 + installation: *800 + organization: *801 + projects_v2_status_update: &850 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *847 - required: *848 + properties: *848 + required: *849 sender: *4 required: - action @@ -172739,9 +172843,9 @@ x-webhooks: type: string enum: - deleted - installation: *799 - organization: *800 - projects_v2_status_update: *849 + installation: *800 + organization: *801 + projects_v2_status_update: *850 sender: *4 required: - action @@ -172877,9 +172981,9 @@ x-webhooks: type: string format: date nullable: true - installation: *799 - organization: *800 - projects_v2_status_update: *849 + installation: *800 + organization: *801 + projects_v2_status_update: *850 sender: *4 required: - action @@ -172950,10 +173054,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - repository @@ -173030,13 +173134,13 @@ x-webhooks: type: string enum: - assigned - assignee: *820 - enterprise: *798 - installation: *799 - number: &850 + assignee: *821 + enterprise: *799 + installation: *800 + number: &851 description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -175198,7 +175302,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -175324,7 +175428,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -175406,11 +175510,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -177565,7 +177669,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -177693,7 +177797,7 @@ x-webhooks: - draft reason: type: string - repository: *801 + repository: *802 sender: *4 required: - action @@ -177775,11 +177879,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -179934,7 +180038,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -180062,7 +180166,7 @@ x-webhooks: - draft reason: type: string - repository: *801 + repository: *802 sender: *4 required: - action @@ -180144,13 +180248,13 @@ x-webhooks: type: string enum: - closed - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: &851 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: &852 allOf: - - *631 + - *632 - type: object properties: allow_auto_merge: @@ -180212,7 +180316,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *801 + repository: *802 sender: *4 required: - action @@ -180293,12 +180397,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -180378,11 +180482,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *798 - milestone: *614 - number: *850 - organization: *800 - pull_request: &852 + enterprise: *799 + milestone: *615 + number: *851 + organization: *801 + pull_request: &853 title: Pull Request type: object properties: @@ -182538,7 +182642,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -182664,7 +182768,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -182743,11 +182847,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -184907,7 +185011,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -185048,7 +185152,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *801 + repository: *802 sender: *4 required: - action @@ -185172,12 +185276,12 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -185257,11 +185361,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -187421,7 +187525,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -187547,7 +187651,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -187627,11 +187731,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *798 - installation: *799 - label: *819 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + label: *820 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -189792,7 +189896,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -189918,7 +190022,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -189999,10 +190103,10 @@ x-webhooks: type: string enum: - locked - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -192161,7 +192265,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -192287,7 +192391,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -192367,12 +192471,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *798 - milestone: *614 - number: *850 - organization: *800 - pull_request: *852 - repository: *801 + enterprise: *799 + milestone: *615 + number: *851 + organization: *801 + pull_request: *853 + repository: *802 sender: *4 required: - action @@ -192451,12 +192555,12 @@ x-webhooks: type: string enum: - opened - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -192537,12 +192641,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -192622,12 +192726,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *798 - installation: *799 - number: *850 - organization: *800 - pull_request: *851 - repository: *801 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 + pull_request: *852 + repository: *802 sender: *4 required: - action @@ -192993,9 +193097,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: type: object properties: @@ -195049,7 +195153,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -195170,7 +195274,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *801 + repository: *802 sender: *4 required: - action @@ -195250,7 +195354,7 @@ x-webhooks: type: string enum: - deleted - comment: &854 + comment: &855 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -195535,9 +195639,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: type: object properties: @@ -197579,7 +197683,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -197700,7 +197804,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *801 + repository: *802 sender: *4 required: - action @@ -197780,11 +197884,11 @@ x-webhooks: type: string enum: - edited - changes: *853 - comment: *854 - enterprise: *798 - installation: *799 - organization: *800 + changes: *854 + comment: *855 + enterprise: *799 + installation: *800 + organization: *801 pull_request: type: object properties: @@ -199829,7 +199933,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -199950,7 +200054,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *801 + repository: *802 sender: *4 required: - action @@ -200031,9 +200135,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -202088,7 +202192,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -202211,7 +202315,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 + repository: *802 review: description: The review that was affected. type: object @@ -202458,9 +202562,9 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -204510,8 +204614,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 - review: &855 + repository: *802 + review: &856 description: The review that was affected. type: object properties: @@ -204744,12 +204848,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -206911,7 +207015,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -207037,7 +207141,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_reviewer: title: User type: object @@ -207121,12 +207225,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -209295,7 +209399,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -209421,7 +209525,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_team: title: Team description: Groups of organization members that gives permissions @@ -209613,12 +209717,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -211781,7 +211885,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -211908,7 +212012,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_reviewer: title: User type: object @@ -211993,12 +212097,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *798 - installation: *799 + enterprise: *799 + installation: *800 number: description: The pull request number. type: integer - organization: *800 + organization: *801 pull_request: title: Pull Request type: object @@ -214152,7 +214256,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. @@ -214279,7 +214383,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 requested_team: title: Team description: Groups of organization members that gives permissions @@ -214460,9 +214564,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -216519,7 +216623,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -216642,8 +216746,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 - review: *855 + repository: *802 + review: *856 sender: *4 required: - action @@ -216723,9 +216827,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -218691,7 +218795,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -218814,7 +218918,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 + repository: *802 sender: *4 thread: type: object @@ -219201,9 +219305,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 pull_request: title: Simple Pull Request type: object @@ -221156,7 +221260,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: type: string enum: @@ -221278,7 +221382,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *801 + repository: *802 sender: *4 thread: type: object @@ -221662,11 +221766,11 @@ x-webhooks: type: string enum: - stacked - enterprise: *798 - installation: *799 - stack: *628 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + stack: *629 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -223827,7 +223931,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -223953,7 +224057,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -224039,10 +224143,10 @@ x-webhooks: type: string before: type: string - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -226192,7 +226296,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -226318,7 +226422,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -226400,11 +226504,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *856 - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + assignee: *857 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -228566,7 +228670,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -228692,7 +228796,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -228771,11 +228875,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *798 - installation: *799 - label: *819 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + label: *820 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -230927,7 +231031,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -231053,7 +231157,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -231134,10 +231238,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *798 - installation: *799 - number: *850 - organization: *800 + enterprise: *799 + installation: *800 + number: *851 + organization: *801 pull_request: title: Pull Request type: object @@ -233282,7 +233386,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *628 + stack: *629 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -233407,7 +233511,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *801 + repository: *802 sender: *4 required: - action @@ -233607,7 +233711,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *798 + enterprise: *799 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -233699,8 +233803,8 @@ x-webhooks: - url - author - committer - installation: *799 - organization: *800 + installation: *800 + organization: *801 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -234286,9 +234390,9 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 registry_package: type: object properties: @@ -234734,7 +234838,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -234788,7 +234892,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -234866,9 +234970,9 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 registry_package: type: object properties: @@ -235176,7 +235280,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *837 + items: *838 summary: type: string tag_name: @@ -235225,7 +235329,7 @@ x-webhooks: - owner - package_version - registry - repository: *801 + repository: *802 sender: *4 required: - action @@ -235302,10 +235406,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - release: &857 + enterprise: *799 + installation: *800 + organization: *801 + release: &858 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -235623,7 +235727,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *801 + repository: *802 sender: *4 required: - action @@ -235700,11 +235804,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - release: *857 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *858 + repository: *802 sender: *4 required: - action @@ -235821,11 +235925,11 @@ x-webhooks: type: boolean required: - to - enterprise: *798 - installation: *799 - organization: *800 - release: *857 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *858 + repository: *802 sender: *4 required: - action @@ -235903,9 +236007,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -236227,7 +236331,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *801 + repository: *802 sender: *4 required: - action @@ -236303,10 +236407,10 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 - release: &858 + enterprise: *799 + installation: *800 + organization: *801 + release: &859 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -236625,7 +236729,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *801 + repository: *802 sender: *4 required: - action @@ -236701,11 +236805,11 @@ x-webhooks: type: string enum: - released - enterprise: *798 - installation: *799 - organization: *800 - release: *857 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *858 + repository: *802 sender: *4 required: - action @@ -236781,11 +236885,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *798 - installation: *799 - organization: *800 - release: *858 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + release: *859 + repository: *802 sender: *4 required: - action @@ -236861,11 +236965,11 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_advisory: *717 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_advisory: *718 sender: *4 required: - action @@ -236941,11 +237045,11 @@ x-webhooks: type: string enum: - reported - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_advisory: *717 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_advisory: *718 sender: *4 required: - action @@ -237021,10 +237125,10 @@ x-webhooks: type: string enum: - archived - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237101,10 +237205,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237182,10 +237286,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237269,10 +237373,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237384,10 +237488,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237459,10 +237563,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 status: type: string @@ -237543,10 +237647,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237623,10 +237727,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237720,10 +237824,10 @@ x-webhooks: - name required: - repository - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -237803,11 +237907,11 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_ruleset: *340 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_ruleset: *341 sender: *4 required: - action @@ -237885,11 +237989,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_ruleset: *340 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_ruleset: *341 sender: *4 required: - action @@ -237967,11 +238071,11 @@ x-webhooks: type: string enum: - edited - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - repository_ruleset: *340 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + repository_ruleset: *341 changes: type: object properties: @@ -237990,16 +238094,16 @@ x-webhooks: properties: added: type: array - items: *314 + items: *315 deleted: type: array - items: *314 + items: *315 updated: type: array items: type: object properties: - condition: *314 + condition: *315 changes: type: object properties: @@ -238032,16 +238136,16 @@ x-webhooks: properties: added: type: array - items: *653 + items: *654 deleted: type: array - items: *653 + items: *654 updated: type: array items: type: object properties: - rule: *653 + rule: *654 changes: type: object properties: @@ -238275,10 +238379,10 @@ x-webhooks: - from required: - owner - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238356,10 +238460,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238437,7 +238541,7 @@ x-webhooks: type: string enum: - create - alert: &859 + alert: &860 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -238559,10 +238663,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238768,10 +238872,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -238849,11 +238953,11 @@ x-webhooks: type: string enum: - reopen - alert: *859 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *860 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239052,10 +239156,10 @@ x-webhooks: enum: - fixed - open - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239133,7 +239237,7 @@ x-webhooks: type: string enum: - assigned - alert: &861 + alert: &862 type: object properties: number: *189 @@ -239283,12 +239387,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *860 + metadata: *861 assignee: *4 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239366,11 +239470,11 @@ x-webhooks: type: string enum: - created - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239451,11 +239555,11 @@ x-webhooks: type: string enum: - created - alert: *861 - installation: *799 - location: *862 - organization: *800 - repository: *801 + alert: *862 + installation: *800 + location: *863 + organization: *801 + repository: *802 sender: *4 required: - location @@ -239693,11 +239797,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239774,11 +239878,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239855,11 +239959,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -239937,11 +240041,11 @@ x-webhooks: type: string enum: - reopened - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240019,11 +240123,11 @@ x-webhooks: type: string enum: - resolved - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240101,12 +240205,12 @@ x-webhooks: type: string enum: - unassigned - alert: *861 + alert: *862 assignee: *4 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240184,11 +240288,11 @@ x-webhooks: type: string enum: - validated - alert: *861 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + alert: *862 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -240314,10 +240418,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *801 - enterprise: *798 - installation: *799 - organization: *800 + repository: *802 + enterprise: *799 + installation: *800 + organization: *801 sender: *4 required: - action @@ -240395,11 +240499,11 @@ x-webhooks: type: string enum: - published - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - security_advisory: &863 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + security_advisory: &864 description: The details of the security advisory, including summary, description, and severity. type: object @@ -240570,11 +240674,11 @@ x-webhooks: type: string enum: - updated - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 - security_advisory: *863 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 + security_advisory: *864 sender: *4 required: - action @@ -240647,10 +240751,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -240822,11 +240926,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *313 - enterprise: *798 - installation: *799 - organization: *800 - repository: *360 + security_and_analysis: *314 + enterprise: *799 + installation: *800 + organization: *801 + repository: *361 sender: *4 required: - changes @@ -240904,12 +241008,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: &864 + sponsorship: &865 type: object properties: created_at: @@ -241210,12 +241314,12 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - sponsorship @@ -241303,12 +241407,12 @@ x-webhooks: type: string required: - from - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - changes @@ -241385,17 +241489,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &865 + effective_date: &866 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: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - sponsorship @@ -241469,7 +241573,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &866 + changes: &867 type: object properties: tier: @@ -241513,13 +241617,13 @@ x-webhooks: - from required: - tier - effective_date: *865 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + effective_date: *866 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - changes @@ -241596,13 +241700,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *866 - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + changes: *867 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - sponsorship: *864 + sponsorship: *865 required: - action - changes @@ -241676,10 +241780,10 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -241762,10 +241866,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -242185,15 +242289,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *798 + enterprise: *799 id: description: The unique identifier of the status. type: integer - installation: *799 + installation: *800 name: type: string - organization: *800 - repository: *801 + organization: *801 + repository: *802 sender: *4 sha: description: The Commit SHA. @@ -242308,9 +242412,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -242399,9 +242503,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -242490,9 +242594,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -242581,9 +242685,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *89 - installation: *799 - organization: *800 - repository: *801 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -242659,12 +242763,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - team: &867 + team: &868 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -242887,9 +242991,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -243347,7 +243451,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -243423,9 +243527,9 @@ x-webhooks: type: string enum: - created - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -243883,7 +243987,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -243960,9 +244064,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -244420,7 +244524,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -244564,9 +244668,9 @@ x-webhooks: - from required: - permissions - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -245024,7 +245128,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - changes @@ -245102,9 +245206,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *798 - installation: *799 - organization: *800 + enterprise: *799 + installation: *800 + organization: *801 repository: title: Repository description: A git repository @@ -245562,7 +245666,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *867 + team: *868 required: - action - team @@ -245638,10 +245742,10 @@ x-webhooks: type: string enum: - started - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 required: - action @@ -245714,16 +245818,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *798 + enterprise: *799 inputs: type: object nullable: true additionalProperties: true - installation: *799 - organization: *800 + installation: *800 + organization: *801 ref: type: string - repository: *801 + repository: *802 sender: *4 workflow: type: string @@ -245805,10 +245909,10 @@ x-webhooks: type: string enum: - completed - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: allOf: @@ -246045,7 +246149,7 @@ x-webhooks: type: string required: - conclusion - deployment: *522 + deployment: *523 required: - action - repository @@ -246124,10 +246228,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: allOf: @@ -246387,7 +246491,7 @@ x-webhooks: required: - status - steps - deployment: *522 + deployment: *523 required: - action - repository @@ -246466,10 +246570,10 @@ x-webhooks: type: string enum: - queued - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: type: object @@ -246604,7 +246708,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *522 + deployment: *523 required: - action - repository @@ -246683,10 +246787,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 workflow_job: type: object @@ -246822,7 +246926,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *522 + deployment: *523 required: - action - repository @@ -246902,12 +247006,12 @@ x-webhooks: type: string enum: - completed - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Workflow Run type: object @@ -247906,12 +248010,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Workflow Run type: object @@ -248895,12 +248999,12 @@ x-webhooks: type: string enum: - requested - enterprise: *798 - installation: *799 - organization: *800 - repository: *801 + enterprise: *799 + installation: *800 + organization: *801 + repository: *802 sender: *4 - workflow: *815 + workflow: *816 workflow_run: title: Workflow Run type: object diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.json b/descriptions/api.github.com/dereferenced/api.github.com.deref.json index 028a5d2e71..5cbd524a06 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.json @@ -27233,6 +27233,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -28614,7 +28622,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -28839,7 +28848,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -77976,6 +77986,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -131405,6 +131419,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -132786,7 +132808,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -133011,7 +133034,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -210393,6 +210417,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -363874,6 +363949,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -364835,7 +364918,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -364993,7 +365077,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -366208,7 +366293,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -367439,7 +367525,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -715602,6 +715689,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ diff --git a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml index 3fd2c7e756..033ffbf47b 100644 --- a/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions/api.github.com/dereferenced/api.github.com.deref.yaml @@ -888,7 +888,7 @@ paths: - subscriptions_url - type - url - type: &350 + type: &351 type: string description: The type of credit the user is receiving. enum: @@ -1081,7 +1081,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &722 + - &723 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4310,7 +4310,7 @@ paths: schema: type: integer default: 30 - - &233 + - &234 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 @@ -4319,7 +4319,7 @@ paths: required: false schema: type: string - - &234 + - &235 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4339,7 +4339,7 @@ paths: application/json: schema: type: array - items: &235 + items: &236 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4419,7 +4419,7 @@ paths: - installation_id - repository_id examples: - default: &236 + default: &237 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4547,7 +4547,7 @@ paths: description: Response content: application/json: - schema: &237 + schema: &238 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4661,7 +4661,7 @@ paths: - request - response examples: - default: &238 + default: &239 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5658,7 +5658,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &312 + properties: &313 id: description: Unique identifier of the repository example: 42 @@ -6109,7 +6109,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &313 + required: &314 - archive_url - assignees_url - blobs_url @@ -6183,7 +6183,7 @@ paths: - watchers_count - created_at - updated_at - x-github-breaking-changes: &314 + x-github-breaking-changes: &315 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -12387,7 +12387,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 - - &513 + - &514 name: has in: query description: |- @@ -12421,6 +12421,16 @@ paths: - development - runtime - &221 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &222 name: sort in: query description: |- @@ -12446,7 +12456,7 @@ paths: application/json: schema: type: array - items: &222 + items: &223 type: object description: A Dependabot alert. properties: @@ -12513,7 +12523,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &514 + security_advisory: &515 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -12801,14 +12811,14 @@ paths: format: date-time readOnly: true nullable: true - auto_dismissed_at: &515 + auto_dismissed_at: &516 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &516 + dismissal_request: &517 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -12870,7 +12880,7 @@ paths: - repository additionalProperties: false examples: - default: &223 + default: &224 value: - number: 2 state: dismissed @@ -12880,6 +12890,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -13066,6 +13077,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -13255,7 +13267,7 @@ paths: description: Response content: application/json: - schema: &224 + schema: &225 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -13281,7 +13293,7 @@ paths: nullable: true additionalProperties: false examples: - default: &225 + default: &226 value: default_level: public accessible_repositories: @@ -14496,7 +14508,7 @@ paths: properties: action: type: string - discussion: &819 + discussion: &820 title: Discussion description: A Discussion in a repository. type: object @@ -14863,7 +14875,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &567 + properties: &568 id: type: integer format: int64 @@ -14976,7 +14988,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &296 + properties: &297 url: type: string format: uri @@ -15046,7 +15058,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &297 + required: &298 - closed_issues - creator - description @@ -15125,7 +15137,7 @@ paths: timeline_url: type: string format: uri - type: &259 + type: &260 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -15241,7 +15253,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &734 + sub_issues_summary: &735 title: Sub-issues Summary type: object properties: @@ -15328,7 +15340,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &597 + properties: &598 pinned_at: type: string format: date-time @@ -15340,7 +15352,7 @@ paths: properties: *20 required: *21 nullable: true - required: &598 + required: &599 - pinned_at - pinned_by nullable: true @@ -15349,13 +15361,13 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &599 + properties: &600 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &600 + required: &601 - reason nullable: true required: &91 @@ -15368,7 +15380,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &735 + issue_dependencies_summary: &736 title: Issue Dependencies Summary type: object properties: @@ -15387,7 +15399,7 @@ paths: - total_blocking issue_field_values: type: array - items: &579 + items: &580 title: Issue Field Value description: A value assigned to an issue field type: object @@ -15479,7 +15491,7 @@ paths: - node_id - data_type - value - required: &568 + required: &569 - assignee - closed_at - comments @@ -15500,7 +15512,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &569 + x-github-breaking-changes: &570 - changeset: deprecate_beta_media_type patch: properties: @@ -15560,7 +15572,7 @@ paths: action: type: string issue: *89 - comment: &563 + comment: &564 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -16224,7 +16236,7 @@ paths: type: string release: allOf: - - &646 + - &647 title: Release description: A release. type: object @@ -16295,7 +16307,7 @@ paths: author: *4 assets: type: array - items: &647 + items: &648 title: Release Asset description: Data related to a release. type: object @@ -16915,7 +16927,7 @@ paths: url: type: string format: uri - user: &743 + user: &744 title: Public User description: Public User type: object @@ -18806,7 +18818,7 @@ paths: - closed - all default: open - - &262 + - &263 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -18857,7 +18869,7 @@ paths: type: array items: *89 examples: - default: &263 + default: &264 value: - id: 1 node_id: MDU6SXNzdWUx @@ -20256,14 +20268,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &359 + - &360 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &360 + - &361 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -20325,7 +20337,7 @@ paths: '404': *6 '403': *29 '304': *38 - '301': &363 + '301': &364 description: Moved permanently content: application/json: @@ -20347,7 +20359,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &620 + - &621 name: all description: If `true`, show notifications marked as read. in: query @@ -20355,7 +20367,7 @@ paths: schema: type: boolean default: false - - &621 + - &622 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -20365,7 +20377,7 @@ paths: type: boolean default: false - *96 - - &622 + - &623 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: @@ -20401,7 +20413,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &227 + properties: &228 id: type: integer format: int64 @@ -20687,7 +20699,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &315 + security_and_analysis: &316 nullable: true type: object properties: @@ -20807,7 +20819,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &228 + required: &229 - archive_url - assignees_url - blobs_url @@ -20854,7 +20866,7 @@ paths: - teams_url - trees_url - url - x-github-breaking-changes: &229 + x-github-breaking-changes: &230 - changeset: remove_has_downloads patch: properties: @@ -20901,7 +20913,7 @@ paths: - url - subscription_url examples: - default: &623 + default: &624 value: - id: '1' repository: @@ -21890,6 +21902,10 @@ paths: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -22815,7 +22831,7 @@ paths: parameters: - *79 - *125 - - &795 + - &796 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 @@ -22927,7 +22943,7 @@ paths: - *125 - *126 - *127 - - &796 + - &797 name: repository description: The repository name to query for usage in the format owner/repository. in: query @@ -22935,7 +22951,7 @@ paths: schema: type: string - *130 - - &797 + - &798 name: sku description: The SKU to query for usage. in: query @@ -23865,7 +23881,7 @@ paths: type: integer repository_cache_usages: type: array - items: &370 + items: &371 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -25207,7 +25223,7 @@ paths: - all - local_only - selected - selected_actions_url: &375 + selected_actions_url: &376 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` @@ -25290,7 +25306,7 @@ paths: description: Response content: application/json: - schema: &379 + schema: &380 type: object properties: days: @@ -25332,7 +25348,7 @@ paths: required: true content: application/json: - schema: &380 + schema: &381 type: object properties: days: @@ -25389,7 +25405,7 @@ paths: required: - approval_policy examples: - default: &381 + default: &382 value: approval_policy: first_time_contributors '404': *6 @@ -25448,7 +25464,7 @@ paths: description: Response content: application/json: - schema: &382 + schema: &383 type: object required: - run_workflows_from_fork_pull_requests @@ -25502,7 +25518,7 @@ paths: required: true content: application/json: - schema: &383 + schema: &384 type: object required: - run_workflows_from_fork_pull_requests @@ -26137,7 +26153,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &385 type: object properties: default_workflow_permissions: &157 @@ -26188,7 +26204,7 @@ paths: required: false content: application/json: - schema: &385 + schema: &386 type: object properties: default_workflow_permissions: *157 @@ -27328,7 +27344,7 @@ paths: application/json: schema: type: array - items: &386 + items: &387 title: Runner Application description: Runner Application type: object @@ -27353,7 +27369,7 @@ paths: - download_url - filename examples: - default: &387 + default: &388 value: - os: osx architecture: x64 @@ -27439,7 +27455,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &388 + '201': &389 description: Response content: application/json: @@ -27550,7 +27566,7 @@ paths: - token - expires_at examples: - default: &389 + default: &390 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -27589,7 +27605,7 @@ paths: application/json: schema: *168 examples: - default: &390 + default: &391 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -27623,7 +27639,7 @@ paths: application/json: schema: *166 examples: - default: &391 + default: &392 value: id: 23 name: MBP @@ -27850,7 +27866,7 @@ paths: - *79 - *165 responses: - '200': &392 + '200': &393 description: Response content: application/json: @@ -27907,7 +27923,7 @@ paths: parameters: - *79 - *165 - - &393 + - &394 name: name description: The name of a self-hosted runner's custom label. in: path @@ -30842,12 +30858,12 @@ paths: required: - subject_digests examples: - default: &776 + default: &777 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &777 + withPredicateType: &778 value: subject_digests: - sha256:abc123 @@ -30905,7 +30921,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &778 + default: &779 value: attestations_subject_digests: - sha256:abc: @@ -31270,7 +31286,7 @@ paths: initiator: type: string examples: - default: &419 + default: &420 value: attestations: - repository_id: 1 @@ -31564,7 +31580,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &274 + properties: &275 id: description: Unique identifier of the team type: integer @@ -31636,7 +31652,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &275 + required: &276 - id - node_id - url @@ -32142,7 +32158,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *79 - - &446 + - &447 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`, @@ -32152,7 +32168,7 @@ paths: schema: &196 type: string description: The name of the tool used to generate the code scanning analysis. - - &447 + - &448 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 @@ -32175,7 +32191,7 @@ paths: be returned. in: query required: false - schema: &449 + schema: &450 type: string description: State of a code scanning alert. enum: @@ -32198,7 +32214,7 @@ paths: be returned. in: query required: false - schema: &450 + schema: &451 type: string description: Severity of a code scanning alert. enum: @@ -32232,7 +32248,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: &451 + instances_url: &452 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -32255,7 +32271,7 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: &452 + dismissed_reason: &453 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -32264,13 +32280,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &453 + dismissed_comment: &454 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &454 + rule: &455 type: object properties: id: @@ -32323,7 +32339,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &455 + tool: &456 type: object properties: name: *196 @@ -32333,26 +32349,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *197 - most_recent_instance: &456 + most_recent_instance: &457 type: object properties: - ref: &448 + ref: &449 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &467 + analysis_key: &468 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: &468 + environment: &469 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: &469 + category: &470 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -32372,7 +32388,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: &470 + location: &471 type: object description: Describe a region within a file for the alert. properties: @@ -32393,7 +32409,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: &471 + items: &472 type: string description: A classification of the file. For example to identify it as generated. @@ -33694,7 +33710,7 @@ paths: type: integer codespaces: type: array - items: &264 + items: &265 type: object title: Codespace description: A codespace. @@ -33724,7 +33740,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &483 + properties: &484 name: type: string description: The name of the machine. @@ -33766,7 +33782,7 @@ paths: - ready - in_progress nullable: true - required: &484 + required: &485 - name - display_name - operating_system @@ -33971,7 +33987,7 @@ paths: - pulls_url - recent_folders examples: - default: &265 + default: &266 value: total_count: 3 codespaces: @@ -34634,7 +34650,7 @@ paths: - updated_at - visibility examples: - default: &485 + default: &486 value: total_count: 2 secrets: @@ -34672,7 +34688,7 @@ paths: description: Response content: application/json: - schema: &486 + schema: &487 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -34701,7 +34717,7 @@ paths: - key_id - key examples: - default: &487 + default: &488 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34733,7 +34749,7 @@ paths: application/json: schema: *204 examples: - default: &489 + default: &490 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -36797,7 +36813,7 @@ paths: currently being billed. seats: type: array - items: &267 + items: &268 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -38005,6 +38021,7 @@ paths: type: string - *220 - *221 + - *222 - *63 - *48 - *49 @@ -38016,9 +38033,9 @@ paths: application/json: schema: type: array - items: *222 + items: *223 examples: - default: *223 + default: *224 '304': *38 '400': *14 '403': *29 @@ -38067,9 +38084,9 @@ paths: description: Response content: application/json: - schema: *224 + schema: *225 examples: - default: *225 + default: *226 '403': *29 '404': *6 x-github: @@ -38232,7 +38249,7 @@ paths: type: integer secrets: type: array - items: &226 + items: &227 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -38309,7 +38326,7 @@ paths: description: Response content: application/json: - schema: &519 + schema: &520 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -38326,7 +38343,7 @@ paths: - key_id - key examples: - default: &520 + default: &521 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -38356,7 +38373,7 @@ paths: description: Response content: application/json: - schema: *226 + schema: *227 examples: default: value: @@ -38663,7 +38680,7 @@ paths: application/json: schema: type: array - items: &277 + items: &278 title: Package description: A software package type: object @@ -38713,9 +38730,9 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *227 - required: *228 - x-github-breaking-changes: *229 + properties: *228 + required: *229 + x-github-breaking-changes: *230 nullable: true created_at: type: string @@ -38734,7 +38751,7 @@ paths: - created_at - updated_at examples: - default: &278 + default: &279 value: - id: 197 name: hello_docker @@ -38904,7 +38921,7 @@ paths: application/json: schema: type: array - items: &253 + items: &254 title: Organization Invitation description: Organization Invitation type: object @@ -38951,7 +38968,7 @@ paths: - invitation_teams_url - node_id examples: - default: &254 + default: &255 value: - id: 1 login: monalisa @@ -39018,7 +39035,7 @@ paths: application/json: schema: type: array - items: &230 + items: &231 title: Org Hook description: Org Hook type: object @@ -39189,9 +39206,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: &231 + default: &232 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -39239,7 +39256,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-an-organization-webhook parameters: - *79 - - &232 + - &233 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. @@ -39252,9 +39269,9 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: - default: *231 + default: *232 '404': *6 x-github: githubCloudOnly: false @@ -39282,7 +39299,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-an-organization-webhook parameters: - *79 - - *232 + - *233 requestBody: required: false content: @@ -39327,7 +39344,7 @@ paths: description: Response content: application/json: - schema: *230 + schema: *231 examples: default: value: @@ -39369,7 +39386,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *79 - - *232 + - *233 responses: '204': description: Response @@ -39397,7 +39414,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *79 - - *232 + - *233 responses: '200': description: Response @@ -39428,7 +39445,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *79 - - *232 + - *233 requestBody: required: false content: @@ -39479,10 +39496,10 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *79 - - *232 - - *17 - *233 + - *17 - *234 + - *235 responses: '200': description: Response @@ -39490,9 +39507,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 '400': *14 '422': *15 x-github: @@ -39518,16 +39535,16 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *79 - - *232 + - *233 - *16 responses: '200': description: Response content: application/json: - schema: *237 + schema: *238 examples: - default: *238 + default: *239 '400': *14 '422': *15 x-github: @@ -39553,7 +39570,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *79 - - *232 + - *233 - *16 responses: '202': *40 @@ -39583,7 +39600,7 @@ paths: url: https://docs.github.com/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *79 - - *232 + - *233 responses: '204': description: Response @@ -39608,7 +39625,7 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *79 - - &243 + - &244 name: actor_type in: path description: The type of the actor @@ -39621,14 +39638,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &244 + - &245 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &239 + - &240 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`.' @@ -39636,7 +39653,7 @@ paths: required: true schema: type: string - - &240 + - &241 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) @@ -39732,12 +39749,12 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-subject-stats parameters: - *79 - - *239 - *240 + - *241 - *19 - *17 - *63 - - &249 + - &250 name: sort description: The property to sort the results by. in: query @@ -39817,14 +39834,14 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats parameters: - *79 - - *239 - *240 + - *241 responses: '200': description: Response content: application/json: - schema: &241 + schema: &242 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -39840,7 +39857,7 @@ paths: type: integer format: int64 examples: - default: &242 + default: &243 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -39863,23 +39880,23 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *79 - - &245 + - &246 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *239 - *240 + - *241 responses: '200': description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 + default: *243 x-github: enabledForGitHubApps: true category: orgs @@ -39899,18 +39916,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *79 - - *239 - *240 - - *243 + - *241 - *244 + - *245 responses: '200': description: Response content: application/json: - schema: *241 + schema: *242 examples: - default: *242 + default: *243 x-github: enabledForGitHubApps: true category: orgs @@ -39930,9 +39947,9 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats parameters: - *79 - - *239 - *240 - - &246 + - *241 + - &247 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -39945,7 +39962,7 @@ paths: description: Response content: application/json: - schema: &247 + schema: &248 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -39961,7 +39978,7 @@ paths: type: integer format: int64 examples: - default: &248 + default: &249 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -40000,18 +40017,18 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-user parameters: - *79 - - *245 - - *239 - - *240 - *246 + - *240 + - *241 + - *247 responses: '200': description: Response content: application/json: - schema: *247 + schema: *248 examples: - default: *248 + default: *249 x-github: enabledForGitHubApps: true category: orgs @@ -40031,19 +40048,19 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *79 - - *243 - *244 - - *239 + - *245 - *240 - - *246 + - *241 + - *247 responses: '200': description: Response content: application/json: - schema: *247 + schema: *248 examples: - default: *248 + default: *249 x-github: enabledForGitHubApps: true category: orgs @@ -40063,13 +40080,13 @@ paths: url: https://docs.github.com/rest/orgs/api-insights#get-user-stats parameters: - *79 - - *245 - - *239 + - *246 - *240 + - *241 - *19 - *17 - *63 - - *249 + - *250 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -40150,7 +40167,7 @@ paths: application/json: schema: *22 examples: - default: &557 + default: &558 value: id: 1 account: @@ -40316,12 +40333,12 @@ paths: application/json: schema: anyOf: - - &251 + - &252 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &250 + limit: &251 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -40346,7 +40363,7 @@ paths: properties: {} additionalProperties: false examples: - default: &252 + default: &253 value: limit: collaborators_only origin: organization @@ -40375,13 +40392,13 @@ paths: required: true content: application/json: - schema: &558 + schema: &559 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *250 + limit: *251 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -40405,9 +40422,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *252 + default: *253 '422': *15 x-github: githubCloudOnly: false @@ -40617,9 +40634,9 @@ paths: application/json: schema: type: array - items: *253 + items: *254 examples: - default: *254 + default: *255 headers: Link: *71 '404': *6 @@ -40696,7 +40713,7 @@ paths: description: Response content: application/json: - schema: *253 + schema: *254 examples: default: value: @@ -40751,7 +40768,7 @@ paths: url: https://docs.github.com/rest/orgs/members#cancel-an-organization-invitation parameters: - *79 - - &255 + - &256 name: invitation_id description: The unique identifier of the invitation. in: path @@ -40782,7 +40799,7 @@ paths: url: https://docs.github.com/rest/orgs/members#list-organization-invitation-teams parameters: - *79 - - *255 + - *256 - *17 - *19 responses: @@ -40794,7 +40811,7 @@ paths: type: array items: *211 examples: - default: &276 + default: &277 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -40837,7 +40854,7 @@ paths: application/json: schema: type: array - items: &256 + items: &257 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -41090,9 +41107,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *257 examples: - default: &257 + default: &258 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -41148,7 +41165,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *79 - - &258 + - &259 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -41256,9 +41273,9 @@ paths: description: Response content: application/json: - schema: *256 + schema: *257 examples: - default: *257 + default: *258 '404': *6 '422': *7 x-github: @@ -41283,7 +41300,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *79 - - *258 + - *259 responses: '204': *60 '404': *6 @@ -41313,9 +41330,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: &562 + default: &563 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -41398,9 +41415,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: &260 + default: &261 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -41433,7 +41450,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *79 - - &261 + - &262 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -41486,9 +41503,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *260 examples: - default: *260 + default: *261 '404': *6 '422': *7 x-github: @@ -41513,7 +41530,7 @@ paths: url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *79 - - *261 + - *262 responses: '204': description: Response @@ -41576,7 +41593,7 @@ paths: - closed - all default: open - - *262 + - *263 - name: type description: Can be the name of an issue type. in: query @@ -41607,7 +41624,7 @@ paths: type: array items: *89 examples: - default: *263 + default: *264 headers: Link: *71 '404': *6 @@ -41772,9 +41789,9 @@ paths: type: integer codespaces: type: array - items: *264 + items: *265 examples: - default: *265 + default: *266 '304': *38 '500': *56 '401': *25 @@ -41801,7 +41818,7 @@ paths: parameters: - *79 - *75 - - &266 + - &267 name: codespace_name in: path required: true @@ -41836,15 +41853,15 @@ paths: parameters: - *79 - *75 - - *266 + - *267 responses: '200': description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: &482 + default: &483 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -42024,7 +42041,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *267 + schema: *268 examples: default: value: @@ -42100,7 +42117,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &269 title: Org Membership description: Org Membership type: object @@ -42167,7 +42184,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &269 + response-if-user-has-an-active-admin-membership-with-organization: &270 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -42268,9 +42285,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *269 examples: - response-if-user-already-had-membership-with-organization: *269 + response-if-user-already-had-membership-with-organization: *270 '422': *15 '403': *29 x-github: @@ -42347,7 +42364,7 @@ paths: application/json: schema: type: array - items: &270 + items: &271 title: Migration description: A migration. type: object @@ -42687,7 +42704,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *271 examples: default: value: @@ -42866,7 +42883,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *79 - - &271 + - &272 name: migration_id description: The unique identifier of the migration. in: path @@ -42893,7 +42910,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *270 + schema: *271 examples: default: value: @@ -43063,7 +43080,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *79 - - *271 + - *272 responses: '302': description: Response @@ -43085,7 +43102,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *79 - - *271 + - *272 responses: '204': description: Response @@ -43109,8 +43126,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *79 - - *271 - - &759 + - *272 + - &760 name: repo_name description: repo_name parameter in: path @@ -43138,7 +43155,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *79 - - *271 + - *272 - *17 - *19 responses: @@ -43150,7 +43167,7 @@ paths: type: array items: *164 examples: - default: &283 + default: &284 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43323,7 +43340,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &273 + items: &274 title: Organization Role description: Organization roles type: object @@ -43498,7 +43515,7 @@ paths: parameters: - *79 - *81 - - &272 + - &273 name: role_id description: The unique identifier of the role. in: path @@ -43535,7 +43552,7 @@ paths: parameters: - *79 - *81 - - *272 + - *273 responses: '204': description: Response @@ -43588,7 +43605,7 @@ paths: parameters: - *79 - *75 - - *272 + - *273 responses: '204': description: Response @@ -43620,7 +43637,7 @@ paths: parameters: - *79 - *75 - - *272 + - *273 responses: '204': description: Response @@ -43649,13 +43666,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *79 - - *272 + - *273 responses: '200': description: Response content: application/json: - schema: *273 + schema: *274 examples: default: value: @@ -43706,7 +43723,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *79 - - *272 + - *273 - *17 - *19 responses: @@ -43784,8 +43801,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *274 - required: *275 + properties: *275 + required: *276 nullable: true type: description: The ownership type of the team @@ -43817,7 +43834,7 @@ paths: - type - parent examples: - default: *276 + default: *277 headers: Link: *71 '404': @@ -43847,7 +43864,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *79 - - *272 + - *273 - *17 - *19 responses: @@ -43875,13 +43892,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &351 + items: &352 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *274 - required: *275 + properties: *275 + required: *276 name: nullable: true type: string @@ -44169,7 +44186,7 @@ paths: - nuget - container - *79 - - &760 + - &761 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -44205,12 +44222,12 @@ paths: application/json: schema: type: array - items: *277 + items: *278 examples: - default: *278 + default: *279 '403': *29 '401': *25 - '400': &762 + '400': &763 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -44232,7 +44249,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &279 + - &280 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 @@ -44250,7 +44267,7 @@ paths: - docker - nuget - container - - &280 + - &281 name: package_name description: The name of the package. in: path @@ -44263,7 +44280,7 @@ paths: description: Response content: application/json: - schema: *277 + schema: *278 examples: default: value: @@ -44315,8 +44332,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *279 - *280 + - *281 - *79 responses: '204': @@ -44349,8 +44366,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *279 - *280 + - *281 - *79 - name: token description: package token @@ -44383,8 +44400,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: - - *279 - *280 + - *281 - *79 - *19 - *17 @@ -44405,7 +44422,7 @@ paths: application/json: schema: type: array - items: &281 + items: &282 title: Package Version description: A version of a software package type: object @@ -44530,10 +44547,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *279 - *280 + - *281 - *79 - - &282 + - &283 name: package_version_id description: Unique identifier of the package version. in: path @@ -44545,7 +44562,7 @@ paths: description: Response content: application/json: - schema: *281 + schema: *282 examples: default: value: @@ -44581,10 +44598,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *279 - *280 + - *281 - *79 - - *282 + - *283 responses: '204': description: Response @@ -44616,10 +44633,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *279 - *280 + - *281 - *79 - - *282 + - *283 responses: '204': description: Response @@ -44649,7 +44666,7 @@ paths: - *79 - *17 - *19 - - &284 + - &285 name: sort description: The property by which to sort the results. in: query @@ -44660,7 +44677,7 @@ paths: - created_at default: created_at - *63 - - &285 + - &286 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -44671,7 +44688,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &286 + - &287 name: repository description: The name of the repository to use to filter the results. in: query @@ -44679,7 +44696,7 @@ paths: schema: type: string example: Hello-World - - &287 + - &288 name: permission description: The permission to use to filter the results. in: query @@ -44687,7 +44704,7 @@ paths: schema: type: string example: issues_read - - &288 + - &289 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) @@ -44697,7 +44714,7 @@ paths: schema: type: string format: date-time - - &289 + - &290 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) @@ -44707,7 +44724,7 @@ paths: schema: type: string format: date-time - - &290 + - &291 name: token_id description: The ID of the token in: query @@ -45020,7 +45037,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 x-github: @@ -45046,14 +45063,14 @@ paths: - *79 - *17 - *19 - - *284 - - *63 - *285 + - *63 - *286 - *287 - *288 - *289 - *290 + - *291 responses: '500': *56 '422': *15 @@ -45335,7 +45352,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 x-github: @@ -45377,7 +45394,7 @@ paths: type: integer configurations: type: array - items: &291 + items: &292 title: Organization private registry description: Private registry configuration for an organization type: object @@ -45888,7 +45905,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &292 + org-private-registry-with-selected-visibility: &293 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -45984,9 +46001,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *291 + schema: *292 examples: - default: *292 + default: *293 '404': *6 x-github: githubCloudOnly: false @@ -46237,7 +46254,7 @@ paths: application/json: schema: type: array - items: &293 + items: &294 title: Projects v2 Project description: A projects v2 project type: object @@ -46307,7 +46324,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &851 + properties: &852 id: type: number description: The unique identifier of the status update. @@ -46355,7 +46372,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &852 + required: &853 - id - node_id - created_at @@ -46380,7 +46397,7 @@ paths: - deleted_at - deleted_by examples: - default: &294 + default: &295 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -46483,7 +46500,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-organization parameters: - - &295 + - &296 name: project_number description: The project's number. in: path @@ -46496,9 +46513,9 @@ paths: description: Response content: application/json: - schema: *293 + schema: *294 examples: - default: *294 + default: *295 headers: Link: *71 '304': *38 @@ -46521,7 +46538,7 @@ paths: url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *79 - - *295 + - *296 requestBody: required: true description: Details of the draft item to create in the project. @@ -46555,7 +46572,7 @@ paths: description: Response content: application/json: - schema: &301 + schema: &302 title: Projects v2 Item description: An item belonging to a project type: object @@ -46569,7 +46586,7 @@ paths: content: oneOf: - *89 - - &457 + - &458 title: Pull Request Simple description: Pull Request Simple type: object @@ -46675,8 +46692,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *296 - required: *297 + properties: *297 + required: *298 nullable: true active_lock_reason: type: string @@ -46769,7 +46786,7 @@ paths: _links: type: object properties: - comments: &298 + comments: &299 title: Link description: Hypermedia Link type: object @@ -46778,13 +46795,13 @@ paths: type: string required: - href - commits: *298 - statuses: *298 - html: *298 - issue: *298 - review_comments: *298 - review_comment: *298 - self: *298 + commits: *299 + statuses: *299 + html: *299 + issue: *299 + review_comments: *299 + review_comment: *299 + self: *299 required: - comments - commits @@ -46795,7 +46812,7 @@ paths: - review_comment - self author_association: *86 - auto_merge: &630 + auto_merge: &631 title: Auto merge description: The status of auto merging a pull request. type: object @@ -46820,7 +46837,7 @@ paths: - commit_title - commit_message nullable: true - stack: &631 + stack: &632 title: Pull Request Stack description: The stack information associated with a pull request. @@ -47008,7 +47025,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &300 + content_type: &301 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -47048,7 +47065,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &302 + draft_issue: &303 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -47122,7 +47139,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-organization parameters: - - *295 + - *296 - *79 - *17 - *48 @@ -47134,7 +47151,7 @@ paths: application/json: schema: type: array - items: &299 + items: &300 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -47284,7 +47301,7 @@ paths: - updated_at - project_url examples: - default: &782 + default: &783 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47414,7 +47431,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *295 + - *296 - *79 requestBody: required: true @@ -47461,7 +47478,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &783 + items: &784 type: object properties: name: @@ -47498,7 +47515,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &784 + iteration_configuration: &785 type: object description: The configuration for iteration fields. properties: @@ -47548,7 +47565,7 @@ paths: value: name: Due date data_type: date - single_select_field: &785 + single_select_field: &786 summary: Create a single select field value: name: Priority @@ -47575,7 +47592,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &786 + iteration_field: &787 summary: Create an iteration field value: name: Sprint @@ -47599,9 +47616,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *299 + schema: *300 examples: - text_field: &787 + text_field: &788 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -47610,7 +47627,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: &788 + number_field: &789 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -47619,7 +47636,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: &789 + date_field: &790 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -47628,7 +47645,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: &790 + single_select_field: &791 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47662,7 +47679,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &791 + iteration_field: &792 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -47707,8 +47724,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-organization parameters: - - *295 - - &792 + - *296 + - &793 name: field_id description: The unique identifier of the field. in: path @@ -47721,9 +47738,9 @@ paths: description: Response content: application/json: - schema: *299 + schema: *300 examples: - default: &793 + default: &794 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -47779,7 +47796,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *295 + - *296 - *79 - 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) @@ -47812,7 +47829,7 @@ paths: application/json: schema: type: array - items: &303 + items: &304 title: Projects v2 Item description: An item belonging to a project type: object @@ -47828,7 +47845,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *300 + content_type: *301 content: type: object additionalProperties: true @@ -47871,7 +47888,7 @@ paths: - updated_at - archived_at examples: - default: &304 + default: &305 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -48569,7 +48586,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-organization-owned-project parameters: - *79 - - *295 + - *296 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -48639,22 +48656,22 @@ paths: description: Response content: application/json: - schema: *301 + schema: *302 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *302 + value: *303 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *302 + value: *303 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *302 + value: *303 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *302 + value: *303 '304': *38 '403': *29 '401': *25 @@ -48674,9 +48691,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *295 + - *296 - *79 - - &305 + - &306 name: item_id description: The unique identifier of the project item. in: path @@ -48702,9 +48719,9 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: - default: *304 + default: *305 headers: Link: *71 '304': *38 @@ -48725,9 +48742,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-organization parameters: - - *295 + - *296 - *79 - - *305 + - *306 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -48797,13 +48814,13 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: - text_field: *304 - number_field: *304 - date_field: *304 - single_select_field: *304 - iteration_field: *304 + text_field: *305 + number_field: *305 + date_field: *305 + single_select_field: *305 + iteration_field: *305 '401': *25 '403': *29 '404': *6 @@ -48823,9 +48840,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-organization parameters: - - *295 + - *296 - *79 - - *305 + - *306 responses: '204': description: Response @@ -48849,7 +48866,7 @@ paths: url: https://docs.github.com/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *79 - - *295 + - *296 requestBody: required: true content: @@ -48885,6 +48902,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -48920,7 +48978,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &773 + schema: &774 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -49018,7 +49076,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &306 + value: &307 value: id: 1 number: 1 @@ -49064,10 +49122,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *306 + value: *307 roadmap_view: summary: Response for creating a roadmap view - value: *306 + value: *307 '304': *38 '403': *29 '401': *25 @@ -49095,9 +49153,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *295 + - *296 - *79 - - &794 + - &795 name: view_number description: The number that identifies the project view. in: path @@ -49129,9 +49187,9 @@ paths: application/json: schema: type: array - items: *303 + items: *304 examples: - default: *304 + default: *305 headers: Link: *71 '304': *38 @@ -49164,7 +49222,7 @@ paths: application/json: schema: type: array - items: &307 + items: &308 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -49232,7 +49290,7 @@ paths: - property_name - value_type examples: - default: &308 + default: &309 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49292,7 +49350,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *307 + items: *308 minItems: 1 maxItems: 100 required: @@ -49322,9 +49380,9 @@ paths: application/json: schema: type: array - items: *307 + items: *308 examples: - default: *308 + default: *309 '403': *29 '404': *6 x-github: @@ -49346,7 +49404,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *79 - - &309 + - &310 name: custom_property_name description: The custom property name in: path @@ -49358,9 +49416,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: &310 + default: &311 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -49395,7 +49453,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *79 - - *309 + - *310 requestBody: required: true content: @@ -49466,9 +49524,9 @@ paths: description: Response content: application/json: - schema: *307 + schema: *308 examples: - default: *310 + default: *311 '403': *29 '404': *6 x-github: @@ -49492,7 +49550,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *79 - - *309 + - *310 responses: '204': *60 '403': *29 @@ -49553,7 +49611,7 @@ paths: example: octocat/Hello-World properties: type: array - items: &311 + items: &312 title: Custom Property Value description: Custom property name and associated value type: object @@ -49640,7 +49698,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *311 + items: *312 required: - repository_names - properties @@ -49832,7 +49890,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 x-github: @@ -50034,7 +50092,7 @@ paths: description: Response content: application/json: - schema: &362 + schema: &363 title: Full Repository description: Full Repository type: object @@ -50322,9 +50380,9 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *312 - required: *313 - x-github-breaking-changes: *314 + properties: *313 + required: *314 + x-github-breaking-changes: *315 nullable: true temp_clone_token: type: string @@ -50439,7 +50497,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &503 + properties: &504 url: type: string format: uri @@ -50455,12 +50513,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &504 + required: &505 - url - key - name - html_url - security_and_analysis: *315 + security_and_analysis: *316 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -50555,7 +50613,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &364 + default: &365 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -51088,7 +51146,7 @@ paths: - *79 - *17 - *19 - - &655 + - &656 name: targets description: | A comma-separated list of rule targets to filter by. @@ -51106,7 +51164,7 @@ paths: application/json: schema: type: array - items: &342 + items: &343 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -51141,7 +51199,7 @@ paths: source: type: string description: The name of the source - enforcement: &318 + enforcement: &319 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -51154,7 +51212,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &319 + items: &320 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -51225,7 +51283,7 @@ paths: conditions: nullable: true anyOf: - - &316 + - &317 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -51249,7 +51307,7 @@ paths: match. items: type: string - - &320 + - &321 title: Organization ruleset conditions type: object description: |- @@ -51263,7 +51321,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *316 + - *317 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -51297,7 +51355,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *316 + - *317 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -51319,7 +51377,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *316 + - *317 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -51332,7 +51390,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &317 + items: &318 title: Repository ruleset property targeting definition type: object @@ -51365,17 +51423,17 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *317 + items: *318 required: - repository_property rules: type: array - items: &656 + items: &657 title: Repository Rule type: object description: A repository rule. oneOf: - - &321 + - &322 title: creation description: Only allow users with bypass permission to create matching refs. @@ -51387,7 +51445,7 @@ paths: type: string enum: - creation - - &322 + - &323 title: update description: Only allow users with bypass permission to update matching refs. @@ -51408,7 +51466,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &323 + - &324 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -51420,7 +51478,7 @@ paths: type: string enum: - deletion - - &324 + - &325 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -51432,7 +51490,7 @@ paths: type: string enum: - required_linear_history - - &653 + - &654 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -51510,7 +51568,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &325 + - &326 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -51534,7 +51592,7 @@ paths: type: string required: - required_deployment_environments - - &326 + - &327 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -51546,7 +51604,7 @@ paths: type: string enum: - required_signatures - - &327 + - &328 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -51689,7 +51747,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &328 + - &329 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -51737,7 +51795,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &329 + - &330 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -51749,7 +51807,7 @@ paths: type: string enum: - non_fast_forward - - &330 + - &331 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -51786,7 +51844,7 @@ paths: required: - operator - pattern - - &331 + - &332 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -51823,7 +51881,7 @@ paths: required: - operator - pattern - - &332 + - &333 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -51860,7 +51918,7 @@ paths: required: - operator - pattern - - &333 + - &334 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -51897,7 +51955,7 @@ paths: required: - operator - pattern - - &334 + - &335 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -51934,7 +51992,7 @@ paths: required: - operator - pattern - - &339 + - &340 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -51984,7 +52042,7 @@ paths: - repository_id required: - workflows - - &340 + - &341 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -52045,7 +52103,7 @@ paths: - tool required: - code_scanning_tools - - &341 + - &342 title: copilot_code_review description: Request Copilot code review for new pull requests automatically if the author has access to Copilot code @@ -52071,7 +52129,7 @@ paths: type: boolean description: Copilot automatically reviews each new push to the pull request. - - &654 + - &655 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -52083,7 +52141,7 @@ paths: type: string enum: - license_compliance_scanning - - &335 + - &336 title: file_path_restriction description: Prevent commits that include changes in specified file and folder paths from being pushed to the commit @@ -52108,7 +52166,7 @@ paths: type: string required: - restricted_file_paths - - &336 + - &337 title: max_file_path_length description: Prevent commits that include file paths that exceed the specified character limit from being pushed @@ -52132,7 +52190,7 @@ paths: maximum: 32767 required: - max_file_path_length - - &337 + - &338 title: file_extension_restriction description: Prevent commits that include files with specified file extensions from being pushed to the commit graph. @@ -52155,7 +52213,7 @@ paths: type: string required: - restricted_file_extensions - - &338 + - &339 title: max_file_size description: Prevent commits with individual files that exceed the specified limit from being pushed to the commit @@ -52253,21 +52311,20 @@ paths: - push - repository default: branch - enforcement: *318 + enforcement: *319 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *319 - conditions: *320 + items: *320 + conditions: *321 rules: type: array description: An array of rules within the ruleset. - items: &344 + items: &345 title: Repository Rule type: object description: A repository rule. oneOf: - - *321 - *322 - *323 - *324 @@ -52288,6 +52345,7 @@ paths: - *339 - *340 - *341 + - *342 required: - name - enforcement @@ -52325,9 +52383,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - default: &343 + default: &344 value: id: 21 name: super cool ruleset @@ -52383,7 +52441,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *79 - - &657 + - &658 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 @@ -52398,7 +52456,7 @@ paths: in: query schema: type: string - - &658 + - &659 name: time_period description: |- The time period to filter by. @@ -52414,14 +52472,14 @@ paths: - week - month default: day - - &659 + - &660 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 - - &660 + - &661 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -52434,7 +52492,7 @@ paths: - bypass - all default: all - - &661 + - &662 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. @@ -52457,7 +52515,7 @@ paths: description: Response content: application/json: - schema: &662 + schema: &663 title: Rule Suites description: Response type: array @@ -52512,7 +52570,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &663 + default: &664 value: - id: 21 actor_id: 12 @@ -52556,7 +52614,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *79 - - &664 + - &665 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -52572,7 +52630,7 @@ paths: description: Response content: application/json: - schema: &665 + schema: &666 title: Rule Suite description: Response type: object @@ -52671,7 +52729,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &666 + default: &667 value: id: 21 actor_id: 12 @@ -52744,9 +52802,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - default: *343 + default: *344 '404': *6 '500': *56 put: @@ -52790,16 +52848,16 @@ paths: - tag - push - repository - enforcement: *318 + enforcement: *319 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *319 - conditions: *320 + items: *320 + conditions: *321 rules: description: An array of rules within the ruleset. type: array - items: *344 + items: *345 examples: default: value: @@ -52834,9 +52892,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - default: *343 + default: *344 '404': *6 '422': *15 '500': *56 @@ -52894,7 +52952,7 @@ paths: application/json: schema: type: array - items: &345 + items: &346 title: Ruleset version type: object description: The historical version of a ruleset @@ -52918,7 +52976,7 @@ paths: type: string format: date-time examples: - default: &668 + default: &669 value: - version_id: 3 actor: @@ -52971,9 +53029,9 @@ paths: description: Response content: application/json: - schema: &669 + schema: &670 allOf: - - *345 + - *346 - type: object required: - state @@ -53043,7 +53101,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *79 - - &670 + - &671 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -53054,7 +53112,7 @@ paths: enum: - open - resolved - - &671 + - &672 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -53064,7 +53122,7 @@ paths: required: false schema: type: string - - &672 + - &673 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -53075,7 +53133,7 @@ paths: required: false schema: type: string - - &673 + - &674 name: exclude_providers in: query description: |- @@ -53086,7 +53144,7 @@ paths: required: false schema: type: string - - &674 + - &675 name: providers in: query description: |- @@ -53097,7 +53155,7 @@ paths: required: false schema: type: string - - &675 + - &676 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -53106,7 +53164,7 @@ paths: required: false schema: type: string - - &676 + - &677 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -53125,7 +53183,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &677 + - &678 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. @@ -53140,7 +53198,7 @@ paths: - *63 - *19 - *17 - - &678 + - &679 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 @@ -53150,7 +53208,7 @@ paths: required: false schema: type: string - - &679 + - &680 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 @@ -53160,7 +53218,7 @@ paths: required: false schema: type: string - - &680 + - &681 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -53169,7 +53227,7 @@ paths: required: false schema: type: string - - &681 + - &682 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -53178,7 +53236,7 @@ paths: schema: type: boolean default: false - - &682 + - &683 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -53187,7 +53245,7 @@ paths: schema: type: boolean default: false - - &683 + - &684 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -53196,7 +53254,7 @@ paths: schema: type: boolean default: false - - &684 + - &685 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -53207,7 +53265,7 @@ paths: required: false schema: type: boolean - - &685 + - &686 name: included_metadata in: query description: |- @@ -53218,7 +53276,7 @@ paths: required: false schema: type: string - - &686 + - &687 name: owner_email_hash in: query description: |- @@ -53256,14 +53314,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &687 + state: &688 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: &688 + resolution: &689 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -53380,8 +53438,8 @@ paths: pull request. ' - oneOf: &689 - - &691 + oneOf: &690 + - &692 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -53439,7 +53497,7 @@ paths: - blob_url - commit_sha - commit_url - - &692 + - &693 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. @@ -53494,7 +53552,7 @@ paths: - page_url - commit_sha - commit_url - - &693 + - &694 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -53514,7 +53572,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &694 + - &695 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -53534,7 +53592,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &695 + - &696 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -53554,7 +53612,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &696 + - &697 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -53568,7 +53626,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &697 + - &698 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -53582,7 +53640,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &698 + - &699 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -53596,7 +53654,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &699 + - &700 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. @@ -53616,7 +53674,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &700 + - &701 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. @@ -53636,7 +53694,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &701 + - &702 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. @@ -53656,7 +53714,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &702 + - &703 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. @@ -53676,7 +53734,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &703 + - &704 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -53928,7 +53986,7 @@ paths: subcategory: custom-patterns parameters: - *79 - - &704 + - &705 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -53939,7 +53997,7 @@ paths: enum: - published - unpublished - - &705 + - &706 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -53950,7 +54008,7 @@ paths: enum: - enabled - disabled - - &706 + - &707 name: sort description: The property to sort the results by. in: query @@ -53972,7 +54030,7 @@ paths: application/json: schema: type: array - items: &346 + items: &347 title: Secret Scanning Custom Pattern description: A custom pattern for secret scanning. type: object @@ -54020,7 +54078,7 @@ paths: nullable: true items: type: string - custom_pattern_version: &347 + custom_pattern_version: &348 type: string description: The version of the entity. This is used to confirm you're updating the current version of the entity and mitigate @@ -54044,7 +54102,7 @@ paths: - state - push_protection_enabled examples: - default: &707 + default: &708 value: - id: 1 name: Example Custom Pattern @@ -54107,7 +54165,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &708 + items: &709 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -54144,7 +54202,7 @@ paths: items: type: string examples: - default: &709 + default: &710 value: patterns: - name: Example Custom Pattern @@ -54168,9 +54226,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *346 + items: *347 examples: - default: &710 + default: &711 value: created_patterns: - id: 1 @@ -54222,7 +54280,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &711 + items: &712 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -54276,7 +54334,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &712 + items: &713 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -54286,7 +54344,7 @@ paths: pattern_id: type: integer description: The ID of the custom pattern to delete. - custom_pattern_version: *347 + custom_pattern_version: *348 post_delete_action: type: string description: |- @@ -54299,7 +54357,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &713 + default: &714 value: patterns: - pattern_id: 2 @@ -54310,7 +54368,7 @@ paths: '400': *14 '403': *29 '404': *6 - '412': &348 + '412': &349 description: Precondition Failed content: application/json: @@ -54345,7 +54403,7 @@ paths: required: true content: application/json: - schema: &714 + schema: &715 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -54384,9 +54442,9 @@ paths: description: Updated list of regexes that the secret must not match. items: type: string - custom_pattern_version: *347 + custom_pattern_version: *348 examples: - default: &715 + default: &716 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -54401,9 +54459,9 @@ paths: description: Pattern updated successfully. content: application/json: - schema: *346 + schema: *347 examples: - default: &716 + default: &717 value: id: 1 name: Example Custom Pattern @@ -54423,7 +54481,7 @@ paths: '400': *14 '403': *29 '404': *6 - '412': *348 + '412': *349 '422': *15 "/orgs/{org}/secret-scanning/pattern-configurations": get: @@ -54456,11 +54514,11 @@ paths: related to push protection. type: object properties: - pattern_config_version: *347 + pattern_config_version: *348 provider_pattern_overrides: type: array description: Overrides for partner patterns. - items: &349 + items: &350 type: object properties: token_type: @@ -54526,7 +54584,7 @@ paths: custom_pattern_overrides: type: array description: Overrides for custom patterns defined by the organization. - items: *349 + items: *350 examples: default: value: @@ -54583,7 +54641,7 @@ paths: schema: type: object properties: - pattern_config_version: *347 + pattern_config_version: *348 provider_pattern_settings: type: array description: Pattern settings for provider patterns. @@ -54609,7 +54667,7 @@ paths: token_type: type: string description: The ID of the pattern to configure. - custom_pattern_version: *347 + custom_pattern_version: *348 push_protection_setting: type: string description: Push protection setting to set for the pattern. @@ -54707,7 +54765,7 @@ paths: application/json: schema: type: array - items: &720 + items: &721 description: A repository security advisory. type: object properties: @@ -54927,7 +54985,7 @@ paths: login: type: string description: The username of the user credited. - type: *350 + type: *351 credits_detailed: type: array nullable: true @@ -54937,7 +54995,7 @@ paths: type: object properties: user: *4 - type: *350 + type: *351 state: type: string description: The state of the user's acceptance of the @@ -55030,7 +55088,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &721 + default: &722 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -55417,7 +55475,7 @@ paths: application/json: schema: type: array - items: *351 + items: *352 examples: default: value: @@ -55770,7 +55828,7 @@ paths: type: integer network_configurations: type: array - items: &352 + items: &353 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -55916,9 +55974,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *353 examples: - default: &353 + default: &354 value: id: 123456789ABCDEF name: My network configuration @@ -55947,7 +56005,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *79 - - &354 + - &355 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -55959,9 +56017,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *353 examples: - default: *353 + default: *354 headers: Link: *71 x-github: @@ -55983,7 +56041,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *79 - - *354 + - *355 requestBody: required: true content: @@ -56036,9 +56094,9 @@ paths: description: Response content: application/json: - schema: *352 + schema: *353 examples: - default: *353 + default: *354 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56058,7 +56116,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *79 - - *354 + - *355 responses: '204': description: Response @@ -56177,7 +56235,7 @@ paths: type: array items: *211 examples: - default: *276 + default: *277 headers: Link: *71 '403': *29 @@ -56275,7 +56333,7 @@ paths: description: Response content: application/json: - schema: &355 + schema: &356 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -56338,8 +56396,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *274 - required: *275 + properties: *275 + required: *276 nullable: true members_count: type: integer @@ -56602,7 +56660,7 @@ paths: - repos_count - organization examples: - default: &356 + default: &357 value: id: 1 node_id: MDQ6VGVhbTE= @@ -56690,9 +56748,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *356 examples: - default: *356 + default: *357 '404': *6 x-github: githubCloudOnly: false @@ -56781,16 +56839,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *355 + schema: *356 examples: - default: *356 + default: *357 '201': description: Response content: application/json: - schema: *355 + schema: *356 examples: - default: *356 + default: *357 '404': *6 '422': *15 '403': *29 @@ -56820,7 +56878,7 @@ paths: responses: '204': description: Response - '422': &357 + '422': &358 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -56854,12 +56912,12 @@ paths: application/json: schema: type: array - items: *253 + items: *254 examples: - default: *254 + default: *255 headers: Link: *71 - '422': *357 + '422': *358 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56903,7 +56961,7 @@ paths: application/json: schema: type: array - items: &737 + items: &738 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -57022,7 +57080,7 @@ paths: - type - url examples: - default: &738 + default: &739 value: - login: octocat id: 1 @@ -57081,7 +57139,7 @@ paths: description: Response content: application/json: - schema: &358 + schema: &359 title: Team Membership description: Team Membership type: object @@ -57108,7 +57166,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &739 + response-if-user-is-a-team-maintainer: &740 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -57171,9 +57229,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *359 examples: - response-if-users-membership-with-team-is-now-pending: &740 + response-if-users-membership-with-team-is-now-pending: &741 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -57251,7 +57309,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 x-github: @@ -57282,14 +57340,14 @@ paths: parameters: - *79 - *81 - - *359 - *360 + - *361 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &741 + schema: &742 title: Team Repository description: A team's access to a repository. type: object @@ -57945,8 +58003,8 @@ paths: parameters: - *79 - *81 - - *359 - *360 + - *361 requestBody: required: false content: @@ -57993,8 +58051,8 @@ paths: parameters: - *79 - *81 - - *359 - *360 + - *361 responses: '204': description: Response @@ -58031,7 +58089,7 @@ paths: type: array items: *211 examples: - response-if-child-teams-exist: &742 + response-if-child-teams-exist: &743 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -58184,7 +58242,7 @@ paths: resources: type: object properties: - core: &361 + core: &362 title: Rate Limit type: object properties: @@ -58201,21 +58259,21 @@ paths: - remaining - reset - used - graphql: *361 - search: *361 - code_search: *361 - source_import: *361 - integration_manifest: *361 - actions_runner_registration: *361 - scim: *361 - dependency_snapshots: *361 - dependency_sbom: *361 - code_scanning_autofix: *361 - copilot_usage_records: *361 + graphql: *362 + search: *362 + code_search: *362 + source_import: *362 + integration_manifest: *362 + actions_runner_registration: *362 + scim: *362 + dependency_snapshots: *362 + dependency_sbom: *362 + code_scanning_autofix: *362 + copilot_usage_records: *362 required: - core - search - rate: *361 + rate: *362 required: - rate - resources @@ -58329,14 +58387,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *362 + schema: *363 examples: default-response: summary: Default response @@ -58847,7 +58905,7 @@ paths: version: '2026-03-10' '403': *29 '404': *6 - '301': *363 + '301': *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58865,8 +58923,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: false content: @@ -59176,10 +59234,10 @@ paths: description: Response content: application/json: - schema: *362 + schema: *363 examples: - default: *364 - '307': &365 + default: *365 + '307': &366 description: Temporary Redirect content: application/json: @@ -59208,8 +59266,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -59231,7 +59289,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *365 + '307': *366 '404': *6 '409': *55 x-github: @@ -59255,11 +59313,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *359 - *360 + - *361 - *17 - *19 - - &397 + - &398 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -59282,7 +59340,7 @@ paths: type: integer artifacts: type: array - items: &366 + items: &367 title: Artifact description: An artifact type: object @@ -59360,7 +59418,7 @@ paths: - expires_at - updated_at examples: - default: &398 + default: &399 value: total_count: 2 artifacts: @@ -59421,9 +59479,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *359 - *360 - - &367 + - *361 + - &368 name: artifact_id description: The unique identifier of the artifact. in: path @@ -59435,7 +59493,7 @@ paths: description: Response content: application/json: - schema: *366 + schema: *367 examples: default: value: @@ -59473,9 +59531,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *359 - *360 - - *367 + - *361 + - *368 responses: '204': description: Response @@ -59499,9 +59557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *359 - *360 - - *367 + - *361 + - *368 - name: archive_format in: path required: true @@ -59511,7 +59569,7 @@ paths: '302': description: Response headers: - Location: &522 + Location: &523 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 @@ -59536,14 +59594,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: &368 + schema: &369 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -59576,13 +59634,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: application/json: - schema: *368 + schema: *369 examples: selected_actions: *43 responses: @@ -59611,14 +59669,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: &369 + schema: &370 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -59651,13 +59709,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: application/json: - schema: *369 + schema: *370 examples: selected_actions: *45 responses: @@ -59688,14 +59746,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *370 + schema: *371 examples: default: value: @@ -59721,11 +59779,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *359 - *360 + - *361 - *17 - *19 - - &371 + - &372 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 @@ -59759,7 +59817,7 @@ paths: description: Response content: application/json: - schema: &372 + schema: &373 title: Repository actions caches description: Repository actions caches type: object @@ -59801,7 +59859,7 @@ paths: - total_count - actions_caches examples: - default: &373 + default: &374 value: total_count: 1 actions_caches: @@ -59833,23 +59891,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: - - *359 - *360 + - *361 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *371 + - *372 responses: '200': description: Response content: application/json: - schema: *372 + schema: *373 examples: - default: *373 + default: *374 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59869,8 +59927,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: - - *359 - *360 + - *361 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -59899,8 +59957,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *359 - *360 + - *361 - *17 - *49 responses: @@ -59982,8 +60040,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *359 - *360 + - *361 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -60135,9 +60193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *359 - *360 - - &374 + - *361 + - &375 name: job_id description: The unique identifier of the job. in: path @@ -60149,7 +60207,7 @@ paths: description: Response content: application/json: - schema: &401 + schema: &402 title: Job description: Information of a job execution in a workflow run type: object @@ -60456,9 +60514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *359 - *360 - - *374 + - *361 + - *375 responses: '302': description: Response @@ -60486,9 +60544,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *359 - *360 - - *374 + - *361 + - *375 requestBody: required: false content: @@ -60538,8 +60596,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: - - *359 - *360 + - *361 responses: '200': description: Status response @@ -60598,8 +60656,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: - - *359 - *360 + - *361 requestBody: required: true content: @@ -60667,8 +60725,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -60686,7 +60744,7 @@ paths: type: integer secrets: type: array - items: &403 + items: &404 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -60706,7 +60764,7 @@ paths: - created_at - updated_at examples: - default: &404 + default: &405 value: total_count: 2 secrets: @@ -60739,8 +60797,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *359 - *360 + - *361 - *181 - *19 responses: @@ -60758,7 +60816,7 @@ paths: type: integer variables: type: array - items: &405 + items: &406 title: Actions Variable type: object properties: @@ -60788,7 +60846,7 @@ paths: - created_at - updated_at examples: - default: &406 + default: &407 value: total_count: 2 variables: @@ -60821,8 +60879,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -60831,11 +60889,11 @@ paths: schema: type: object properties: - enabled: &376 + enabled: &377 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *149 - selected_actions_url: *375 + selected_actions_url: *376 sha_pinning_required: *150 required: - enabled @@ -60864,8 +60922,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -60876,7 +60934,7 @@ paths: schema: type: object properties: - enabled: *376 + enabled: *377 allowed_actions: *149 sha_pinning_required: *150 required: @@ -60908,14 +60966,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: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: &377 + schema: &378 type: object properties: access_level: @@ -60932,7 +60990,7 @@ paths: required: - access_level examples: - default: &378 + default: &379 value: access_level: organization x-github: @@ -60956,15 +61014,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: - - *359 - *360 + - *361 requestBody: required: true content: application/json: - schema: *377 + schema: *378 examples: - default: *378 + default: *379 responses: '204': description: Response @@ -60988,14 +61046,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *379 + schema: *380 examples: default: value: @@ -61019,8 +61077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Empty response for successful settings update @@ -61030,7 +61088,7 @@ paths: required: true content: application/json: - schema: *380 + schema: *381 examples: default: summary: Set retention days @@ -61054,8 +61112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -61063,7 +61121,7 @@ paths: application/json: schema: *151 examples: - default: *381 + default: *382 '404': *6 x-github: enabledForGitHubApps: true @@ -61082,8 +61140,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -61117,14 +61175,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *382 + schema: *383 examples: default: *152 '403': *29 @@ -61146,13 +61204,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: application/json: - schema: *383 + schema: *384 examples: default: *152 responses: @@ -61178,8 +61236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -61206,8 +61264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -61239,14 +61297,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *384 + schema: *385 examples: default: *159 x-github: @@ -61269,8 +61327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Success response @@ -61281,7 +61339,7 @@ paths: required: true content: application/json: - schema: *385 + schema: *386 examples: default: *159 x-github: @@ -61310,8 +61368,8 @@ paths: in: query schema: type: string - - *359 - *360 + - *361 - *17 - *19 responses: @@ -61355,8 +61413,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -61364,9 +61422,9 @@ paths: application/json: schema: type: array - items: *386 + items: *387 examples: - default: *387 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61388,8 +61446,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: - - *359 - *360 + - *361 requestBody: required: true content: @@ -61432,7 +61490,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *388 + '201': *389 '404': *6 '422': *7 '409': *55 @@ -61463,8 +61521,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *359 - *360 + - *361 responses: '201': description: Response @@ -61472,7 +61530,7 @@ paths: application/json: schema: *168 examples: - default: *389 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61500,8 +61558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *359 - *360 + - *361 responses: '201': description: Response @@ -61509,7 +61567,7 @@ paths: application/json: schema: *168 examples: - default: *390 + default: *391 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61531,8 +61589,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *359 - *360 + - *361 - *165 responses: '200': @@ -61541,7 +61599,7 @@ paths: application/json: schema: *166 examples: - default: *391 + default: *392 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -61562,8 +61620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *359 - *360 + - *361 - *165 responses: '204': @@ -61590,8 +61648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *359 - *360 + - *361 - *165 responses: '200': *170 @@ -61616,8 +61674,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *359 - *360 + - *361 - *165 requestBody: required: true @@ -61666,8 +61724,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *359 - *360 + - *361 - *165 requestBody: required: true @@ -61717,11 +61775,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: - - *359 - *360 + - *361 - *165 responses: - '200': *392 + '200': *393 '404': *6 x-github: githubCloudOnly: false @@ -61748,10 +61806,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *359 - *360 + - *361 - *165 - - *393 + - *394 responses: '200': *170 '404': *6 @@ -61779,9 +61837,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *359 - *360 - - &409 + - *361 + - &410 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. @@ -61789,7 +61847,7 @@ paths: required: false schema: type: string - - &410 + - &411 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -61797,7 +61855,7 @@ paths: required: false schema: type: string - - &411 + - &412 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -61806,7 +61864,7 @@ paths: required: false schema: type: string - - &412 + - &413 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 @@ -61833,7 +61891,7 @@ paths: - pending - *17 - *19 - - &413 + - &414 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)." @@ -61842,7 +61900,7 @@ paths: schema: type: string format: date-time - - &394 + - &395 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -61851,13 +61909,13 @@ paths: schema: type: boolean default: false - - &414 + - &415 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &415 + - &416 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -61880,7 +61938,7 @@ paths: type: integer workflow_runs: type: array - items: &395 + items: &396 title: Workflow Run description: An invocation of a workflow type: object @@ -62028,7 +62086,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &439 + properties: &440 id: type: string description: SHA for the commit @@ -62079,7 +62137,7 @@ paths: - name - email nullable: true - required: &440 + required: &441 - id - tree_id - message @@ -62126,7 +62184,7 @@ paths: - workflow_url - pull_requests examples: - default: &416 + default: &417 value: total_count: 1 workflow_runs: @@ -62362,24 +62420,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *359 - *360 - - &396 + - *361 + - &397 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *394 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: &399 + default: &400 value: id: 30433642 name: Build @@ -62620,9 +62678,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '204': description: Response @@ -62645,9 +62703,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '200': description: Response @@ -62766,9 +62824,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '201': description: Response @@ -62801,12 +62859,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *359 - *360 - - *396 + - *361 + - *397 - *17 - *19 - - *397 + - *398 - *63 responses: '200': @@ -62823,9 +62881,9 @@ paths: type: integer artifacts: type: array - items: *366 + items: *367 examples: - default: *398 + default: *399 headers: Link: *71 x-github: @@ -62849,25 +62907,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *359 - *360 - - *396 - - &400 + - *361 + - *397 + - &401 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *394 + - *395 responses: '200': description: Response content: application/json: - schema: *395 + schema: *396 examples: - default: *399 + default: *400 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62890,10 +62948,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *359 - *360 - - *396 - - *400 + - *361 + - *397 + - *401 - *17 - *19 responses: @@ -62911,9 +62969,9 @@ paths: type: integer jobs: type: array - items: *401 + items: *402 examples: - default: &402 + default: &403 value: total_count: 1 jobs: @@ -63026,10 +63084,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *359 - *360 - - *396 - - *400 + - *361 + - *397 + - *401 responses: '302': description: Response @@ -63057,9 +63115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '202': description: Response @@ -63105,9 +63163,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 - *17 - *48 - *49 @@ -63278,9 +63336,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: - - *359 - *360 - - *396 + - *361 + - *397 requestBody: required: true content: @@ -63347,9 +63405,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '202': description: Response @@ -63382,9 +63440,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 - 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 @@ -63414,9 +63472,9 @@ paths: type: integer jobs: type: array - items: *401 + items: *402 examples: - default: *402 + default: *403 headers: Link: *71 x-github: @@ -63441,9 +63499,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '302': description: Response @@ -63470,9 +63528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '204': description: Response @@ -63499,9 +63557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '200': description: Response @@ -63561,7 +63619,7 @@ paths: items: type: object properties: - type: &529 + type: &530 type: string description: The type of reviewer. enum: @@ -63646,9 +63704,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 requestBody: required: true content: @@ -63695,12 +63753,12 @@ paths: application/json: schema: type: array - items: &524 + items: &525 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &813 + properties: &814 url: type: string format: uri @@ -63785,7 +63843,7 @@ paths: nullable: true properties: *84 required: *85 - required: &814 + required: &815 - id - node_id - sha @@ -63801,7 +63859,7 @@ paths: - created_at - updated_at examples: - default: &525 + default: &526 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -63857,9 +63915,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *359 - *360 - - *396 + - *361 + - *397 requestBody: required: false content: @@ -63903,9 +63961,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *359 - *360 - - *396 + - *361 + - *397 requestBody: required: false content: @@ -63958,9 +64016,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *359 - *360 - - *396 + - *361 + - *397 responses: '200': description: Response @@ -64097,8 +64155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -64116,9 +64174,9 @@ paths: type: integer secrets: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -64143,8 +64201,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -64174,17 +64232,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: &417 + default: &418 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -64210,8 +64268,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 requestBody: required: true @@ -64269,8 +64327,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '204': @@ -64296,8 +64354,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *359 - *360 + - *361 - *181 - *19 responses: @@ -64315,9 +64373,9 @@ paths: type: integer variables: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 headers: Link: *71 x-github: @@ -64340,8 +64398,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -64393,17 +64451,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *359 - *360 + - *361 - *175 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: &418 + default: &419 value: name: USERNAME value: octocat @@ -64429,8 +64487,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *359 - *360 + - *361 - *175 requestBody: required: true @@ -64473,8 +64531,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *359 - *360 + - *361 - *175 responses: '204': @@ -64500,8 +64558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -64519,7 +64577,7 @@ paths: type: integer workflows: type: array - items: &407 + items: &408 title: Workflow description: A GitHub Actions workflow type: object @@ -64626,9 +64684,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *359 - *360 - - &408 + - *361 + - &409 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -64643,7 +64701,7 @@ paths: description: Response content: application/json: - schema: *407 + schema: *408 examples: default: value: @@ -64676,9 +64734,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *359 - *360 - - *408 + - *361 + - *409 responses: '204': description: Response @@ -64703,9 +64761,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *359 - *360 - - *408 + - *361 + - *409 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -64803,9 +64861,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *359 - *360 - - *408 + - *361 + - *409 responses: '204': description: Response @@ -64832,19 +64890,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *359 - *360 - - *408 + - *361 - *409 - *410 - *411 - *412 + - *413 - *17 - *19 - - *413 - - *394 - *414 + - *395 - *415 + - *416 responses: '200': description: Response @@ -64860,9 +64918,9 @@ paths: type: integer workflow_runs: type: array - items: *395 + items: *396 examples: - default: *416 + default: *417 headers: Link: *71 x-github: @@ -64894,9 +64952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *359 - *360 - - *408 + - *361 + - *409 responses: '200': description: Response @@ -64957,8 +65015,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *359 - *360 + - *361 - *63 - *17 - *48 @@ -65127,8 +65185,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-organization-secrets parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -65146,9 +65204,9 @@ paths: type: integer secrets: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -65172,8 +65230,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-organization-variables parameters: - - *359 - *360 + - *361 - *181 - *19 responses: @@ -65191,9 +65249,9 @@ paths: type: integer variables: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 headers: Link: *71 x-github: @@ -65218,8 +65276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#list-repository-secrets parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -65237,9 +65295,9 @@ paths: type: integer secrets: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -65264,8 +65322,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-public-key parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -65295,17 +65353,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#get-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *417 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65327,8 +65385,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 requestBody: required: true @@ -65386,8 +65444,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/secrets#delete-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '204': @@ -65413,8 +65471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#list-repository-variables parameters: - - *359 - *360 + - *361 - *181 - *19 responses: @@ -65432,9 +65490,9 @@ paths: type: integer variables: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 headers: Link: *71 x-github: @@ -65457,8 +65515,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#create-a-repository-variable parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -65510,17 +65568,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#get-a-repository-variable parameters: - - *359 - *360 + - *361 - *175 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *418 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65541,8 +65599,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#update-a-repository-variable parameters: - - *359 - *360 + - *361 - *175 requestBody: required: true @@ -65585,8 +65643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/agents/variables#delete-a-repository-variable parameters: - - *359 - *360 + - *361 - *175 responses: '204': @@ -65608,8 +65666,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -65646,8 +65704,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *359 - *360 + - *361 - name: assignee in: path required: true @@ -65683,8 +65741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#create-an-attestation parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -65794,8 +65852,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/attestations#list-attestations parameters: - - *359 - *360 + - *361 - *17 - *48 - *49 @@ -65852,7 +65910,7 @@ paths: initiator: type: string examples: - default: *419 + default: *420 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -65886,8 +65944,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -65895,7 +65953,7 @@ paths: application/json: schema: type: array - items: &420 + items: &421 title: Autolink reference description: An autolink reference. type: object @@ -65949,8 +66007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -65989,9 +66047,9 @@ paths: description: response content: application/json: - schema: *420 + schema: *421 examples: - default: &421 + default: &422 value: id: 1 key_prefix: TICKET- @@ -66022,9 +66080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *359 - *360 - - &422 + - *361 + - &423 name: autolink_id description: The unique identifier of the autolink. in: path @@ -66036,9 +66094,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *421 + default: *422 '404': *6 x-github: githubCloudOnly: false @@ -66058,9 +66116,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *359 - *360 - - *422 + - *361 + - *423 responses: '204': description: Response @@ -66084,8 +66142,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: - - *359 - *360 + - *361 responses: '200': description: Response if Dependabot is enabled @@ -66133,8 +66191,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -66155,8 +66213,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -66176,8 +66234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *359 - *360 + - *361 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -66215,7 +66273,7 @@ paths: - url protected: type: boolean - protection: &424 + protection: &425 title: Branch Protection description: Branch Protection type: object @@ -66257,7 +66315,7 @@ paths: required: - contexts - checks - enforce_admins: &427 + enforce_admins: &428 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -66272,7 +66330,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &429 + required_pull_request_reviews: &430 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -66348,7 +66406,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &426 + restrictions: &427 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -66625,9 +66683,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *359 - *360 - - &425 + - *361 + - &426 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). @@ -66641,14 +66699,14 @@ paths: description: Response content: application/json: - schema: &435 + schema: &436 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &495 + commit: &496 title: Commit description: Commit type: object @@ -66682,7 +66740,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &423 + properties: &424 name: type: string example: '"Chris Wanstrath"' @@ -66698,7 +66756,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *423 + properties: *424 nullable: true message: type: string @@ -66719,7 +66777,7 @@ paths: required: - sha - url - verification: &547 + verification: &548 title: Verification type: object properties: @@ -66789,7 +66847,7 @@ paths: type: integer files: type: array - items: &507 + items: &508 title: Diff Entry description: Diff Entry type: object @@ -66873,7 +66931,7 @@ paths: - self protected: type: boolean - protection: *424 + protection: *425 protection_url: type: string format: uri @@ -66980,7 +67038,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *363 + '301': *364 '404': *6 x-github: githubCloudOnly: false @@ -67002,15 +67060,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -67204,9 +67262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -67461,7 +67519,7 @@ paths: url: type: string format: uri - required_status_checks: &432 + required_status_checks: &433 title: Status Check Policy description: Status Check Policy type: object @@ -67613,7 +67671,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *426 + restrictions: *427 required_conversation_resolution: type: object properties: @@ -67725,9 +67783,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '204': description: Response @@ -67752,17 +67810,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: &428 + default: &429 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -67784,17 +67842,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: *428 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67813,9 +67871,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '204': description: Response @@ -67840,17 +67898,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *429 + schema: *430 examples: - default: &430 + default: &431 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -67946,9 +68004,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: false content: @@ -68046,9 +68104,9 @@ paths: description: Response content: application/json: - schema: *429 + schema: *430 examples: - default: *430 + default: *431 '422': *15 x-github: githubCloudOnly: false @@ -68069,9 +68127,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '204': description: Response @@ -68098,17 +68156,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: &431 + default: &432 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -68131,17 +68189,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *427 + schema: *428 examples: - default: *431 + default: *432 '404': *6 x-github: githubCloudOnly: false @@ -68161,9 +68219,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '204': description: Response @@ -68188,17 +68246,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *432 + schema: *433 examples: - default: &433 + default: &434 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -68224,9 +68282,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: false content: @@ -68278,9 +68336,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *433 examples: - default: *433 + default: *434 '404': *6 '422': *15 x-github: @@ -68302,9 +68360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '204': description: Response @@ -68328,9 +68386,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response @@ -68364,9 +68422,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: false content: @@ -68433,9 +68491,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: false content: @@ -68499,9 +68557,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: content: application/json: @@ -68567,15 +68625,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response content: application/json: - schema: *426 + schema: *427 examples: default: value: @@ -68666,9 +68724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '204': description: Response @@ -68691,9 +68749,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response @@ -68703,7 +68761,7 @@ paths: type: array items: *5 examples: - default: &434 + default: &435 value: - id: 1 slug: octoapp @@ -68760,9 +68818,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -68796,7 +68854,7 @@ paths: type: array items: *5 examples: - default: *434 + default: *435 '422': *15 x-github: githubCloudOnly: false @@ -68817,9 +68875,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -68853,7 +68911,7 @@ paths: type: array items: *5 examples: - default: *434 + default: *435 '422': *15 x-github: githubCloudOnly: false @@ -68874,9 +68932,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -68910,7 +68968,7 @@ paths: type: array items: *5 examples: - default: *434 + default: *435 '422': *15 x-github: githubCloudOnly: false @@ -68932,9 +68990,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response @@ -68944,7 +69002,7 @@ paths: type: array items: *211 examples: - default: *276 + default: *277 '404': *6 x-github: githubCloudOnly: false @@ -68964,9 +69022,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: false content: @@ -69004,7 +69062,7 @@ paths: type: array items: *211 examples: - default: *276 + default: *277 '422': *15 x-github: githubCloudOnly: false @@ -69025,9 +69083,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: false content: @@ -69065,7 +69123,7 @@ paths: type: array items: *211 examples: - default: *276 + default: *277 '422': *15 x-github: githubCloudOnly: false @@ -69086,9 +69144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: content: application/json: @@ -69125,7 +69183,7 @@ paths: type: array items: *211 examples: - default: *276 + default: *277 '422': *15 x-github: githubCloudOnly: false @@ -69147,9 +69205,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *359 - *360 - - *425 + - *361 + - *426 responses: '200': description: Response @@ -69183,9 +69241,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -69243,9 +69301,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -69303,9 +69361,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -69365,9 +69423,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *359 - *360 - - *425 + - *361 + - *426 requestBody: required: true content: @@ -69389,7 +69447,7 @@ paths: description: Response content: application/json: - schema: *435 + schema: *436 examples: default: value: @@ -69505,8 +69563,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -69785,7 +69843,7 @@ paths: description: Response content: application/json: - schema: &436 + schema: &437 title: CheckRun description: A check performed on the code of a given code change type: object @@ -69905,7 +69963,7 @@ paths: check. type: array items: *94 - deployment: &806 + deployment: &807 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -70185,9 +70243,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *359 - *360 - - &437 + - *361 + - &438 name: check_run_id description: The unique identifier of the check run. in: path @@ -70199,9 +70257,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: &438 + default: &439 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -70301,9 +70359,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *359 - *360 - - *437 + - *361 + - *438 requestBody: required: true content: @@ -70543,9 +70601,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *438 + default: *439 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70565,9 +70623,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *359 - *360 - - *437 + - *361 + - *438 - *17 - *19 responses: @@ -70662,9 +70720,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *359 - *360 - - *437 + - *361 + - *438 responses: '201': description: Response @@ -70708,8 +70766,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -70731,7 +70789,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &441 + schema: &442 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -70817,12 +70875,12 @@ paths: type: string format: date-time nullable: true - head_commit: &834 + head_commit: &835 title: Simple Commit description: A commit. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 latest_check_runs_count: type: integer check_runs_url: @@ -70850,7 +70908,7 @@ paths: - check_runs_url - pull_requests examples: - default: &442 + default: &443 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -71141,9 +71199,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *441 + schema: *442 examples: - default: *442 + default: *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71162,8 +71220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -71472,9 +71530,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *359 - *360 - - &443 + - *361 + - &444 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -71486,9 +71544,9 @@ paths: description: Response content: application/json: - schema: *441 + schema: *442 examples: - default: *442 + default: *443 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71511,17 +71569,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *359 - *360 - - *443 - - &500 + - *361 + - *444 + - &501 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &501 + - &502 name: status description: Returns check runs with the specified `status`. in: query @@ -71560,9 +71618,9 @@ paths: type: integer check_runs: type: array - items: *436 + items: *437 examples: - default: &502 + default: &503 value: total_count: 1 check_runs: @@ -71664,9 +71722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *359 - *360 - - *443 + - *361 + - *444 responses: '201': description: Response @@ -71695,8 +71753,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *359 - *360 + - *361 - *17 - *63 - *48 @@ -71718,7 +71776,7 @@ paths: application/json: schema: type: array - items: &444 + items: &445 description: Code quality finding type: object properties: @@ -71848,7 +71906,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &445 + '403': &446 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -71875,8 +71933,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *359 - *360 + - *361 - name: finding_number in: path description: The number that identifies a finding. @@ -71888,7 +71946,7 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: default: value: @@ -71917,7 +71975,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *445 + '403': *446 '404': *6 '503': *123 x-github: @@ -71939,8 +71997,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -72012,7 +72070,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *445 + '403': *446 '404': *6 '503': *123 x-github: @@ -72033,8 +72091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -72170,21 +72228,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *359 - *360 - - *446 + - *361 - *447 + - *448 - *19 - *17 - - &465 + - &466 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: *448 - - &466 + schema: *449 + - &467 name: pr description: The number of the pull request for the results you want to list. in: query @@ -72209,13 +72267,13 @@ paths: be returned. in: query required: false - schema: *449 + schema: *450 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *450 + schema: *451 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -72239,7 +72297,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: *451 + instances_url: *452 state: *198 fixed_at: *194 dismissed_by: @@ -72250,11 +72308,11 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: *452 - dismissed_comment: *453 - rule: *454 - tool: *455 - most_recent_instance: *456 + dismissed_reason: *453 + dismissed_comment: *454 + rule: *455 + tool: *456 + most_recent_instance: *457 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -72380,7 +72438,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *38 - '403': &458 + '403': &459 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -72407,9 +72465,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *359 - *360 - - &459 + - *361 + - &460 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -72423,7 +72481,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &461 type: object properties: number: *189 @@ -72431,7 +72489,7 @@ paths: updated_at: *191 url: *192 html_url: *193 - instances_url: *451 + instances_url: *452 state: *198 fixed_at: *194 dismissed_by: @@ -72442,8 +72500,8 @@ paths: required: *21 nullable: true dismissed_at: *195 - dismissed_reason: *452 - dismissed_comment: *453 + dismissed_reason: *453 + dismissed_comment: *454 rule: type: object properties: @@ -72497,8 +72555,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *455 - most_recent_instance: *456 + tool: *456 + most_recent_instance: *457 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -72512,7 +72570,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *457 + items: *458 required: - number - created_at @@ -72601,7 +72659,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *38 - '403': *458 + '403': *459 '404': *6 '503': *123 x-github: @@ -72621,9 +72679,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *359 - *360 - - *459 + - *361 + - *460 requestBody: required: true content: @@ -72638,8 +72696,8 @@ paths: enum: - open - dismissed - dismissed_reason: *452 - dismissed_comment: *453 + dismissed_reason: *453 + dismissed_comment: *454 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -72667,7 +72725,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *461 examples: default: value: @@ -72743,7 +72801,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &464 + '403': &465 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -72770,15 +72828,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: - - *359 - *360 - - *459 + - *361 + - *460 responses: '200': description: Response content: application/json: - schema: &461 + schema: &462 type: object properties: status: @@ -72804,13 +72862,13 @@ paths: - description - started_at examples: - default: &462 + default: &463 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &463 + '400': &464 description: Bad Request content: application/json: @@ -72821,7 +72879,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': *458 + '403': *459 '404': *6 '500': *56 x-github: @@ -72846,29 +72904,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: - - *359 - *360 - - *459 + - *361 + - *460 responses: '200': description: OK content: application/json: - schema: *461 + schema: *462 examples: - default: *462 + default: *463 '202': description: Accepted content: application/json: - schema: *461 + schema: *462 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *463 + '400': *464 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -72900,9 +72958,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: - - *359 - *360 - - *459 + - *361 + - *460 requestBody: required: false content: @@ -72947,8 +73005,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *463 - '403': *464 + '400': *464 + '403': *465 '404': *6 '422': description: Unprocessable Entity @@ -72972,13 +73030,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *359 - *360 - - *459 + - *361 + - *460 - *19 - *17 - - *465 - *466 + - *467 responses: '200': description: Response @@ -72989,10 +73047,10 @@ paths: items: type: object properties: - ref: *448 - analysis_key: *467 - environment: *468 - category: *469 + ref: *449 + analysis_key: *468 + environment: *469 + category: *470 state: type: string description: State of a code scanning alert instance. @@ -73007,7 +73065,7 @@ paths: properties: text: type: string - location: *470 + location: *471 html_url: type: string classifications: @@ -73015,7 +73073,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: *471 + items: *472 examples: default: value: @@ -73052,7 +73110,7 @@ paths: end_column: 50 classifications: - source - '403': *458 + '403': *459 '404': *6 '503': *123 x-github: @@ -73086,25 +73144,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *359 - *360 - - *446 + - *361 - *447 + - *448 - *19 - *17 - - *466 + - *467 - 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: *448 + schema: *449 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &472 + schema: &473 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -73125,23 +73183,23 @@ paths: application/json: schema: type: array - items: &473 + items: &474 type: object properties: - ref: *448 - commit_sha: &481 + ref: *449 + commit_sha: &482 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: *467 + analysis_key: *468 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *469 + category: *470 error: type: string example: error reading field xyz @@ -73165,8 +73223,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *472 - tool: *455 + sarif_id: *473 + tool: *456 deletable: type: boolean warning: @@ -73227,7 +73285,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *458 + '403': *459 '404': *6 '503': *123 x-github: @@ -73263,8 +73321,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: - - *359 - *360 + - *361 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -73277,7 +73335,7 @@ paths: description: Response content: application/json: - schema: *473 + schema: *474 examples: response: summary: application/json response @@ -73331,7 +73389,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *458 + '403': *459 '404': *6 '422': description: Response if analysis could not be processed @@ -73418,8 +73476,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: - - *359 - *360 + - *361 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -73472,7 +73530,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': *464 + '403': *465 '404': *6 '503': *123 x-github: @@ -73494,8 +73552,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -73503,7 +73561,7 @@ paths: application/json: schema: type: array - items: &474 + items: &475 title: CodeQL Database description: A CodeQL database. type: object @@ -73614,7 +73672,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': *458 + '403': *459 '404': *6 '503': *123 x-github: @@ -73643,8 +73701,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *359 - *360 + - *361 - name: language in: path description: The language of the CodeQL database. @@ -73656,7 +73714,7 @@ paths: description: Response content: application/json: - schema: *474 + schema: *475 examples: default: value: @@ -73688,9 +73746,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': &511 + '302': &512 description: Found - '403': *458 + '403': *459 '404': *6 '503': *123 x-github: @@ -73712,8 +73770,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *359 - *360 + - *361 - name: language in: path description: The language of the CodeQL database. @@ -73723,7 +73781,7 @@ paths: responses: '204': description: Response - '403': *464 + '403': *465 '404': *6 '503': *123 x-github: @@ -73751,8 +73809,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -73761,7 +73819,7 @@ paths: type: object additionalProperties: false properties: - language: &475 + language: &476 type: string description: The language targeted by the CodeQL query enum: @@ -73841,7 +73899,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &479 + schema: &480 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -73851,7 +73909,7 @@ paths: description: The ID of the variant analysis. controller_repo: *68 actor: *4 - query_language: *475 + query_language: *476 query_pack_url: type: string description: The download url for the query pack. @@ -73898,7 +73956,7 @@ paths: items: type: object properties: - repository: &476 + repository: &477 title: Repository Identifier description: Repository Identifier type: object @@ -73934,7 +73992,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &480 + analysis_status: &481 type: string description: The new status of the CodeQL variant analysis repository task. @@ -73966,7 +74024,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &477 + access_mismatch_repos: &478 type: object properties: repository_count: @@ -73980,7 +74038,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: *476 + items: *477 required: - repository_count - repositories @@ -74002,8 +74060,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *477 - over_limit_repos: *477 + no_codeql_db_repos: *478 + over_limit_repos: *478 required: - access_mismatch_repos - not_found_repos @@ -74019,7 +74077,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &478 + value: &479 summary: Default response value: id: 1 @@ -74165,10 +74223,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *478 + value: *479 repository_lists: summary: Response for a successful variant analysis submission - value: *478 + value: *479 '404': *6 '422': description: Unable to process variant analysis submission @@ -74196,8 +74254,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: - - *359 - *360 + - *361 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -74209,9 +74267,9 @@ paths: description: Response content: application/json: - schema: *479 + schema: *480 examples: - default: *478 + default: *479 '404': *6 '503': *123 x-github: @@ -74234,7 +74292,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: - - *359 + - *360 - name: repo in: path description: The name of the controller repository. @@ -74269,7 +74327,7 @@ paths: type: object properties: repository: *68 - analysis_status: *480 + analysis_status: *481 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -74394,8 +74452,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -74497,7 +74555,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *458 + '403': *459 '404': *6 '503': *123 x-github: @@ -74518,8 +74576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -74611,7 +74669,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *464 + '403': *465 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -74682,8 +74740,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -74691,7 +74749,7 @@ paths: schema: type: object properties: - commit_sha: *481 + commit_sha: *482 ref: type: string description: |- @@ -74749,7 +74807,7 @@ paths: schema: type: object properties: - id: *472 + id: *473 url: type: string description: The REST API URL for checking the status of the upload. @@ -74763,7 +74821,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': *464 + '403': *465 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -74786,8 +74844,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *359 - *360 + - *361 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -74833,7 +74891,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': *458 + '403': *459 '404': description: Not Found if the sarif id does not match any upload '503': *123 @@ -74858,8 +74916,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: - - *359 - *360 + - *361 responses: '200': description: Response @@ -74940,8 +74998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *359 - *360 + - *361 - 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 @@ -75061,8 +75119,8 @@ paths: parameters: - *17 - *19 - - *359 - *360 + - *361 responses: '200': description: Response @@ -75078,7 +75136,7 @@ paths: type: integer codespaces: type: array - items: *264 + items: *265 examples: default: value: @@ -75376,8 +75434,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -75440,17 +75498,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '400': *14 '401': *25 '403': *29 @@ -75479,8 +75537,8 @@ paths: parameters: - *17 - *19 - - *359 - *360 + - *361 responses: '200': description: Response @@ -75544,8 +75602,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *359 - *360 + - *361 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -75580,14 +75638,14 @@ paths: type: integer machines: type: array - items: &748 + items: &749 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *483 - required: *484 + properties: *484 + required: *485 examples: - default: &749 + default: &750 value: total_count: 2 machines: @@ -75627,8 +75685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *359 - *360 + - *361 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -75712,8 +75770,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: - - *359 - *360 + - *361 - 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 @@ -75779,8 +75837,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -75798,7 +75856,7 @@ paths: type: integer secrets: type: array - items: &488 + items: &489 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -75818,7 +75876,7 @@ paths: - created_at - updated_at examples: - default: *485 + default: *486 headers: Link: *71 x-github: @@ -75841,16 +75899,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *486 + schema: *487 examples: - default: *487 + default: *488 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -75870,17 +75928,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '200': description: Response content: application/json: - schema: *488 + schema: *489 examples: - default: *489 + default: *490 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75900,8 +75958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 requestBody: required: true @@ -75954,8 +76012,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '204': @@ -75984,8 +76042,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *359 - *360 + - *361 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -76027,7 +76085,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &490 + properties: &491 login: type: string example: octocat @@ -76120,7 +76178,7 @@ paths: user_view_type: type: string example: public - required: &491 + required: &492 - avatar_url - events_url - followers_url @@ -76194,8 +76252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *359 - *360 + - *361 - *75 responses: '204': @@ -76242,8 +76300,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *359 - *360 + - *361 - *75 requestBody: required: false @@ -76270,7 +76328,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &561 + schema: &562 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -76499,8 +76557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *359 - *360 + - *361 - *75 responses: '204': @@ -76532,8 +76590,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *359 - *360 + - *361 - *75 responses: '200': @@ -76554,8 +76612,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *490 - required: *491 + properties: *491 + required: *492 nullable: true required: - permission @@ -76610,8 +76668,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -76621,7 +76679,7 @@ paths: application/json: schema: type: array - items: &492 + items: &493 title: Commit Comment description: Commit Comment type: object @@ -76679,7 +76737,7 @@ paths: - created_at - updated_at examples: - default: &497 + default: &498 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76738,17 +76796,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *359 - *360 + - *361 - *105 responses: '200': description: Response content: application/json: - schema: *492 + schema: *493 examples: - default: &498 + default: &499 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -76805,8 +76863,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *359 - *360 + - *361 - *105 requestBody: required: true @@ -76829,7 +76887,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *493 examples: default: value: @@ -76880,8 +76938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *359 - *360 + - *361 - *105 responses: '204': @@ -76903,8 +76961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *359 - *360 + - *361 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -76931,7 +76989,7 @@ paths: application/json: schema: type: array - items: &493 + items: &494 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -76974,7 +77032,7 @@ paths: - content - created_at examples: - default: &565 + default: &566 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -77019,8 +77077,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *359 - *360 + - *361 - *105 requestBody: required: true @@ -77053,9 +77111,9 @@ paths: description: Reaction exists content: application/json: - schema: *493 + schema: *494 examples: - default: &494 + default: &495 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -77084,9 +77142,9 @@ paths: description: Reaction created content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '422': *15 x-github: githubCloudOnly: false @@ -77108,10 +77166,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *359 - *360 + - *361 - *105 - - &566 + - &567 name: reaction_id description: The unique identifier of the reaction. in: path @@ -77166,8 +77224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *359 - *360 + - *361 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -77223,9 +77281,9 @@ paths: application/json: schema: type: array - items: *495 + items: *496 examples: - default: &638 + default: &639 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -77319,9 +77377,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *359 - *360 - - &496 + - *361 + - &497 name: commit_sha description: The SHA of the commit. in: path @@ -77393,9 +77451,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *359 - *360 - - *496 + - *361 + - *497 - *17 - *19 responses: @@ -77405,9 +77463,9 @@ paths: application/json: schema: type: array - items: *492 + items: *493 examples: - default: *497 + default: *498 headers: Link: *71 x-github: @@ -77435,9 +77493,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *359 - *360 - - *496 + - *361 + - *497 requestBody: required: true content: @@ -77472,9 +77530,9 @@ paths: description: Response content: application/json: - schema: *492 + schema: *493 examples: - default: *498 + default: *499 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -77502,9 +77560,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *359 - *360 - - *496 + - *361 + - *497 - *17 - *19 responses: @@ -77514,9 +77572,9 @@ paths: application/json: schema: type: array - items: *457 + items: *458 examples: - default: &629 + default: &630 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -78053,11 +78111,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *359 - *360 + - *361 - *19 - *17 - - &499 + - &500 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)" @@ -78072,9 +78130,9 @@ paths: description: Response content: application/json: - schema: *495 + schema: *496 examples: - default: &616 + default: &617 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -78162,7 +78220,7 @@ paths: schema: type: string examples: - default: &508 + default: &509 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -78175,7 +78233,7 @@ paths: schema: type: string examples: - default: &509 + default: &510 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -78228,11 +78286,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *359 - *360 - - *499 + - *361 - *500 - *501 + - *502 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -78266,9 +78324,9 @@ paths: type: integer check_runs: type: array - items: *436 + items: *437 examples: - default: *502 + default: *503 headers: Link: *71 x-github: @@ -78293,9 +78351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *359 - *360 - - *499 + - *361 + - *500 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -78303,7 +78361,7 @@ paths: schema: type: integer example: 1 - - *500 + - *501 - *17 - *19 responses: @@ -78321,7 +78379,7 @@ paths: type: integer check_suites: type: array - items: *441 + items: *442 examples: default: value: @@ -78521,9 +78579,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *359 - *360 - - *499 + - *361 + - *500 - *17 - *19 responses: @@ -78721,9 +78779,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *359 - *360 - - *499 + - *361 + - *500 - *17 - *19 responses: @@ -78733,7 +78791,7 @@ paths: application/json: schema: type: array - items: &726 + items: &727 title: Status description: The status of a commit. type: object @@ -78814,7 +78872,7 @@ paths: site_admin: false headers: Link: *71 - '301': *363 + '301': *364 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78842,8 +78900,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -78872,20 +78930,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *503 - required: *504 + properties: *504 + required: *505 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &505 + properties: &506 url: type: string format: uri html_url: type: string format: uri - required: &506 + required: &507 - url - html_url nullable: true @@ -78899,26 +78957,26 @@ paths: contributing: title: Community Health File type: object - properties: *505 - required: *506 + properties: *506 + required: *507 nullable: true readme: title: Community Health File type: object - properties: *505 - required: *506 + properties: *506 + required: *507 nullable: true issue_template: title: Community Health File type: object - properties: *505 - required: *506 + properties: *506 + required: *507 nullable: true pull_request_template: title: Community Health File type: object - properties: *505 - required: *506 + properties: *506 + required: *507 nullable: true required: - code_of_conduct @@ -79045,8 +79103,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *359 - *360 + - *361 - *19 - *17 - name: basehead @@ -79089,8 +79147,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *495 - merge_base_commit: *495 + base_commit: *496 + merge_base_commit: *496 status: type: string enum: @@ -79110,10 +79168,10 @@ paths: example: 6 commits: type: array - items: *495 + items: *496 files: type: array - items: *507 + items: *508 required: - url - html_url @@ -79359,12 +79417,12 @@ paths: schema: type: string examples: - default: *508 + default: *509 application/vnd.github.patch: schema: type: string examples: - default: *509 + default: *510 '404': *6 '500': *56 '503': *123 @@ -79409,8 +79467,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *359 - *360 + - *361 - name: path description: path parameter in: path @@ -79570,7 +79628,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &510 + response-if-content-is-a-file-github-object: &511 summary: Response if content is a file value: type: file @@ -79702,7 +79760,7 @@ paths: - size - type - url - - &644 + - &645 title: Content File description: Content File type: object @@ -79903,7 +79961,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *510 + response-if-content-is-a-file: *511 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -79972,7 +80030,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *511 + '302': *512 '304': *38 x-github: githubCloudOnly: false @@ -80025,8 +80083,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *359 - *360 + - *361 - name: path description: path parameter in: path @@ -80119,7 +80177,7 @@ paths: description: Response content: application/json: - schema: &512 + schema: &513 title: File Commit description: File Commit type: object @@ -80271,7 +80329,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: example-for-creating-a-file: value: @@ -80325,7 +80383,7 @@ paths: schema: oneOf: - *3 - - &542 + - &543 description: Repository rule violation was detected type: object properties: @@ -80346,7 +80404,7 @@ paths: items: type: object properties: - placeholder_id: &717 + placeholder_id: &718 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -80378,8 +80436,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *359 - *360 + - *361 - name: path description: path parameter in: path @@ -80440,7 +80498,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: default: value: @@ -80495,8 +80553,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *359 - *360 + - *361 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -80625,8 +80683,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: - - *359 - *360 + - *361 responses: '200': description: Response @@ -80777,8 +80835,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *359 - *360 + - *361 - *213 - *214 - *215 @@ -80791,10 +80849,11 @@ paths: schema: type: string - *218 - - *513 + - *514 - *219 - *220 - *221 + - *222 - *63 - *48 - *49 @@ -80806,7 +80865,7 @@ paths: application/json: schema: type: array - items: &517 + items: &518 type: object description: A Dependabot alert. properties: @@ -80853,7 +80912,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *514 + security_advisory: *515 security_vulnerability: *67 url: *192 html_url: *193 @@ -80884,8 +80943,8 @@ paths: nullable: true maxLength: 280 fixed_at: *194 - auto_dismissed_at: *515 - dismissal_request: *516 + auto_dismissed_at: *516 + dismissal_request: *517 assignees: type: array description: The users assigned to this alert. @@ -80918,6 +80977,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -81039,6 +81099,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -81140,9 +81201,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *359 - *360 - - &518 + - *361 + - &519 name: alert_number in: path description: |- @@ -81157,7 +81218,7 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: default: value: @@ -81169,6 +81230,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -81289,9 +81351,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *359 - *360 - - *518 + - *361 + - *519 requestBody: required: true content: @@ -81364,7 +81426,7 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: default: value: @@ -81376,6 +81438,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -81494,8 +81557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -81513,7 +81576,7 @@ paths: type: integer secrets: type: array - items: &521 + items: &522 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -81566,16 +81629,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *519 + schema: *520 examples: - default: *520 + default: *521 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81595,15 +81658,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '200': description: Response content: application/json: - schema: *521 + schema: *522 examples: default: value: @@ -81629,8 +81692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 requestBody: required: true @@ -81683,8 +81746,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *359 - *360 + - *361 - *172 responses: '204': @@ -81707,8 +81770,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: - - *359 - *360 + - *361 - 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 @@ -81871,8 +81934,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: - - *359 - *360 + - *361 responses: '200': description: Response @@ -82110,8 +82173,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: - - *359 - *360 + - *361 - name: sbom_uuid in: path required: true @@ -82122,7 +82185,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *522 + Location: *523 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -82143,8 +82206,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: - - *359 - *360 + - *361 responses: '201': description: Response @@ -82182,8 +82245,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: - - *359 - *360 + - *361 requestBody: required: true content: @@ -82258,7 +82321,7 @@ paths: - version - url additionalProperties: false - metadata: &523 + metadata: &524 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -82291,7 +82354,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *523 + metadata: *524 resolved: type: object description: A collection of resolved package dependencies. @@ -82304,7 +82367,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *523 + metadata: *524 relationship: type: string description: A notation of whether a dependency is requested @@ -82433,8 +82496,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *359 - *360 + - *361 - name: sha description: The SHA recorded at creation time. in: query @@ -82474,9 +82537,9 @@ paths: application/json: schema: type: array - items: *524 + items: *525 examples: - default: *525 + default: *526 headers: Link: *71 x-github: @@ -82542,8 +82605,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -82624,7 +82687,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: simple-example: summary: Simple example @@ -82697,9 +82760,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *359 - *360 - - &526 + - *361 + - &527 name: deployment_id description: deployment_id parameter in: path @@ -82711,7 +82774,7 @@ paths: description: Response content: application/json: - schema: *524 + schema: *525 examples: default: value: @@ -82776,9 +82839,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *359 - *360 - - *526 + - *361 + - *527 responses: '204': description: Response @@ -82800,9 +82863,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *359 - *360 - - *526 + - *361 + - *527 - *17 - *19 responses: @@ -82812,7 +82875,7 @@ paths: application/json: schema: type: array - items: &527 + items: &528 title: Deployment Status description: The status of a deployment. type: object @@ -82973,9 +83036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *359 - *360 - - *526 + - *361 + - *527 requestBody: required: true content: @@ -83050,9 +83113,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: &528 + default: &529 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -83108,9 +83171,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *359 - *360 - - *526 + - *361 + - *527 - name: status_id in: path required: true @@ -83121,9 +83184,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 '404': *6 x-github: githubCloudOnly: false @@ -83148,8 +83211,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -83206,8 +83269,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -83224,7 +83287,7 @@ paths: type: integer environments: type: array - items: &530 + items: &531 title: Environment description: Details of a deployment environment type: object @@ -83276,7 +83339,7 @@ paths: type: type: string example: wait_timer - wait_timer: &532 + wait_timer: &533 type: integer example: 30 description: The amount of time to delay a job after @@ -83313,7 +83376,7 @@ paths: items: type: object properties: - type: *529 + type: *530 reviewer: anyOf: - *4 @@ -83337,7 +83400,7 @@ paths: - id - node_id - type - deployment_branch_policy: &533 + deployment_branch_policy: &534 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -83453,9 +83516,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *359 - *360 - - &531 + - *361 + - &532 name: environment_name in: path required: true @@ -83468,9 +83531,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: &534 + default: &535 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -83554,9 +83617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *359 - *360 - - *531 + - *361 + - *532 requestBody: required: false content: @@ -83565,7 +83628,7 @@ paths: type: object nullable: true properties: - wait_timer: *532 + wait_timer: *533 prevent_self_review: type: boolean example: false @@ -83582,13 +83645,13 @@ paths: items: type: object properties: - type: *529 + type: *530 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *533 + deployment_branch_policy: *534 additionalProperties: false examples: default: @@ -83608,9 +83671,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *531 examples: - default: *534 + default: *535 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -83634,9 +83697,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *359 - *360 - - *531 + - *361 + - *532 responses: '204': description: Default response @@ -83661,9 +83724,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *359 - *360 - - *531 + - *361 + - *532 - *17 - *19 responses: @@ -83681,7 +83744,7 @@ paths: example: 2 branch_policies: type: array - items: &535 + items: &536 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -83738,9 +83801,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *359 - *360 - - *531 + - *361 + - *532 requestBody: required: true content: @@ -83786,9 +83849,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: - example-wildcard: &536 + example-wildcard: &537 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -83830,10 +83893,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *359 - *360 - - *531 - - &537 + - *361 + - *532 + - &538 name: branch_policy_id in: path required: true @@ -83845,9 +83908,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: - default: *536 + default: *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83866,10 +83929,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *359 - *360 - - *531 - - *537 + - *361 + - *532 + - *538 requestBody: required: true content: @@ -83897,9 +83960,9 @@ paths: description: Response content: application/json: - schema: *535 + schema: *536 examples: - default: *536 + default: *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83918,10 +83981,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *359 - *360 - - *531 - - *537 + - *361 + - *532 + - *538 responses: '204': description: Response @@ -83946,9 +84009,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *531 + - *532 + - *361 - *360 - - *359 responses: '200': description: List of deployment protection rules @@ -83964,7 +84027,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &538 + items: &539 title: Deployment protection rule description: Deployment protection rule type: object @@ -83983,7 +84046,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &539 + app: &540 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -84082,9 +84145,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: - - *531 + - *532 + - *361 - *360 - - *359 requestBody: content: application/json: @@ -84105,9 +84168,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *538 + schema: *539 examples: - default: &540 + default: &541 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -84142,9 +84205,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: - - *531 + - *532 + - *361 - *360 - - *359 - *19 - *17 responses: @@ -84163,7 +84226,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *539 + items: *540 examples: default: value: @@ -84198,10 +84261,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *359 - *360 - - *531 - - &541 + - *361 + - *532 + - &542 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -84213,9 +84276,9 @@ paths: description: Response content: application/json: - schema: *538 + schema: *539 examples: - default: *540 + default: *541 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84236,10 +84299,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *531 + - *532 + - *361 - *360 - - *359 - - *541 + - *542 responses: '204': description: Response @@ -84265,9 +84328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *359 - *360 - - *531 + - *361 + - *532 - *17 - *19 responses: @@ -84285,9 +84348,9 @@ paths: type: integer secrets: type: array - items: *403 + items: *404 examples: - default: *404 + default: *405 headers: Link: *71 x-github: @@ -84312,9 +84375,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *359 - *360 - - *531 + - *361 + - *532 responses: '200': description: Response @@ -84344,18 +84407,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *359 - *360 - - *531 + - *361 + - *532 - *172 responses: '200': description: Response content: application/json: - schema: *403 + schema: *404 examples: - default: *417 + default: *418 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84377,9 +84440,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *359 - *360 - - *531 + - *361 + - *532 - *172 requestBody: required: true @@ -84437,9 +84500,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *359 - *360 - - *531 + - *361 + - *532 - *172 responses: '204': @@ -84465,9 +84528,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *359 - *360 - - *531 + - *361 + - *532 - *181 - *19 responses: @@ -84485,9 +84548,9 @@ paths: type: integer variables: type: array - items: *405 + items: *406 examples: - default: *406 + default: *407 headers: Link: *71 x-github: @@ -84510,9 +84573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *359 - *360 - - *531 + - *361 + - *532 requestBody: required: true content: @@ -84564,18 +84627,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *359 - *360 - - *531 + - *361 + - *532 - *175 responses: '200': description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *418 + default: *419 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84596,10 +84659,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *359 - *360 + - *361 - *175 - - *531 + - *532 requestBody: required: true content: @@ -84641,10 +84704,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *359 - *360 + - *361 - *175 - - *531 + - *532 responses: '204': description: Response @@ -84666,8 +84729,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -84735,8 +84798,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *359 - *360 + - *361 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -84895,8 +84958,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *359 - *360 + - *361 requestBody: required: false content: @@ -84928,9 +84991,9 @@ paths: description: Response content: application/json: - schema: *362 + schema: *363 examples: - default: *364 + default: *365 '400': *14 '422': *15 '403': *29 @@ -84951,8 +85014,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -85012,7 +85075,7 @@ paths: schema: oneOf: - *133 - - *542 + - *543 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85037,8 +85100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *359 - *360 + - *361 - name: file_sha in: path required: true @@ -85137,8 +85200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -85247,7 +85310,7 @@ paths: description: Response content: application/json: - schema: &543 + schema: &544 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -85461,15 +85524,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *359 - *360 - - *496 + - *361 + - *497 responses: '200': description: Response content: application/json: - schema: *543 + schema: *544 examples: default: value: @@ -85525,9 +85588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *359 - *360 - - &544 + - *361 + - &545 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. @@ -85544,7 +85607,7 @@ paths: application/json: schema: type: array - items: &545 + items: &546 title: Git Reference description: Git references within a repository type: object @@ -85619,17 +85682,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *359 - *360 - - *544 + - *361 + - *545 responses: '200': description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: &546 + default: &547 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -85658,8 +85721,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -85688,9 +85751,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -85716,9 +85779,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *359 - *360 - - *544 + - *361 + - *545 requestBody: required: true content: @@ -85747,9 +85810,9 @@ paths: description: Response content: application/json: - schema: *545 + schema: *546 examples: - default: *546 + default: *547 '422': *15 '409': *55 x-github: @@ -85767,9 +85830,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *359 - *360 - - *544 + - *361 + - *545 responses: '204': description: Response @@ -85824,8 +85887,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -85892,7 +85955,7 @@ paths: description: Response content: application/json: - schema: &548 + schema: &549 title: Git Tag description: Metadata for a Git tag type: object @@ -85943,7 +86006,7 @@ paths: - sha - type - url - verification: *547 + verification: *548 required: - sha - url @@ -85953,7 +86016,7 @@ paths: - tag - message examples: - default: &549 + default: &550 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -86026,8 +86089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *359 - *360 + - *361 - name: tag_sha in: path required: true @@ -86038,9 +86101,9 @@ paths: description: Response content: application/json: - schema: *548 + schema: *549 examples: - default: *549 + default: *550 '404': *6 '409': *55 x-github: @@ -86064,8 +86127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -86138,7 +86201,7 @@ paths: description: Response content: application/json: - schema: &550 + schema: &551 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -86234,8 +86297,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *359 - *360 + - *361 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -86258,7 +86321,7 @@ paths: description: Response content: application/json: - schema: *550 + schema: *551 examples: default-response: summary: Default response @@ -86316,8 +86379,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -86360,8 +86423,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -86371,7 +86434,7 @@ paths: application/json: schema: type: array - items: &551 + items: &552 title: Webhook description: Webhooks for repositories. type: object @@ -86425,7 +86488,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &843 + last_response: &844 title: Hook Response type: object properties: @@ -86499,8 +86562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *359 - *360 + - *361 requestBody: required: false content: @@ -86552,9 +86615,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: &552 + default: &553 value: type: Repository id: 12345678 @@ -86602,17 +86665,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *359 - *360 - - *232 + - *361 + - *233 responses: '200': description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *552 + default: *553 '404': *6 x-github: githubCloudOnly: false @@ -86632,9 +86695,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *359 - *360 - - *232 + - *361 + - *233 requestBody: required: true content: @@ -86679,9 +86742,9 @@ paths: description: Response content: application/json: - schema: *551 + schema: *552 examples: - default: *552 + default: *553 '422': *15 '404': *6 x-github: @@ -86702,9 +86765,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *359 - *360 - - *232 + - *361 + - *233 responses: '204': description: Response @@ -86728,9 +86791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *359 - *360 - - *232 + - *361 + - *233 responses: '200': description: Response @@ -86757,9 +86820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *359 - *360 - - *232 + - *361 + - *233 requestBody: required: false content: @@ -86803,12 +86866,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *359 - *360 - - *232 - - *17 + - *361 - *233 + - *17 - *234 + - *235 responses: '200': description: Response @@ -86816,9 +86879,9 @@ paths: application/json: schema: type: array - items: *235 + items: *236 examples: - default: *236 + default: *237 '400': *14 '422': *15 x-github: @@ -86837,18 +86900,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *359 - *360 - - *232 + - *361 + - *233 - *16 responses: '200': description: Response content: application/json: - schema: *237 + schema: *238 examples: - default: *238 + default: *239 '400': *14 '422': *15 x-github: @@ -86867,9 +86930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *359 - *360 - - *232 + - *361 + - *233 - *16 responses: '202': *40 @@ -86892,9 +86955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *359 - *360 - - *232 + - *361 + - *233 responses: '204': description: Response @@ -86919,9 +86982,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *359 - *360 - - *232 + - *361 + - *233 responses: '204': description: Response @@ -86944,8 +87007,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response if immutable releases are enabled @@ -86991,8 +87054,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-immutable-releases parameters: - - *359 - *360 + - *361 responses: '204': *60 '409': *55 @@ -87012,8 +87075,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-immutable-releases parameters: - - *359 - *360 + - *361 responses: '204': *60 '409': *55 @@ -87070,14 +87133,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: &553 + schema: &554 title: Import description: A repository import from an external source. type: object @@ -87176,7 +87239,7 @@ paths: - html_url - authors_url examples: - default: &556 + default: &557 value: vcs: subversion use_lfs: true @@ -87192,7 +87255,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': &554 + '503': &555 description: Unavailable due to service under maintenance. content: application/json: @@ -87221,8 +87284,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -87270,7 +87333,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: default: value: @@ -87295,7 +87358,7 @@ paths: type: string '422': *15 '404': *6 - '503': *554 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87323,8 +87386,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *359 - *360 + - *361 requestBody: required: false content: @@ -87373,7 +87436,7 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: example-1: summary: Example 1 @@ -87421,7 +87484,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': *554 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87444,12 +87507,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *359 - *360 + - *361 responses: '204': description: Response - '503': *554 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87475,9 +87538,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *359 - *360 - - &771 + - *361 + - &772 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -87491,7 +87554,7 @@ paths: application/json: schema: type: array - items: &555 + items: &556 title: Porter Author description: Porter Author type: object @@ -87545,7 +87608,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': *554 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87570,8 +87633,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *359 - *360 + - *361 - name: author_id in: path required: true @@ -87601,7 +87664,7 @@ paths: description: Response content: application/json: - schema: *555 + schema: *556 examples: default: value: @@ -87614,7 +87677,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *554 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87638,8 +87701,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -87680,7 +87743,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *554 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87708,8 +87771,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -87736,11 +87799,11 @@ paths: description: Response content: application/json: - schema: *553 + schema: *554 examples: - default: *556 + default: *557 '422': *15 - '503': *554 + '503': *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87763,8 +87826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -87772,8 +87835,8 @@ paths: application/json: schema: *22 examples: - default: *557 - '301': *363 + default: *558 + '301': *364 '404': *6 x-github: githubCloudOnly: false @@ -87793,8 +87856,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -87802,12 +87865,12 @@ paths: application/json: schema: anyOf: - - *251 + - *252 - type: object properties: {} additionalProperties: false examples: - default: &559 + default: &560 value: limit: collaborators_only origin: repository @@ -87832,13 +87895,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: application/json: - schema: *558 + schema: *559 examples: default: summary: Example request body @@ -87850,9 +87913,9 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: - default: *559 + default: *560 '409': description: Response x-github: @@ -87874,8 +87937,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -87902,8 +87965,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -87957,13 +88020,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: application/json: - schema: &560 + schema: &561 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -88013,13 +88076,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: application/json: - schema: *560 + schema: *561 examples: default: summary: Example request body @@ -88052,8 +88115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -88106,8 +88169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -88183,8 +88246,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -88194,9 +88257,9 @@ paths: application/json: schema: type: array - items: *561 + items: *562 examples: - default: &764 + default: &765 value: - id: 1 repository: @@ -88327,9 +88390,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *359 - *360 - - *255 + - *361 + - *256 requestBody: required: false content: @@ -88358,7 +88421,7 @@ paths: description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -88489,9 +88552,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *359 - *360 - - *255 + - *361 + - *256 responses: '204': description: Response @@ -88514,8 +88577,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -88523,9 +88586,9 @@ paths: application/json: schema: type: array - items: *259 + items: *260 examples: - default: *562 + default: *563 '404': *6 x-github: githubCloudOnly: false @@ -88554,8 +88617,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *359 - *360 + - *361 - 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 @@ -88617,7 +88680,7 @@ paths: required: false schema: type: string - - *262 + - *263 - name: sort description: What to sort results by. in: query @@ -88642,7 +88705,7 @@ paths: type: array items: *89 examples: - default: &577 + default: &578 value: - id: 1 node_id: MDU6SXNzdWUx @@ -88791,7 +88854,7 @@ paths: state_reason: completed headers: Link: *71 - '301': *363 + '301': *364 '422': *15 '404': *6 x-github: @@ -88820,8 +88883,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -88930,7 +88993,7 @@ paths: application/json: schema: *89 examples: - default: &574 + default: &575 value: id: 1 node_id: MDU6SXNzdWUx @@ -89131,8 +89194,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *359 - *360 + - *361 - *113 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -89153,9 +89216,9 @@ paths: application/json: schema: type: array - items: *563 + items: *564 examples: - default: &576 + default: &577 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -89214,17 +89277,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *359 - *360 + - *361 - *105 responses: '200': description: Response content: application/json: - schema: *563 + schema: *564 examples: - default: &564 + default: &565 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -89280,8 +89343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *359 - *360 + - *361 - *105 requestBody: required: true @@ -89304,9 +89367,9 @@ paths: description: Response content: application/json: - schema: *563 + schema: *564 examples: - default: *564 + default: *565 '422': *15 x-github: githubCloudOnly: false @@ -89324,8 +89387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *359 - *360 + - *361 - *105 responses: '204': @@ -89354,15 +89417,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#pin-an-issue-comment parameters: - - *359 - *360 + - *361 - *105 responses: '200': description: Response content: application/json: - schema: *563 + schema: *564 examples: default: value: @@ -89435,8 +89498,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#unpin-an-issue-comment parameters: - - *359 - *360 + - *361 - *105 responses: '204': @@ -89462,8 +89525,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *359 - *360 + - *361 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -89490,9 +89553,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *565 + default: *566 headers: Link: *71 '404': *6 @@ -89513,8 +89576,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *359 - *360 + - *361 - *105 requestBody: required: true @@ -89547,16 +89610,16 @@ paths: description: Reaction exists content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '201': description: Reaction created content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '422': *15 x-github: githubCloudOnly: false @@ -89578,10 +89641,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *359 - *360 + - *361 - *105 - - *566 + - *567 responses: '204': description: Response @@ -89601,8 +89664,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -89612,7 +89675,7 @@ paths: application/json: schema: type: array - items: &573 + items: &574 title: Issue Event description: Issue Event type: object @@ -89655,9 +89718,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *567 - required: *568 - x-github-breaking-changes: *569 + properties: *568 + required: *569 + x-github-breaking-changes: *570 nullable: true label: title: Issue Event Label @@ -89766,7 +89829,7 @@ paths: required: - from - to - issue_type: &570 + issue_type: &571 title: Issue Type description: The type of issue. type: object @@ -89794,14 +89857,14 @@ paths: required: - id - name - prev_issue_type: *570 + prev_issue_type: *571 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &571 + properties: &572 number: type: integer description: The number of the referenced issue. @@ -89839,7 +89902,7 @@ paths: - id - node_id - name - required: &572 + required: &573 - number - title - state @@ -89851,24 +89914,24 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -89879,7 +89942,7 @@ paths: is disabled or the event type does not support intent. type: object nullable: true - properties: &578 + properties: &579 rationale: type: string description: The reasoning the agent provided for the change. @@ -90092,8 +90155,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *359 - *360 + - *361 - name: event_id in: path required: true @@ -90104,7 +90167,7 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: default: value: @@ -90331,9 +90394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *359 - *360 - - &575 + - *361 + - &576 name: issue_number description: The number that identifies the issue. in: path @@ -90349,7 +90412,7 @@ paths: examples: default: summary: Issue - value: *574 + value: *575 pinned_comment: summary: Issue with pinned comment value: @@ -90554,7 +90617,7 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *363 + '301': *364 '404': *6 '410': *33 '304': *38 @@ -90581,9 +90644,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: false content: @@ -90935,11 +90998,11 @@ paths: - already_applied - issue_already_closed examples: - default: *574 + default: *575 '422': *15 '503': *123 '403': *29 - '301': *363 + '301': *364 '404': *6 '410': *33 x-github: @@ -90969,9 +91032,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: false content: @@ -91021,7 +91084,7 @@ paths: application/json: schema: *89 examples: - default: *574 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91037,9 +91100,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: content: application/json: @@ -91066,7 +91129,7 @@ paths: application/json: schema: *89 examples: - default: *574 + default: *575 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91088,9 +91151,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: - - *359 - *360 - - *575 + - *361 + - *576 - name: assignee in: path required: true @@ -91130,9 +91193,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *96 - *17 - *19 @@ -91143,9 +91206,9 @@ paths: application/json: schema: type: array - items: *563 + items: *564 examples: - default: *576 + default: *577 headers: Link: *71 '404': *6 @@ -91178,9 +91241,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -91202,9 +91265,9 @@ paths: description: Response content: application/json: - schema: *563 + schema: *564 examples: - default: *564 + default: *565 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -91239,9 +91302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *17 - *19 responses: @@ -91253,10 +91316,10 @@ paths: type: array items: *89 examples: - default: *577 + default: *578 headers: Link: *71 - '301': *363 + '301': *364 '404': *6 '410': *33 x-github: @@ -91286,9 +91349,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -91312,13 +91375,13 @@ paths: application/json: schema: *89 examples: - default: *574 + default: *575 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *363 + '301': *364 '403': *29 '410': *33 '422': *15 @@ -91351,9 +91414,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *359 - *360 - - *575 + - *361 + - *576 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -91367,8 +91430,8 @@ paths: application/json: schema: *89 examples: - default: *574 - '301': *363 + default: *575 + '301': *364 '400': *14 '401': *25 '403': *29 @@ -91399,9 +91462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *17 - *19 responses: @@ -91413,10 +91476,10 @@ paths: type: array items: *89 examples: - default: *577 + default: *578 headers: Link: *71 - '301': *363 + '301': *364 '404': *6 '410': *33 x-github: @@ -91435,9 +91498,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *17 - *19 responses: @@ -91451,7 +91514,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &584 + - &585 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -91504,7 +91567,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - label - id @@ -91516,7 +91579,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &585 + - &586 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -91569,7 +91632,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - label - id @@ -91615,7 +91678,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - id - node_id @@ -91674,7 +91737,7 @@ paths: - performed_via_github_app - assignee - assigner - - &586 + - &587 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -91725,7 +91788,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &587 + - &588 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -91776,7 +91839,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &588 + - &589 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -91830,7 +91893,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &589 + - &590 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -91877,7 +91940,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &590 + - &591 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -91924,7 +91987,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &591 + - &592 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -91984,7 +92047,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &592 + - &593 title: Locked Issue Event description: Locked Issue Event type: object @@ -92032,7 +92095,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &593 + - &594 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -92098,7 +92161,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &594 + - &595 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -92164,7 +92227,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &595 + - &596 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -92230,7 +92293,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &596 + - &597 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -92286,7 +92349,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &601 + - &602 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -92319,7 +92382,7 @@ paths: nullable: true properties: *84 required: *85 - issue_type: *570 + issue_type: *571 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -92330,7 +92393,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - issue_type - id @@ -92342,7 +92405,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &602 + - &603 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -92375,7 +92438,7 @@ paths: nullable: true properties: *84 required: *85 - prev_issue_type: *570 + prev_issue_type: *571 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -92386,7 +92449,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - prev_issue_type - id @@ -92398,7 +92461,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &603 + - &604 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -92431,8 +92494,8 @@ paths: nullable: true properties: *84 required: *85 - issue_type: *570 - prev_issue_type: *570 + issue_type: *571 + prev_issue_type: *571 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -92443,7 +92506,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - issue_type - prev_issue_type @@ -92456,7 +92519,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &604 + - &605 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -92496,8 +92559,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - sub_issue - id @@ -92509,7 +92572,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &605 + - &606 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -92549,8 +92612,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - sub_issue - id @@ -92562,7 +92625,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &606 + - &607 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -92602,8 +92665,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - parent_issue - id @@ -92615,7 +92678,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &607 + - &608 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -92655,8 +92718,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - parent_issue - id @@ -92668,7 +92731,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &608 + - &609 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -92708,8 +92771,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - blocked_by - id @@ -92721,7 +92784,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &609 + - &610 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -92761,8 +92824,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - blocked_by - id @@ -92774,7 +92837,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &610 + - &611 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -92814,8 +92877,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - blocking - id @@ -92827,7 +92890,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &611 + - &612 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -92867,8 +92930,8 @@ paths: events). type: object nullable: true - properties: *571 - required: *572 + properties: *572 + required: *573 required: - blocking - id @@ -92932,9 +92995,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *17 - *19 responses: @@ -92944,9 +93007,9 @@ paths: application/json: schema: type: array - items: *579 + items: *580 examples: - default: &580 + default: &581 value: - issue_field_id: 1 issue_field_name: DRI @@ -92986,7 +93049,7 @@ paths: color: green headers: Link: *71 - '301': *363 + '301': *364 '404': *6 '410': *33 x-github: @@ -93017,9 +93080,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -93089,9 +93152,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *579 + items: *580 examples: - default: *580 + default: *581 '400': *14 '403': *29 '404': *6 @@ -93127,9 +93190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -93194,9 +93257,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *579 + items: *580 examples: - default: *580 + default: *581 '400': *14 '403': *29 '404': *6 @@ -93227,10 +93290,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: - - *359 - *360 - - *575 - - *258 + - *361 + - *576 + - *259 responses: '204': description: Issue field value deleted successfully @@ -93255,9 +93318,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *17 - *19 responses: @@ -93269,7 +93332,7 @@ paths: type: array items: *88 examples: - default: &581 + default: &582 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -93287,7 +93350,7 @@ paths: default: false headers: Link: *71 - '301': *363 + '301': *364 '404': *6 '410': *33 x-github: @@ -93305,9 +93368,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: false content: @@ -93387,8 +93450,8 @@ paths: type: array items: *88 examples: - default: *581 - '301': *363 + default: *582 + '301': *364 '404': *6 '410': *33 '422': *15 @@ -93407,9 +93470,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: false content: @@ -93471,8 +93534,8 @@ paths: type: array items: *88 examples: - default: *581 - '301': *363 + default: *582 + '301': *364 '404': *6 '410': *33 '422': *15 @@ -93491,13 +93554,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 responses: '204': description: Response - '301': *363 + '301': *364 '404': *6 '410': *33 x-github: @@ -93518,9 +93581,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 - name: name in: path required: true @@ -93544,7 +93607,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *363 + '301': *364 '404': *6 '410': *33 x-github: @@ -93566,9 +93629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: false content: @@ -93614,9 +93677,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 responses: '204': description: Response @@ -93646,9 +93709,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#get-parent-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 responses: '200': description: Response @@ -93656,8 +93719,8 @@ paths: application/json: schema: *89 examples: - default: *574 - '301': *363 + default: *575 + '301': *364 '404': *6 '410': *33 x-github: @@ -93676,9 +93739,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 - 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. @@ -93704,9 +93767,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *565 + default: *566 headers: Link: *71 '404': *6 @@ -93728,9 +93791,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -93762,16 +93825,16 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '201': description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '422': *15 x-github: githubCloudOnly: false @@ -93793,10 +93856,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *359 - *360 - - *575 - - *566 + - *361 + - *576 + - *567 responses: '204': description: Response @@ -93825,9 +93888,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -93851,7 +93914,7 @@ paths: application/json: schema: *89 examples: - default: *574 + default: *575 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -93884,9 +93947,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *17 - *19 responses: @@ -93898,7 +93961,7 @@ paths: type: array items: *89 examples: - default: *577 + default: *578 headers: Link: *71 '404': *6 @@ -93930,9 +93993,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -93961,7 +94024,7 @@ paths: application/json: schema: *89 examples: - default: *574 + default: *575 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -93988,9 +94051,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 requestBody: required: true content: @@ -94023,7 +94086,7 @@ paths: application/json: schema: *89 examples: - default: *574 + default: *575 '403': *29 '404': *6 '422': *7 @@ -94052,9 +94115,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-issue-suggestions parameters: - - *359 - *360 - - *575 + - *361 + - *576 - name: state in: query required: false @@ -94091,7 +94154,7 @@ paths: application/json: schema: type: array - items: &582 + items: &583 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -94243,9 +94306,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#approve-an-issue-suggestion parameters: - - *359 - *360 - - *575 + - *361 + - *576 - name: suggestion_id in: path required: true @@ -94257,9 +94320,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: &583 + default: &584 value: id: 12 issue_id: 4567 @@ -94297,9 +94360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *359 - *360 - - *575 + - *361 + - *576 - name: suggestion_id in: path required: true @@ -94311,9 +94374,9 @@ paths: description: Response content: application/json: - schema: *582 + schema: *583 examples: - default: *583 + default: *584 '403': *29 '404': *6 '422': *15 @@ -94333,9 +94396,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *359 - *360 - - *575 + - *361 + - *576 - *17 - *19 - name: exclude @@ -94356,7 +94419,6 @@ paths: description: Timeline Event type: object anyOf: - - *584 - *585 - *586 - *587 @@ -94369,6 +94431,7 @@ paths: - *594 - *595 - *596 + - *597 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -94429,15 +94492,15 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *597 - required: *598 + properties: *598 + required: *599 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *599 - required: *600 + properties: *600 + required: *601 nullable: true required: - event @@ -94692,7 +94755,7 @@ paths: type: string comments: type: array - items: &632 + items: &633 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -94907,7 +94970,7 @@ paths: type: string comments: type: array - items: *492 + items: *493 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -94951,7 +95014,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - id - node_id @@ -95052,7 +95115,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *578 + properties: *579 required: - id - node_id @@ -95063,7 +95126,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *601 - *602 - *603 - *604 @@ -95074,6 +95136,7 @@ paths: - *609 - *610 - *611 + - *612 examples: default: value: @@ -95247,8 +95310,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -95258,7 +95321,7 @@ paths: application/json: schema: type: array - items: &612 + items: &613 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -95324,8 +95387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -95361,9 +95424,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: &613 + default: &614 value: id: 1 key: ssh-rsa AAA... @@ -95397,9 +95460,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *359 - *360 - - &614 + - *361 + - &615 name: key_id description: The unique identifier of the key. in: path @@ -95411,9 +95474,9 @@ paths: description: Response content: application/json: - schema: *612 + schema: *613 examples: - default: *613 + default: *614 '404': *6 x-github: githubCloudOnly: false @@ -95431,9 +95494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *359 - *360 - - *614 + - *361 + - *615 responses: '204': description: Response @@ -95453,8 +95516,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -95466,7 +95529,7 @@ paths: type: array items: *88 examples: - default: *581 + default: *582 headers: Link: *71 '404': *6 @@ -95487,8 +95550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -95526,7 +95589,7 @@ paths: application/json: schema: *88 examples: - default: &615 + default: &616 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -95558,8 +95621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *359 - *360 + - *361 - name: name in: path required: true @@ -95572,7 +95635,7 @@ paths: application/json: schema: *88 examples: - default: *615 + default: *616 '404': *6 x-github: githubCloudOnly: false @@ -95589,8 +95652,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *359 - *360 + - *361 - name: name in: path required: true @@ -95655,8 +95718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *359 - *360 + - *361 - name: name in: path required: true @@ -95682,8 +95745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -95722,9 +95785,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *359 - *360 - - *465 + - *361 + - *466 responses: '200': description: Response @@ -95869,8 +95932,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -95935,8 +95998,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -95970,9 +96033,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *495 + schema: *496 examples: - default: *616 + default: *617 '204': description: Response when already merged '404': @@ -95997,8 +96060,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *359 - *360 + - *361 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -96039,12 +96102,12 @@ paths: application/json: schema: type: array - items: &617 + items: &618 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *296 - required: *297 + properties: *297 + required: *298 examples: default: value: @@ -96100,8 +96163,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -96141,9 +96204,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: &618 + default: &619 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -96202,9 +96265,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *359 - *360 - - &619 + - *361 + - &620 name: milestone_number description: The number that identifies the milestone. in: path @@ -96216,9 +96279,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 '404': *6 x-github: githubCloudOnly: false @@ -96235,9 +96298,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *359 - *360 - - *619 + - *361 + - *620 requestBody: required: false content: @@ -96275,9 +96338,9 @@ paths: description: Response content: application/json: - schema: *617 + schema: *618 examples: - default: *618 + default: *619 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96293,9 +96356,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *359 - *360 - - *619 + - *361 + - *620 responses: '204': description: Response @@ -96316,9 +96379,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *359 - *360 - - *619 + - *361 + - *620 - *17 - *19 responses: @@ -96330,7 +96393,7 @@ paths: type: array items: *88 examples: - default: *581 + default: *582 headers: Link: *71 x-github: @@ -96349,12 +96412,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *359 - *360 - - *620 + - *361 - *621 - - *96 - *622 + - *96 + - *623 - *17 - *19 responses: @@ -96366,7 +96429,7 @@ paths: type: array items: *116 examples: - default: *623 + default: *624 headers: Link: *71 x-github: @@ -96390,8 +96453,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *359 - *360 + - *361 requestBody: required: false content: @@ -96449,14 +96512,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: &624 + schema: &625 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -96581,7 +96644,7 @@ paths: - custom_404 - public examples: - default: &625 + default: &626 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -96622,8 +96685,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -96677,9 +96740,9 @@ paths: description: Response content: application/json: - schema: *624 + schema: *625 examples: - default: *625 + default: *626 '422': *15 '409': *55 x-github: @@ -96702,8 +96765,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -96802,8 +96865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -96829,8 +96892,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -96840,7 +96903,7 @@ paths: application/json: schema: type: array - items: &626 + items: &627 title: Page Build description: Page Build type: object @@ -96934,8 +96997,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *359 - *360 + - *361 responses: '201': description: Response @@ -96980,16 +97043,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *626 + schema: *627 examples: - default: &627 + default: &628 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -97037,8 +97100,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *359 - *360 + - *361 - name: build_id in: path required: true @@ -97049,9 +97112,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: - default: *627 + default: *628 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -97071,8 +97134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -97177,9 +97240,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *359 - *360 - - &628 + - *361 + - &629 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -97237,9 +97300,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *359 - *360 - - *628 + - *361 + - *629 responses: '204': *60 '404': *6 @@ -97266,8 +97329,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -97525,8 +97588,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: - - *359 - *360 + - *361 responses: '200': description: Private vulnerability reporting status @@ -97563,8 +97626,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': *60 '422': *14 @@ -97585,8 +97648,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': *60 '422': *14 @@ -97608,8 +97671,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -97617,7 +97680,7 @@ paths: application/json: schema: type: array - items: *311 + items: *312 examples: default: value: @@ -97648,8 +97711,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: - - *359 - *360 + - *361 requestBody: required: true content: @@ -97661,7 +97724,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *311 + items: *312 required: - properties examples: @@ -97711,8 +97774,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *359 - *360 + - *361 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -97772,9 +97835,9 @@ paths: application/json: schema: type: array - items: *457 + items: *458 examples: - default: *629 + default: *630 headers: Link: *71 '304': *38 @@ -97806,8 +97869,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -97872,7 +97935,7 @@ paths: description: Response content: application/json: - schema: &634 + schema: &635 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -97983,8 +98046,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *296 - required: *297 + properties: *297 + required: *298 nullable: true active_lock_reason: type: string @@ -98027,7 +98090,7 @@ paths: items: *4 requested_teams: type: array - items: *351 + items: *352 head: type: object properties: @@ -98065,14 +98128,14 @@ paths: _links: type: object properties: - comments: *298 - commits: *298 - statuses: *298 - html: *298 - issue: *298 - review_comments: *298 - review_comment: *298 - self: *298 + comments: *299 + commits: *299 + statuses: *299 + html: *299 + issue: *299 + review_comments: *299 + review_comment: *299 + self: *299 required: - comments - commits @@ -98083,8 +98146,8 @@ paths: - review_comment - self author_association: *86 - auto_merge: *630 - stack: *631 + auto_merge: *631 + stack: *632 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -98270,7 +98333,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &635 + default: &636 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -98808,8 +98871,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *359 - *360 + - *361 - name: sort in: query required: false @@ -98838,9 +98901,9 @@ paths: application/json: schema: type: array - items: *632 + items: *633 examples: - default: &637 + default: &638 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -98917,17 +98980,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *359 - *360 + - *361 - *105 responses: '200': description: Response content: application/json: - schema: *632 + schema: *633 examples: - default: &633 + default: &634 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -99002,8 +99065,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *359 - *360 + - *361 - *105 requestBody: required: true @@ -99026,9 +99089,9 @@ paths: description: Response content: application/json: - schema: *632 + schema: *633 examples: - default: *633 + default: *634 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99044,8 +99107,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *359 - *360 + - *361 - *105 responses: '204': @@ -99067,8 +99130,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *359 - *360 + - *361 - *105 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -99095,9 +99158,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *565 + default: *566 headers: Link: *71 '404': *6 @@ -99118,8 +99181,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *359 - *360 + - *361 - *105 requestBody: required: true @@ -99152,16 +99215,16 @@ paths: description: Reaction exists content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '201': description: Reaction created content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '422': *15 x-github: githubCloudOnly: false @@ -99183,10 +99246,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *359 - *360 + - *361 - *105 - - *566 + - *567 responses: '204': description: Response @@ -99229,9 +99292,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *359 - *360 - - &636 + - *361 + - &637 name: pull_number description: The number that identifies the pull request. in: path @@ -99244,9 +99307,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 '304': *38 '404': *6 '406': @@ -99281,9 +99344,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: false content: @@ -99325,9 +99388,9 @@ paths: description: Response content: application/json: - schema: *634 + schema: *635 examples: - default: *635 + default: *636 '422': *15 '403': *29 x-github: @@ -99349,9 +99412,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: true content: @@ -99411,17 +99474,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '401': *25 '403': *29 '404': *6 @@ -99451,9 +99514,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 - *113 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -99474,9 +99537,9 @@ paths: application/json: schema: type: array - items: *632 + items: *633 examples: - default: *637 + default: *638 headers: Link: *71 x-github: @@ -99509,9 +99572,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: true content: @@ -99616,7 +99679,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *633 examples: example-for-a-multi-line-comment: value: @@ -99704,9 +99767,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *359 - *360 - - *636 + - *361 + - *637 - *105 requestBody: required: true @@ -99729,7 +99792,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *633 examples: default: value: @@ -99815,9 +99878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 - *17 - *19 responses: @@ -99827,9 +99890,9 @@ paths: application/json: schema: type: array - items: *495 + items: *496 examples: - default: *638 + default: *639 headers: Link: *71 x-github: @@ -99859,9 +99922,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *359 - *360 - - *636 + - *361 + - *637 - *17 - *19 responses: @@ -99871,7 +99934,7 @@ paths: application/json: schema: type: array - items: *507 + items: *508 examples: default: value: @@ -99909,9 +99972,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *359 - *360 - - *636 + - *361 + - *637 responses: '204': description: Response if pull request has been merged @@ -99934,9 +99997,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: false content: @@ -100058,9 +100121,9 @@ paths: category: pulls subcategory: pulls parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: false content: @@ -100112,7 +100175,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &639 + schema: &640 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -100197,7 +100260,7 @@ paths: merge queue content: application/json: - schema: *639 + schema: *640 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -100217,7 +100280,7 @@ paths: this pull request content: application/json: - schema: *639 + schema: *640 examples: response-if-a-merge-request-already-exists: value: @@ -100233,7 +100296,7 @@ paths: it is closed content: application/json: - schema: *639 + schema: *640 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -100265,9 +100328,9 @@ paths: category: pulls subcategory: pulls parameters: - - *359 - *360 - - *636 + - *361 + - *637 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -100280,7 +100343,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *639 + schema: *640 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -100328,9 +100391,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 responses: '200': description: Response @@ -100405,9 +100468,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: false content: @@ -100444,7 +100507,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *458 examples: default: value: @@ -100980,9 +101043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: true content: @@ -101016,7 +101079,7 @@ paths: description: Response content: application/json: - schema: *457 + schema: *458 examples: default: value: @@ -101532,9 +101595,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 - *17 - *19 responses: @@ -101544,7 +101607,7 @@ paths: application/json: schema: type: array - items: &640 + items: &641 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -101695,9 +101758,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: false content: @@ -101783,9 +101846,9 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: &642 + default: &643 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -101848,10 +101911,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *359 - *360 - - *636 - - &641 + - *361 + - *637 + - &642 name: review_id description: The unique identifier of the review. in: path @@ -101863,9 +101926,9 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: &643 + default: &644 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -101924,10 +101987,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *359 - *360 - - *636 - - *641 + - *361 + - *637 + - *642 requestBody: required: true content: @@ -101950,7 +102013,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: default: value: @@ -102012,18 +102075,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *359 - *360 - - *636 - - *641 + - *361 + - *637 + - *642 responses: '200': description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: *642 + default: *643 '422': *7 '404': *6 x-github: @@ -102050,10 +102113,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *359 - *360 - - *636 - - *641 + - *361 + - *637 + - *642 - *17 - *19 responses: @@ -102136,9 +102199,9 @@ paths: _links: type: object properties: - self: *298 - html: *298 - pull_request: *298 + self: *299 + html: *299 + pull_request: *299 required: - self - html @@ -102288,10 +102351,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *359 - *360 - - *636 - - *641 + - *361 + - *637 + - *642 requestBody: required: true content: @@ -102319,7 +102382,7 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: default: value: @@ -102382,10 +102445,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *359 - *360 - - *636 - - *641 + - *361 + - *637 + - *642 requestBody: required: true content: @@ -102420,9 +102483,9 @@ paths: description: Response content: application/json: - schema: *640 + schema: *641 examples: - default: *643 + default: *644 '404': *6 '422': *7 '403': *29 @@ -102444,9 +102507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *359 - *360 - - *636 + - *361 + - *637 requestBody: required: false content: @@ -102509,8 +102572,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *359 - *360 + - *361 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -102523,9 +102586,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: &645 + default: &646 value: type: file encoding: base64 @@ -102567,8 +102630,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *359 - *360 + - *361 - name: dir description: The alternate path to look for a README file in: path @@ -102588,9 +102651,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *645 examples: - default: *645 + default: *646 '404': *6 '422': *15 x-github: @@ -102612,8 +102675,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -102623,7 +102686,7 @@ paths: application/json: schema: type: array - items: *646 + items: *647 examples: default: value: @@ -102722,8 +102785,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -102799,9 +102862,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: - default: &650 + default: &651 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -102906,9 +102969,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *359 - *360 - - &648 + - *361 + - &649 name: asset_id description: The unique identifier of the asset. in: path @@ -102920,9 +102983,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: &649 + default: &650 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 @@ -102957,7 +103020,7 @@ paths: type: User site_admin: false '404': *6 - '302': *511 + '302': *512 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102973,9 +103036,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *359 - *360 - - *648 + - *361 + - *649 requestBody: required: false content: @@ -103003,9 +103066,9 @@ paths: description: Response content: application/json: - schema: *647 + schema: *648 examples: - default: *649 + default: *650 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103021,9 +103084,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *359 - *360 - - *648 + - *361 + - *649 responses: '204': description: Response @@ -103048,8 +103111,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -103134,16 +103197,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *359 - *360 + - *361 responses: '200': description: Response content: application/json: - schema: *646 + schema: *647 examples: - default: *650 + default: *651 '404': *6 x-github: githubCloudOnly: false @@ -103161,8 +103224,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *359 - *360 + - *361 - name: tag description: tag parameter in: path @@ -103175,9 +103238,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: - default: *650 + default: *651 '404': *6 x-github: githubCloudOnly: false @@ -103199,9 +103262,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *359 - *360 - - &651 + - *361 + - &652 name: release_id description: The unique identifier of the release. in: path @@ -103215,9 +103278,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: *646 + schema: *647 examples: - default: *650 + default: *651 '401': description: Unauthorized x-github: @@ -103241,9 +103304,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *359 - *360 - - *651 + - *361 + - *652 requestBody: required: false content: @@ -103307,9 +103370,9 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: - default: *650 + default: *651 '404': description: Not Found if the discussion category name is invalid content: @@ -103330,9 +103393,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *359 - *360 - - *651 + - *361 + - *652 responses: '204': description: Response @@ -103353,9 +103416,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *359 - *360 - - *651 + - *361 + - *652 - *17 - *19 responses: @@ -103365,7 +103428,7 @@ paths: application/json: schema: type: array - items: *647 + items: *648 examples: default: value: @@ -103446,9 +103509,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: - - *359 - *360 - - *651 + - *361 + - *652 - name: name in: query required: true @@ -103474,7 +103537,7 @@ paths: description: Response for successful upload content: application/json: - schema: *647 + schema: *648 examples: response-for-successful-upload: value: @@ -103529,9 +103592,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *359 - *360 - - *651 + - *361 + - *652 - 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. @@ -103555,9 +103618,9 @@ paths: application/json: schema: type: array - items: *493 + items: *494 examples: - default: *565 + default: *566 headers: Link: *71 '404': *6 @@ -103578,9 +103641,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *359 - *360 - - *651 + - *361 + - *652 requestBody: required: true content: @@ -103610,16 +103673,16 @@ paths: description: Reaction exists content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '201': description: Reaction created content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '422': *15 x-github: githubCloudOnly: false @@ -103641,10 +103704,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *359 - *360 - - *651 - - *566 + - *361 + - *652 + - *567 responses: '204': description: Response @@ -103668,9 +103731,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *359 - *360 - - *425 + - *361 + - *426 - *17 - *19 responses: @@ -103686,8 +103749,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *321 - - &652 + - *322 + - &653 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -103706,72 +103769,72 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *322 - - *652 - allOf: - *323 - - *652 + - *653 - allOf: - *324 - - *652 - - allOf: - *653 - - *652 - allOf: - *325 - - *652 + - *653 + - allOf: + - *654 + - *653 - allOf: - *326 - - *652 + - *653 - allOf: - *327 - - *652 + - *653 - allOf: - *328 - - *652 + - *653 - allOf: - *329 - - *652 + - *653 - allOf: - *330 - - *652 + - *653 - allOf: - *331 - - *652 + - *653 - allOf: - *332 - - *652 + - *653 - allOf: - *333 - - *652 + - *653 - allOf: - *334 - - *652 + - *653 - allOf: - - *339 - - *652 + - *335 + - *653 - allOf: - *340 - - *652 + - *653 - allOf: - *341 - - *652 + - *653 - allOf: - - *654 - - *652 + - *342 + - *653 - allOf: - - *335 - - *652 + - *655 + - *653 - allOf: - *336 - - *652 + - *653 - allOf: - *337 - - *652 + - *653 - allOf: - *338 - - *652 + - *653 + - allOf: + - *339 + - *653 examples: default: value: @@ -103810,8 +103873,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - *360 + - *361 - *17 - *19 - name: includes_parents @@ -103822,7 +103885,7 @@ paths: schema: type: boolean default: true - - *655 + - *656 responses: '200': description: Response @@ -103830,7 +103893,7 @@ paths: application/json: schema: type: array - items: *342 + items: *343 examples: default: value: @@ -103877,8 +103940,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - *360 + - *361 requestBody: description: Request body required: true @@ -103898,16 +103961,16 @@ paths: - tag - push default: branch - enforcement: *318 + enforcement: *319 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *319 - conditions: *316 + items: *320 + conditions: *317 rules: type: array description: An array of rules within the ruleset. - items: *656 + items: *657 required: - name - enforcement @@ -103938,9 +104001,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - default: &667 + default: &668 value: id: 42 name: super cool ruleset @@ -103988,13 +104051,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *359 - *360 - - *657 + - *361 - *658 - *659 - *660 - *661 + - *662 - *17 - *19 responses: @@ -104002,9 +104065,9 @@ paths: description: Response content: application/json: - schema: *662 + schema: *663 examples: - default: *663 + default: *664 '404': *6 '500': *56 x-github: @@ -104025,17 +104088,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *359 - *360 - - *664 + - *361 + - *665 responses: '200': description: Response content: application/json: - schema: *665 + schema: *666 examples: - default: *666 + default: *667 '404': *6 '500': *56 x-github: @@ -104063,8 +104126,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - *360 + - *361 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104084,9 +104147,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - default: *667 + default: *668 '404': *6 '500': *56 put: @@ -104104,8 +104167,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - *360 + - *361 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104130,16 +104193,16 @@ paths: - branch - tag - push - enforcement: *318 + enforcement: *319 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *319 - conditions: *316 + items: *320 + conditions: *317 rules: description: An array of rules within the ruleset. type: array - items: *656 + items: *657 examples: default: value: @@ -104167,9 +104230,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *343 examples: - default: *667 + default: *668 '404': *6 '422': *15 '500': *56 @@ -104188,8 +104251,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - *360 + - *361 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104212,8 +104275,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *359 - *360 + - *361 - *17 - *19 - name: ruleset_id @@ -104229,9 +104292,9 @@ paths: application/json: schema: type: array - items: *345 + items: *346 examples: - default: *668 + default: *669 '404': *6 '500': *56 x-github: @@ -104250,8 +104313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *359 - *360 + - *361 - name: ruleset_id description: The ID of the ruleset. in: path @@ -104269,7 +104332,7 @@ paths: description: Response content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -104324,9 +104387,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *359 - *360 - - *670 + - *361 - *671 - *672 - *673 @@ -104334,10 +104396,10 @@ paths: - *675 - *676 - *677 + - *678 - *63 - *19 - *17 - - *678 - *679 - *680 - *681 @@ -104346,6 +104408,7 @@ paths: - *684 - *685 - *686 + - *687 responses: '200': description: Response @@ -104372,8 +104435,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *687 - resolution: *688 + state: *688 + resolution: *689 resolved_at: type: string format: date-time @@ -104479,7 +104542,7 @@ paths: pull request. ' - oneOf: *689 + oneOf: *690 nullable: true has_more_locations: type: boolean @@ -104643,16 +104706,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *359 - *360 - - *459 - - *683 + - *361 + - *460 + - *684 responses: '200': description: Response content: application/json: - schema: &690 + schema: &691 type: object properties: number: *189 @@ -104670,8 +104733,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *687 - resolution: *688 + state: *688 + resolution: *689 resolved_at: type: string format: date-time @@ -104777,7 +104840,7 @@ paths: pull request. ' - oneOf: *689 + oneOf: *690 nullable: true has_more_locations: type: boolean @@ -104805,7 +104868,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &864 + metadata: &865 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -104878,9 +104941,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *359 - *360 - - *459 + - *361 + - *460 requestBody: required: true content: @@ -104888,8 +104951,8 @@ paths: schema: type: object properties: - state: *687 - resolution: *688 + state: *688 + resolution: *689 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -104933,7 +104996,7 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: default: value: @@ -105035,9 +105098,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *359 - *360 - - *459 + - *361 + - *460 - *19 - *17 responses: @@ -105048,7 +105111,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &866 + items: &867 type: object properties: type: @@ -105074,7 +105137,6 @@ paths: example: commit details: oneOf: - - *691 - *692 - *693 - *694 @@ -105087,6 +105149,7 @@ paths: - *701 - *702 - *703 + - *704 examples: default: value: @@ -105175,11 +105238,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *359 - *360 - - *704 + - *361 - *705 - *706 + - *707 - *63 - *19 - *17 @@ -105190,9 +105253,9 @@ paths: application/json: schema: type: array - items: *346 + items: *347 examples: - default: *707 + default: *708 headers: Link: *71 '403': *29 @@ -105215,8 +105278,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -105229,9 +105292,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *708 + items: *709 examples: - default: *709 + default: *710 responses: '201': description: All patterns created successfully. @@ -105243,9 +105306,9 @@ paths: created_patterns: type: array description: The list of successfully created custom patterns. - items: *346 + items: *347 examples: - default: *710 + default: *711 '400': *14 '403': *29 '404': *6 @@ -105269,7 +105332,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *711 + items: *712 delete: summary: Bulk delete repository custom patterns description: |- @@ -105288,8 +105351,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -105303,7 +105366,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *712 + items: *713 post_delete_action: type: string description: |- @@ -105316,14 +105379,14 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *713 + default: *714 responses: '204': description: All patterns deleted successfully. '400': *14 '403': *29 '404': *6 - '412': *348 + '412': *349 "/repos/{owner}/{repo}/secret-scanning/custom-patterns/{pattern_id}": patch: summary: Update a repository custom pattern @@ -105343,8 +105406,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *359 - *360 + - *361 - name: pattern_id in: path required: true @@ -105355,21 +105418,21 @@ paths: required: true content: application/json: - schema: *714 + schema: *715 examples: - default: *715 + default: *716 responses: '200': description: Pattern updated successfully. content: application/json: - schema: *346 + schema: *347 examples: - default: *716 + default: *717 '400': *14 '403': *29 '404': *6 - '412': *348 + '412': *349 '422': *15 "/repos/{owner}/{repo}/secret-scanning/push-protection-bypasses": post: @@ -105387,8 +105450,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -105396,14 +105459,14 @@ paths: schema: type: object properties: - reason: &718 + reason: &719 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *717 + placeholder_id: *718 required: - reason - placeholder_id @@ -105420,7 +105483,7 @@ paths: schema: type: object properties: - reason: *718 + reason: *719 expire_at: type: string format: date-time @@ -105466,8 +105529,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: - - *359 - *360 + - *361 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -105482,7 +105545,7 @@ paths: properties: incremental_scans: type: array - items: &719 + items: &720 description: Information on a single scan performed by secret scanning on the repository type: object @@ -105513,15 +105576,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *719 + items: *720 backfill_scans: type: array - items: *719 + items: *720 custom_pattern_backfill_scans: type: array items: allOf: - - *719 + - *720 - type: object properties: pattern_name: @@ -105534,7 +105597,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *719 + items: *720 examples: default: value: @@ -105599,8 +105662,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *359 - *360 + - *361 - *63 - name: sort description: The property to sort the results by. @@ -105644,9 +105707,9 @@ paths: application/json: schema: type: array - items: *720 + items: *721 examples: - default: *721 + default: *722 '400': *14 '404': *6 x-github: @@ -105669,8 +105732,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -105743,7 +105806,7 @@ paths: login: type: string description: The username of the user credited. - type: *350 + type: *351 required: - login - type @@ -105830,9 +105893,9 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: &723 + default: &724 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -106071,8 +106134,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -106176,7 +106239,7 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: default: value: @@ -106329,17 +106392,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *359 - *360 - - *722 + - *361 + - *723 responses: '200': description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: *723 + default: *724 '403': *29 '404': *6 x-github: @@ -106363,9 +106426,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *359 - *360 - - *722 + - *361 + - *723 requestBody: required: true content: @@ -106438,7 +106501,7 @@ paths: login: type: string description: The username of the user credited. - type: *350 + type: *351 required: - login - type @@ -106524,10 +106587,10 @@ paths: description: Response content: application/json: - schema: *720 + schema: *721 examples: - default: *723 - add_credit: *723 + default: *724 + add_credit: *724 '403': *29 '404': *6 '422': @@ -106565,9 +106628,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: - - *359 - *360 - - *722 + - *361 + - *723 responses: '202': *40 '400': *14 @@ -106594,17 +106657,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *359 - *360 - - *722 + - *361 + - *723 responses: '202': description: Response content: application/json: - schema: *362 + schema: *363 examples: - default: *364 + default: *365 '400': *14 '422': *15 '403': *29 @@ -106625,8 +106688,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#list-pull-request-stacks parameters: - - *359 - *360 + - *361 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -106758,8 +106821,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -106826,7 +106889,7 @@ paths: format: date-time pull_requests: type: array - items: &724 + items: &725 title: Pull Request Stack Pull Request type: object allOf: @@ -107052,8 +107115,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *359 - *360 + - *361 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -107102,7 +107165,7 @@ paths: format: date-time pull_requests: type: array - items: *724 + items: *725 examples: default: value: @@ -107222,8 +107285,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *359 - *360 + - *361 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -107295,7 +107358,7 @@ paths: format: date-time pull_requests: type: array - items: *724 + items: *725 examples: default: value: @@ -107499,8 +107562,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *359 - *360 + - *361 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -107549,7 +107612,7 @@ paths: format: date-time pull_requests: type: array - items: *724 + items: *725 examples: default: value: @@ -107655,8 +107718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -107755,8 +107818,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *359 - *360 + - *361 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -107765,7 +107828,7 @@ paths: application/json: schema: type: array - items: &725 + items: &726 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -107798,8 +107861,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -107875,8 +107938,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -107972,8 +108035,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *359 - *360 + - *361 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -108127,8 +108190,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *359 - *360 + - *361 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -108138,7 +108201,7 @@ paths: application/json: schema: type: array - items: *725 + items: *726 examples: default: value: @@ -108171,8 +108234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *359 - *360 + - *361 - name: sha in: path required: true @@ -108226,7 +108289,7 @@ paths: description: Response content: application/json: - schema: *726 + schema: *727 examples: default: value: @@ -108280,8 +108343,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -108313,14 +108376,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *359 - *360 + - *361 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &727 + schema: &728 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -108388,8 +108451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *359 - *360 + - *361 requestBody: required: false content: @@ -108415,7 +108478,7 @@ paths: description: Response content: application/json: - schema: *727 + schema: *728 examples: default: value: @@ -108442,8 +108505,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -108463,8 +108526,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -108543,8 +108606,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *359 - *360 + - *361 - name: ref in: path required: true @@ -108580,8 +108643,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *359 - *360 + - *361 - *17 - *19 responses: @@ -108593,7 +108656,7 @@ paths: type: array items: *211 examples: - default: *276 + default: *277 headers: Link: *71 '404': *6 @@ -108613,8 +108676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *359 - *360 + - *361 - *19 - *17 responses: @@ -108622,7 +108685,7 @@ paths: description: Response content: application/json: - schema: &728 + schema: &729 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -108634,7 +108697,7 @@ paths: required: - names examples: - default: &729 + default: &730 value: names: - octocat @@ -108657,8 +108720,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -108689,9 +108752,9 @@ paths: description: Response content: application/json: - schema: *728 + schema: *729 examples: - default: *729 + default: *730 '404': *6 '422': *7 x-github: @@ -108712,9 +108775,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *359 - *360 - - &730 + - *361 + - &731 name: per description: The time frame to display results for. in: query @@ -108743,7 +108806,7 @@ paths: example: 128 clones: type: array - items: &731 + items: &732 title: Traffic type: object properties: @@ -108830,8 +108893,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -108921,8 +108984,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *359 - *360 + - *361 responses: '200': description: Response @@ -108982,9 +109045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *359 - *360 - - *730 + - *361 + - *731 responses: '200': description: Response @@ -109003,7 +109066,7 @@ paths: example: 3782 views: type: array - items: *731 + items: *732 required: - uniques - count @@ -109080,8 +109143,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *359 - *360 + - *361 requestBody: required: true content: @@ -109361,8 +109424,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *359 - *360 + - *361 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -109385,8 +109448,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -109408,8 +109471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -109435,8 +109498,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *359 - *360 + - *361 - name: ref in: path required: true @@ -109528,9 +109591,9 @@ paths: description: Response content: application/json: - schema: *362 + schema: *363 examples: - default: *364 + default: *365 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109781,7 +109844,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &732 + text_matches: &733 title: Search Result Text Matches type: array items: @@ -109943,7 +110006,7 @@ paths: enum: - author-date - committer-date - - &733 + - &734 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 @@ -110014,7 +110077,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *423 + properties: *424 nullable: true comment_count: type: integer @@ -110034,7 +110097,7 @@ paths: url: type: string format: uri - verification: *547 + verification: *548 required: - author - committer @@ -110053,7 +110116,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *423 + properties: *424 nullable: true parents: type: array @@ -110071,7 +110134,7 @@ paths: type: number node_id: type: string - text_matches: *732 + text_matches: *733 required: - sha - node_id @@ -110263,7 +110326,7 @@ paths: - interactions - created - updated - - *733 + - *734 - *17 - *19 - name: advanced_search @@ -110377,11 +110440,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: type: string state_reason: @@ -110398,8 +110461,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *296 - required: *297 + properties: *297 + required: *298 nullable: true comments: type: integer @@ -110413,7 +110476,7 @@ paths: type: string format: date-time nullable: true - text_matches: *732 + text_matches: *733 pull_request: type: object properties: @@ -110457,7 +110520,7 @@ paths: timeline_url: type: string format: uri - type: *259 + type: *260 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -110729,7 +110792,7 @@ paths: enum: - created - updated - - *733 + - *734 - *17 - *19 responses: @@ -110773,7 +110836,7 @@ paths: nullable: true score: type: number - text_matches: *732 + text_matches: *733 required: - id - node_id @@ -110858,7 +110921,7 @@ paths: - forks - help-wanted-issues - updated - - *733 + - *734 - *17 - *19 responses: @@ -111106,7 +111169,7 @@ paths: - admin - pull - push - text_matches: *732 + text_matches: *733 temp_clone_token: type: string allow_merge_commit: @@ -111406,7 +111469,7 @@ paths: type: string format: uri nullable: true - text_matches: *732 + text_matches: *733 related: type: array nullable: true @@ -111597,7 +111660,7 @@ paths: - followers - repositories - joined - - *733 + - *734 - *17 - *19 responses: @@ -111701,7 +111764,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *732 + text_matches: *733 blog: type: string nullable: true @@ -111780,7 +111843,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &736 + - &737 name: team_id description: The unique identifier of the team. in: path @@ -111792,9 +111855,9 @@ paths: description: Response content: application/json: - schema: *355 + schema: *356 examples: - default: *356 + default: *357 '404': *6 x-github: githubCloudOnly: false @@ -111821,7 +111884,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *736 + - *737 requestBody: required: true content: @@ -111889,16 +111952,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *355 + schema: *356 examples: - default: *356 + default: *357 '201': description: Response content: application/json: - schema: *355 + schema: *356 examples: - default: *356 + default: *357 '404': *6 '422': *15 '403': *29 @@ -111926,7 +111989,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *736 + - *737 responses: '204': description: Response @@ -111955,7 +112018,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *736 + - *737 - *17 - *19 responses: @@ -111965,9 +112028,9 @@ paths: application/json: schema: type: array - items: *253 + items: *254 examples: - default: *254 + default: *255 headers: Link: *71 x-github: @@ -111995,7 +112058,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *736 + - *737 - name: role description: Filters members returned by their role in the team. in: query @@ -112016,9 +112079,9 @@ paths: application/json: schema: type: array - items: *737 + items: *738 examples: - default: *738 + default: *739 headers: Link: *71 '404': *6 @@ -112046,7 +112109,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *736 + - *737 - *75 responses: '204': @@ -112083,7 +112146,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *736 + - *737 - *75 responses: '204': @@ -112123,7 +112186,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *736 + - *737 - *75 responses: '204': @@ -112160,16 +112223,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *736 + - *737 - *75 responses: '200': description: Response content: application/json: - schema: *358 + schema: *359 examples: - response-if-user-is-a-team-maintainer: *739 + response-if-user-is-a-team-maintainer: *740 '404': *6 x-github: githubCloudOnly: false @@ -112202,7 +112265,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *736 + - *737 - *75 requestBody: required: false @@ -112228,9 +112291,9 @@ paths: description: Response content: application/json: - schema: *358 + schema: *359 examples: - response-if-users-membership-with-team-is-now-pending: *740 + response-if-users-membership-with-team-is-now-pending: *741 '403': description: Forbidden if team synchronization is set up '422': @@ -112264,7 +112327,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *736 + - *737 - *75 responses: '204': @@ -112292,7 +112355,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *736 + - *737 - *17 - *19 responses: @@ -112304,7 +112367,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 '404': *6 @@ -112334,15 +112397,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *736 - - *359 + - *737 - *360 + - *361 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *741 + schema: *742 examples: alternative-response-with-extra-repository-information: value: @@ -112499,9 +112562,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *736 - - *359 + - *737 - *360 + - *361 requestBody: required: false content: @@ -112551,9 +112614,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *736 - - *359 + - *737 - *360 + - *361 responses: '204': description: Response @@ -112578,7 +112641,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *736 + - *737 - *17 - *19 responses: @@ -112590,7 +112653,7 @@ paths: type: array items: *211 examples: - response-if-child-teams-exist: *742 + response-if-child-teams-exist: *743 headers: Link: *71 '404': *6 @@ -112623,7 +112686,7 @@ paths: application/json: schema: oneOf: - - &744 + - &745 title: Private User description: Private User type: object @@ -112826,7 +112889,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *743 + - *744 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -112979,7 +113042,7 @@ paths: description: Response content: application/json: - schema: *744 + schema: *745 examples: default: value: @@ -113182,9 +113245,9 @@ paths: type: integer codespaces: type: array - items: *264 + items: *265 examples: - default: *265 + default: *266 '304': *38 '500': *56 '401': *25 @@ -113323,17 +113386,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '401': *25 '403': *29 '404': *6 @@ -113377,7 +113440,7 @@ paths: type: integer secrets: type: array - items: &745 + items: &746 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -113417,7 +113480,7 @@ paths: - visibility - selected_repositories_url examples: - default: *485 + default: *486 headers: Link: *71 x-github: @@ -113493,7 +113556,7 @@ paths: description: Response content: application/json: - schema: *745 + schema: *746 examples: default: value: @@ -113783,15 +113846,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *266 + - *267 responses: '200': description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '304': *38 '500': *56 '401': *25 @@ -113817,7 +113880,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *266 + - *267 requestBody: required: false content: @@ -113847,9 +113910,9 @@ paths: description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '401': *25 '403': *29 '404': *6 @@ -113871,7 +113934,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *266 + - *267 responses: '202': *40 '304': *38 @@ -113900,13 +113963,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *266 + - *267 responses: '202': description: Response content: application/json: - schema: &746 + schema: &747 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -113947,7 +114010,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &747 + default: &748 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -113979,7 +114042,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *266 + - *267 - name: export_id in: path required: true @@ -113992,9 +114055,9 @@ paths: description: Response content: application/json: - schema: *746 + schema: *747 examples: - default: *747 + default: *748 '404': *6 x-github: githubCloudOnly: false @@ -114015,7 +114078,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *266 + - *267 responses: '200': description: Response @@ -114031,9 +114094,9 @@ paths: type: integer machines: type: array - items: *748 + items: *749 examples: - default: *749 + default: *750 '304': *38 '500': *56 '401': *25 @@ -114062,7 +114125,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *266 + - *267 requestBody: required: true content: @@ -114112,13 +114175,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *362 + repository: *363 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *483 - required: *484 + properties: *484 + required: *485 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -114892,15 +114955,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *266 + - *267 responses: '200': description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '304': *38 '500': *56 '400': *14 @@ -114932,15 +114995,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *266 + - *267 responses: '200': description: Response content: application/json: - schema: *264 + schema: *265 examples: - default: *482 + default: *483 '500': *56 '401': *25 '403': *29 @@ -114970,9 +115033,9 @@ paths: application/json: schema: type: array - items: *277 + items: *278 examples: - default: &761 + default: &762 value: - id: 197 name: hello_docker @@ -115073,7 +115136,7 @@ paths: application/json: schema: type: array - items: &750 + items: &751 title: Email description: Email type: object @@ -115138,9 +115201,9 @@ paths: application/json: schema: type: array - items: *750 + items: *751 examples: - default: &763 + default: &764 value: - email: octocat@github.com verified: true @@ -115215,7 +115278,7 @@ paths: application/json: schema: type: array - items: *750 + items: *751 examples: default: value: @@ -115471,7 +115534,7 @@ paths: application/json: schema: type: array - items: &751 + items: &752 title: GPG Key description: A unique encryption key type: object @@ -115602,7 +115665,7 @@ paths: - subkeys - revoked examples: - default: &780 + default: &781 value: - id: 3 name: Octocat's GPG Key @@ -115687,9 +115750,9 @@ paths: description: Response content: application/json: - schema: *751 + schema: *752 examples: - default: &752 + default: &753 value: id: 3 name: Octocat's GPG Key @@ -115746,7 +115809,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &753 + - &754 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -115758,9 +115821,9 @@ paths: description: Response content: application/json: - schema: *751 + schema: *752 examples: - default: *752 + default: *753 '404': *6 '304': *38 '403': *29 @@ -115783,7 +115846,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *753 + - *754 responses: '204': description: Response @@ -116071,12 +116134,12 @@ paths: application/json: schema: anyOf: - - *251 + - *252 - type: object properties: {} additionalProperties: false examples: - default: *252 + default: *253 '204': description: Response when there are no restrictions x-github: @@ -116100,7 +116163,7 @@ paths: required: true content: application/json: - schema: *558 + schema: *559 examples: default: value: @@ -116111,7 +116174,7 @@ paths: description: Response content: application/json: - schema: *251 + schema: *252 examples: default: value: @@ -116192,7 +116255,7 @@ paths: - closed - all default: open - - *262 + - *263 - name: sort description: What to sort results by. in: query @@ -116217,7 +116280,7 @@ paths: type: array items: *89 examples: - default: *263 + default: *264 headers: Link: *71 '404': *6 @@ -116250,7 +116313,7 @@ paths: application/json: schema: type: array - items: &754 + items: &755 title: Key description: Key type: object @@ -116351,9 +116414,9 @@ paths: description: Response content: application/json: - schema: *754 + schema: *755 examples: - default: &755 + default: &756 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -116386,15 +116449,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *614 + - *615 responses: '200': description: Response content: application/json: - schema: *754 + schema: *755 examples: - default: *755 + default: *756 '404': *6 '304': *38 '403': *29 @@ -116417,7 +116480,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *614 + - *615 responses: '204': description: Response @@ -116450,7 +116513,7 @@ paths: application/json: schema: type: array - items: &756 + items: &757 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -116518,7 +116581,7 @@ paths: - account - plan examples: - default: &757 + default: &758 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -116580,9 +116643,9 @@ paths: application/json: schema: type: array - items: *756 + items: *757 examples: - default: *757 + default: *758 headers: Link: *71 '304': *38 @@ -116622,7 +116685,7 @@ paths: application/json: schema: type: array - items: *268 + items: *269 examples: default: value: @@ -116736,7 +116799,7 @@ paths: description: Response content: application/json: - schema: *268 + schema: *269 examples: default: value: @@ -116823,9 +116886,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *268 + schema: *269 examples: - default: &758 + default: &759 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -116872,9 +116935,9 @@ paths: processed asynchronously. content: application/json: - schema: *268 + schema: *269 examples: - default: *758 + default: *759 '403': *29 '404': *6 '422': *15 @@ -116903,7 +116966,7 @@ paths: application/json: schema: type: array - items: *270 + items: *271 examples: default: value: @@ -117156,7 +117219,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *271 examples: default: value: @@ -117336,7 +117399,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *271 + - *272 - name: exclude in: query required: false @@ -117349,7 +117412,7 @@ paths: description: Response content: application/json: - schema: *270 + schema: *271 examples: default: value: @@ -117543,7 +117606,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *271 + - *272 responses: '302': description: Response @@ -117569,7 +117632,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *271 + - *272 responses: '204': description: Response @@ -117598,8 +117661,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *271 - - *759 + - *272 + - *760 responses: '204': description: Response @@ -117623,7 +117686,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *271 + - *272 - *17 - *19 responses: @@ -117635,7 +117698,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 '404': *6 @@ -117732,7 +117795,7 @@ paths: - docker - nuget - container - - *760 + - *761 - *19 - *17 responses: @@ -117742,10 +117805,10 @@ paths: application/json: schema: type: array - items: *277 + items: *278 examples: - default: *761 - '400': *762 + default: *762 + '400': *763 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -117765,16 +117828,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *279 - *280 + - *281 responses: '200': description: Response content: application/json: - schema: *277 + schema: *278 examples: - default: &781 + default: &782 value: id: 40201 name: octo-name @@ -117887,8 +117950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *279 - *280 + - *281 responses: '204': description: Response @@ -117918,8 +117981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *279 - *280 + - *281 - name: token description: package token schema: @@ -117951,8 +118014,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: - - *279 - *280 + - *281 - *19 - *17 - name: state @@ -117972,7 +118035,7 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: default: value: @@ -118021,15 +118084,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *279 - *280 - - *282 + - *281 + - *283 responses: '200': description: Response content: application/json: - schema: *281 + schema: *282 examples: default: value: @@ -118065,9 +118128,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *279 - *280 - - *282 + - *281 + - *283 responses: '204': description: Response @@ -118097,9 +118160,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *279 - *280 - - *282 + - *281 + - *283 responses: '204': description: Response @@ -118136,9 +118199,9 @@ paths: application/json: schema: type: array - items: *750 + items: *751 examples: - default: *763 + default: *764 headers: Link: *71 '304': *38 @@ -118251,7 +118314,7 @@ paths: type: array items: *83 examples: - default: &770 + default: &771 summary: Default response value: - id: 1296269 @@ -118555,9 +118618,9 @@ paths: description: Response content: application/json: - schema: *362 + schema: *363 examples: - default: *364 + default: *365 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -118601,9 +118664,9 @@ paths: application/json: schema: type: array - items: *561 + items: *562 examples: - default: *764 + default: *765 headers: Link: *71 '304': *38 @@ -118626,7 +118689,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *255 + - *256 responses: '204': description: Response @@ -118655,7 +118718,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *255 + - *256 responses: '204': description: Response @@ -118688,7 +118751,7 @@ paths: application/json: schema: type: array - items: &765 + items: &766 title: Social account description: Social media account type: object @@ -118703,7 +118766,7 @@ paths: - provider - url examples: - default: &766 + default: &767 value: - provider: twitter url: https://twitter.com/github @@ -118765,9 +118828,9 @@ paths: application/json: schema: type: array - items: *765 + items: *766 examples: - default: *766 + default: *767 '422': *15 '304': *38 '404': *6 @@ -118854,7 +118917,7 @@ paths: application/json: schema: type: array - items: &767 + items: &768 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -118874,7 +118937,7 @@ paths: - title - created_at examples: - default: &798 + default: &799 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -118938,9 +119001,9 @@ paths: description: Response content: application/json: - schema: *767 + schema: *768 examples: - default: &768 + default: &769 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -118970,7 +119033,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: - - &769 + - &770 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -118982,9 +119045,9 @@ paths: description: Response content: application/json: - schema: *767 + schema: *768 examples: - default: *768 + default: *769 '404': *6 '304': *38 '403': *29 @@ -119007,7 +119070,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: - - *769 + - *770 responses: '204': description: Response @@ -119036,7 +119099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &799 + - &800 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 @@ -119061,11 +119124,11 @@ paths: type: array items: *83 examples: - default-response: *770 + default-response: *771 application/vnd.github.v3.star+json: schema: type: array - items: &800 + items: &801 title: Starred Repository description: Starred Repository type: object @@ -119221,8 +119284,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: - - *359 - *360 + - *361 responses: '204': description: Response if this repository is starred by you @@ -119250,8 +119313,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -119275,8 +119338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *359 - *360 + - *361 responses: '204': description: Response @@ -119311,7 +119374,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 '304': *38 @@ -119348,7 +119411,7 @@ paths: application/json: schema: type: array - items: *355 + items: *356 examples: default: value: @@ -119434,10 +119497,10 @@ paths: application/json: schema: oneOf: + - *745 - *744 - - *743 examples: - default-response: &774 + default-response: &775 summary: Default response value: login: octocat @@ -119472,7 +119535,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &775 + response-with-git-hub-plan-information: &776 summary: Response with GitHub plan information value: login: octocat @@ -119529,14 +119592,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &772 + - &773 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *295 + - *296 requestBody: required: true description: Details of the draft item to create in the project. @@ -119570,9 +119633,9 @@ paths: description: Response content: application/json: - schema: *301 + schema: *302 examples: - draft_issue: *302 + draft_issue: *303 '304': *38 '403': *29 '401': *25 @@ -119595,7 +119658,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *771 + - *772 - *17 responses: '200': @@ -119630,8 +119693,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *772 - - *295 + - *773 + - *296 requestBody: required: true content: @@ -119667,6 +119730,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -119702,17 +119806,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *773 + schema: *774 examples: table_view: summary: Response for creating a table view - value: *306 + value: *307 board_view: summary: Response for creating a board view with filter - value: *306 + value: *307 roadmap_view: summary: Response for creating a roadmap view - value: *306 + value: *307 '304': *38 '403': *29 '401': *25 @@ -119754,11 +119858,11 @@ paths: application/json: schema: oneOf: + - *745 - *744 - - *743 examples: - default-response: *774 - response-with-git-hub-plan-information: *775 + default-response: *775 + response-with-git-hub-plan-information: *776 '404': *6 x-github: githubCloudOnly: false @@ -119808,8 +119912,8 @@ paths: required: - subject_digests examples: - default: *776 - withPredicateType: *777 + default: *777 + withPredicateType: *778 responses: '200': description: Response @@ -119862,7 +119966,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *778 + default: *779 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -120082,7 +120186,7 @@ paths: initiator: type: string examples: - default: *419 + default: *420 '201': description: Response content: @@ -120377,7 +120481,7 @@ paths: application/json: schema: *205 examples: - default: &779 + default: &780 summary: Example response for a user copilot space value: id: 42 @@ -120478,7 +120582,7 @@ paths: application/json: schema: *205 examples: - default: *779 + default: *780 '403': *29 '404': *6 x-github: @@ -120601,7 +120705,7 @@ paths: application/json: schema: *205 examples: - default: *779 + default: *780 '403': *29 '404': *6 '422': *15 @@ -121367,9 +121471,9 @@ paths: application/json: schema: type: array - items: *277 + items: *278 examples: - default: *761 + default: *762 '403': *29 '401': *25 x-github: @@ -121753,9 +121857,9 @@ paths: application/json: schema: type: array - items: *751 + items: *752 examples: - default: *780 + default: *781 headers: Link: *71 x-github: @@ -121859,7 +121963,7 @@ paths: application/json: schema: *22 examples: - default: *557 + default: *558 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -121983,7 +122087,7 @@ paths: - docker - nuget - container - - *760 + - *761 - *75 - *19 - *17 @@ -121994,12 +122098,12 @@ paths: application/json: schema: type: array - items: *277 + items: *278 examples: - default: *761 + default: *762 '403': *29 '401': *25 - '400': *762 + '400': *763 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122019,17 +122123,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *279 - *280 + - *281 - *75 responses: '200': description: Response content: application/json: - schema: *277 + schema: *278 examples: - default: *781 + default: *782 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -122050,8 +122154,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *279 - *280 + - *281 - *75 responses: '204': @@ -122084,8 +122188,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *279 - *280 + - *281 - *75 - name: token description: package token @@ -122118,8 +122222,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: - - *279 - *280 + - *281 - *75 responses: '200': @@ -122128,7 +122232,7 @@ paths: application/json: schema: type: array - items: *281 + items: *282 examples: default: value: @@ -122186,16 +122290,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *279 - *280 - - *282 + - *281 + - *283 - *75 responses: '200': description: Response content: application/json: - schema: *281 + schema: *282 examples: default: value: @@ -122230,10 +122334,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *279 - *280 + - *281 - *75 - - *282 + - *283 responses: '204': description: Response @@ -122265,10 +122369,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *279 - *280 + - *281 - *75 - - *282 + - *283 responses: '204': description: Response @@ -122309,9 +122413,9 @@ paths: application/json: schema: type: array - items: *293 + items: *294 examples: - default: *294 + default: *295 headers: Link: *71 '304': *38 @@ -122333,16 +122437,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-project-for-user parameters: - - *295 + - *296 - *75 responses: '200': description: Response content: application/json: - schema: *293 + schema: *294 examples: - default: *294 + default: *295 headers: Link: *71 '304': *38 @@ -122364,7 +122468,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#list-project-fields-for-user parameters: - - *295 + - *296 - *75 - *17 - *48 @@ -122376,9 +122480,9 @@ paths: application/json: schema: type: array - items: *299 + items: *300 examples: - default: *782 + default: *783 headers: Link: *71 '304': *38 @@ -122400,7 +122504,7 @@ paths: url: https://docs.github.com/rest/projects/fields#add-field-to-user-owned-project parameters: - *75 - - *295 + - *296 requestBody: required: true content: @@ -122438,7 +122542,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *783 + items: *784 required: - name - data_type @@ -122454,7 +122558,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *784 + iteration_configuration: *785 required: - name - data_type @@ -122476,20 +122580,20 @@ paths: value: name: Due date data_type: date - single_select_field: *785 - iteration_field: *786 + single_select_field: *786 + iteration_field: *787 responses: '201': description: Response content: application/json: - schema: *299 + schema: *300 examples: - text_field: *787 - number_field: *788 - date_field: *789 - single_select_field: *790 - iteration_field: *791 + text_field: *788 + number_field: *789 + date_field: *790 + single_select_field: *791 + iteration_field: *792 '304': *38 '403': *29 '401': *25 @@ -122510,17 +122614,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/fields#get-project-field-for-user parameters: - - *295 - - *792 + - *296 + - *793 - *75 responses: '200': description: Response content: application/json: - schema: *299 + schema: *300 examples: - default: *793 + default: *794 headers: Link: *71 '304': *38 @@ -122543,7 +122647,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *295 + - *296 - *75 - *48 - *49 @@ -122576,9 +122680,9 @@ paths: application/json: schema: type: array - items: *303 + items: *304 examples: - default: *304 + default: *305 headers: Link: *71 '304': *38 @@ -122600,7 +122704,7 @@ paths: url: https://docs.github.com/rest/projects/items#add-item-to-user-owned-project parameters: - *75 - - *295 + - *296 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -122670,22 +122774,22 @@ paths: description: Response content: application/json: - schema: *301 + schema: *302 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *302 + value: *303 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *302 + value: *303 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *302 + value: *303 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *302 + value: *303 '304': *38 '403': *29 '401': *25 @@ -122705,9 +122809,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *295 + - *296 - *75 - - *305 + - *306 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -122727,9 +122831,9 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: - default: *304 + default: *305 headers: Link: *71 '304': *38 @@ -122750,9 +122854,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#update-project-item-for-user parameters: - - *295 + - *296 - *75 - - *305 + - *306 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -122822,13 +122926,13 @@ paths: description: Response content: application/json: - schema: *303 + schema: *304 examples: - text_field: *304 - number_field: *304 - date_field: *304 - single_select_field: *304 - iteration_field: *304 + text_field: *305 + number_field: *305 + date_field: *305 + single_select_field: *305 + iteration_field: *305 '401': *25 '403': *29 '404': *6 @@ -122848,9 +122952,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#delete-project-item-for-user parameters: - - *295 + - *296 - *75 - - *305 + - *306 responses: '204': description: Response @@ -122872,9 +122976,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/items#list-items-for-a-user-project-view parameters: - - *295 + - *296 - *75 - - *794 + - *795 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -122900,9 +123004,9 @@ paths: application/json: schema: type: array - items: *303 + items: *304 examples: - default: *304 + default: *305 headers: Link: *71 '304': *38 @@ -123123,7 +123227,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 x-github: @@ -123413,7 +123517,7 @@ paths: parameters: - *75 - *125 - - *795 + - *796 - *127 responses: '200': @@ -123512,9 +123616,9 @@ paths: - *125 - *126 - *127 - - *796 - - *130 - *797 + - *130 + - *798 responses: '200': description: Response when getting a billing usage summary @@ -123648,9 +123752,9 @@ paths: application/json: schema: type: array - items: *765 + items: *766 examples: - default: *766 + default: *767 headers: Link: *71 x-github: @@ -123680,9 +123784,9 @@ paths: application/json: schema: type: array - items: *767 + items: *768 examples: - default: *798 + default: *799 headers: Link: *71 x-github: @@ -123707,7 +123811,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *75 - - *799 + - *800 - *63 - *17 - *19 @@ -123719,11 +123823,11 @@ paths: schema: anyOf: - type: array - items: *800 + items: *801 - type: array items: *83 examples: - default-response: *770 + default-response: *771 headers: Link: *71 x-github: @@ -123754,7 +123858,7 @@ paths: type: array items: *164 examples: - default: *283 + default: *284 headers: Link: *71 x-github: @@ -123882,7 +123986,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &801 + enterprise: &802 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -123940,7 +124044,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &802 + installation: &803 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -123959,7 +124063,7 @@ x-webhooks: required: - id - node_id - organization: &803 + organization: &804 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -124019,13 +124123,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &804 + repository: &805 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &836 + properties: &837 id: description: Unique identifier of the repository example: 42 @@ -124720,7 +124824,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &837 + required: &838 - archive_url - assignees_url - blobs_url @@ -124794,7 +124898,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &838 + x-github-breaking-changes: &839 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -124885,10 +124989,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -124964,11 +125068,11 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - rule: &805 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + rule: &806 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) @@ -125191,11 +125295,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - rule: *805 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + rule: *806 sender: *4 required: - action @@ -125378,11 +125482,11 @@ x-webhooks: - everyone required: - from - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - rule: *805 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + rule: *806 sender: *4 required: - action @@ -125466,7 +125570,7 @@ x-webhooks: type: string enum: - completed - check_run: &807 + check_run: &808 title: CheckRun description: A check performed on the code of a given code change type: object @@ -125557,7 +125661,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *806 + deployment: *807 details_url: example: https://example.com type: string @@ -125642,10 +125746,10 @@ x-webhooks: - output - app - pull_requests - installation: *802 - enterprise: *801 - organization: *803 - repository: *804 + installation: *803 + enterprise: *802 + organization: *804 + repository: *805 sender: *4 required: - check_run @@ -126036,11 +126140,11 @@ x-webhooks: type: string enum: - created - check_run: *807 - installation: *802 - enterprise: *801 - organization: *803 - repository: *804 + check_run: *808 + installation: *803 + enterprise: *802 + organization: *804 + repository: *805 sender: *4 required: - check_run @@ -126434,11 +126538,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *807 - installation: *802 - enterprise: *801 - organization: *803 - repository: *804 + check_run: *808 + installation: *803 + enterprise: *802 + organization: *804 + repository: *805 requested_action: description: The action requested by the user. type: object @@ -126841,11 +126945,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *807 - installation: *802 - enterprise: *801 - organization: *803 - repository: *804 + check_run: *808 + installation: *803 + enterprise: *802 + organization: *804 + repository: *805 sender: *4 required: - check_run @@ -127815,10 +127919,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -128517,10 +128621,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -129213,10 +129317,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -129382,7 +129486,7 @@ x-webhooks: required: - login - id - dismissed_comment: *453 + dismissed_comment: *454 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -129527,20 +129631,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &808 + commit_oid: &809 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: *801 - installation: *802 - organization: *803 - ref: &809 + enterprise: *802 + installation: *803 + organization: *804 + ref: &810 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: *804 + repository: *805 sender: *4 required: - action @@ -129705,7 +129809,7 @@ x-webhooks: required: - login - id - dismissed_comment: *453 + dismissed_comment: *454 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -129935,12 +130039,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *808 - enterprise: *801 - installation: *802 - organization: *803 - ref: *809 - repository: *804 + commit_oid: *809 + enterprise: *802 + installation: *803 + organization: *804 + ref: *810 + repository: *805 sender: *4 required: - action @@ -130035,7 +130139,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *453 + dismissed_comment: *454 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130206,12 +130310,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *808 - enterprise: *801 - installation: *802 - organization: *803 - ref: *809 - repository: *804 + commit_oid: *809 + enterprise: *802 + installation: *803 + organization: *804 + ref: *810 + repository: *805 sender: *4 required: - action @@ -130377,7 +130481,7 @@ x-webhooks: required: - login - id - dismissed_comment: *453 + dismissed_comment: *454 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -130543,12 +130647,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *808 - enterprise: *801 - installation: *802 - organization: *803 - ref: *809 - repository: *804 + commit_oid: *809 + enterprise: *802 + installation: *803 + organization: *804 + ref: *810 + repository: *805 sender: *4 required: - action @@ -130647,7 +130751,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *453 + dismissed_comment: *454 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -130822,16 +130926,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *804 + repository: *805 sender: *4 required: - action @@ -130928,7 +131032,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *453 + dismissed_comment: *454 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -131068,12 +131172,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *808 - enterprise: *801 - installation: *802 - organization: *803 - ref: *809 - repository: *804 + commit_oid: *809 + enterprise: *802 + installation: *803 + organization: *804 + ref: *810 + repository: *805 sender: *4 required: - action @@ -131239,7 +131343,7 @@ x-webhooks: required: - login - id - dismissed_comment: *453 + dismissed_comment: *454 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -131384,10 +131488,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -131642,10 +131746,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -131725,18 +131829,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *803 - pusher_type: &810 + organization: *804 + pusher_type: &811 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &811 + ref: &812 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -131746,7 +131850,7 @@ x-webhooks: enum: - tag - branch - repository: *804 + repository: *805 sender: *4 required: - ref @@ -131828,10 +131932,10 @@ x-webhooks: type: string enum: - created - definition: *307 - enterprise: *801 - installation: *802 - organization: *803 + definition: *308 + enterprise: *802 + installation: *803 + organization: *804 sender: *4 required: - action @@ -131916,9 +132020,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 sender: *4 required: - action @@ -131995,10 +132099,10 @@ x-webhooks: type: string enum: - promote_to_enterprise - definition: *307 - enterprise: *801 - installation: *802 - organization: *803 + definition: *308 + enterprise: *802 + installation: *803 + organization: *804 sender: *4 required: - action @@ -132075,10 +132179,10 @@ x-webhooks: type: string enum: - updated - definition: *307 - enterprise: *801 - installation: *802 - organization: *803 + definition: *308 + enterprise: *802 + installation: *803 + organization: *804 sender: *4 required: - action @@ -132155,19 +132259,19 @@ x-webhooks: type: string enum: - updated - enterprise: *801 - installation: *802 - repository: *804 - organization: *803 + enterprise: *802 + installation: *803 + repository: *805 + organization: *804 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *311 + items: *312 old_property_values: type: array description: The old custom property values for the repository. - items: *311 + items: *312 required: - action - repository @@ -132243,18 +132347,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *801 - installation: *802 - organization: *803 - pusher_type: *810 - ref: *811 + enterprise: *802 + installation: *803 + organization: *804 + pusher_type: *811 + ref: *812 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *804 + repository: *805 sender: *4 required: - ref @@ -132334,11 +132438,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -132418,11 +132522,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -132503,11 +132607,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -132588,11 +132692,11 @@ x-webhooks: type: string enum: - created - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -132671,11 +132775,11 @@ x-webhooks: type: string enum: - dismissed - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -132754,11 +132858,11 @@ x-webhooks: type: string enum: - fixed - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -132838,11 +132942,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -132921,11 +133025,11 @@ x-webhooks: type: string enum: - reopened - alert: *517 - installation: *802 - organization: *803 - enterprise: *801 - repository: *804 + alert: *518 + installation: *803 + organization: *804 + enterprise: *802 + repository: *805 sender: *4 required: - action @@ -133002,9 +133106,9 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - key: &812 + enterprise: *802 + installation: *803 + key: &813 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -133040,8 +133144,8 @@ x-webhooks: - verified - created_at - read_only - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -133118,11 +133222,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - key: *812 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + key: *813 + organization: *804 + repository: *805 sender: *4 required: - action @@ -133678,12 +133782,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - workflow: &818 + workflow: &819 title: Workflow type: object nullable: true @@ -134424,15 +134528,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *813 - required: *814 + properties: *814 + required: *815 nullable: true pull_requests: type: array - items: *634 - repository: *804 - organization: *803 - installation: *802 + items: *635 + repository: *805 + organization: *804 + installation: *803 sender: *4 responses: '200': @@ -134503,7 +134607,7 @@ x-webhooks: type: string enum: - approved - approver: &815 + approver: &816 type: object properties: avatar_url: @@ -134546,11 +134650,11 @@ x-webhooks: type: string comment: type: string - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - reviewers: &816 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + reviewers: &817 type: array items: type: object @@ -134629,7 +134733,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &817 + workflow_job_run: &818 type: object properties: conclusion: @@ -135360,18 +135464,18 @@ x-webhooks: type: string enum: - rejected - approver: *815 + approver: *816 comment: type: string - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - reviewers: *816 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + reviewers: *817 sender: *4 since: type: string - workflow_job_run: *817 + workflow_job_run: *818 workflow_job_runs: type: array items: @@ -136075,13 +136179,13 @@ x-webhooks: type: string enum: - requested - enterprise: *801 + enterprise: *802 environment: type: string - installation: *802 - organization: *803 - repository: *804 - requestor: &823 + installation: *803 + organization: *804 + repository: *805 + requestor: &824 title: User type: object nullable: true @@ -137970,12 +138074,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Deployment Workflow Run type: object @@ -138655,7 +138759,7 @@ x-webhooks: type: string enum: - answered - answer: &821 + answer: &822 type: object properties: author_association: @@ -138812,11 +138916,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -138943,11 +139047,11 @@ x-webhooks: - from required: - category - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139030,11 +139134,11 @@ x-webhooks: type: string enum: - closed - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139116,7 +139220,7 @@ x-webhooks: type: string enum: - created - comment: &820 + comment: &821 type: object properties: author_association: @@ -139273,11 +139377,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139360,12 +139464,12 @@ x-webhooks: type: string enum: - deleted - comment: *820 - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + comment: *821 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139460,12 +139564,12 @@ x-webhooks: - from required: - body - comment: *820 - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + comment: *821 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139549,11 +139653,11 @@ x-webhooks: type: string enum: - created - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139635,11 +139739,11 @@ x-webhooks: type: string enum: - deleted - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139739,11 +139843,11 @@ x-webhooks: type: string required: - from - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139825,10 +139929,10 @@ x-webhooks: type: string enum: - labeled - discussion: *819 - enterprise: *801 - installation: *802 - label: &822 + discussion: *820 + enterprise: *802 + installation: *803 + label: &823 title: Label type: object properties: @@ -139860,8 +139964,8 @@ x-webhooks: - color - default - description - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -139944,11 +140048,11 @@ x-webhooks: type: string enum: - locked - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140030,11 +140134,11 @@ x-webhooks: type: string enum: - pinned - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140116,11 +140220,11 @@ x-webhooks: type: string enum: - reopened - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140205,16 +140309,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *819 - new_repository: *804 + new_discussion: *820 + new_repository: *805 required: - new_discussion - new_repository - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140297,10 +140401,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *819 - old_answer: *821 - organization: *803 - repository: *804 + discussion: *820 + old_answer: *822 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140382,12 +140486,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *819 - enterprise: *801 - installation: *802 - label: *822 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + label: *823 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140470,11 +140574,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140556,11 +140660,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *819 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + discussion: *820 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -140633,7 +140737,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *801 + enterprise: *802 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -141293,9 +141397,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - forkee @@ -141441,9 +141545,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pages: description: The pages that were updated. type: array @@ -141480,7 +141584,7 @@ x-webhooks: - action - sha - html_url - repository: *804 + repository: *805 sender: *4 required: - pages @@ -141556,10 +141660,10 @@ x-webhooks: type: string enum: - created - enterprise: *801 + enterprise: *802 installation: *22 - organization: *803 - repositories: &824 + organization: *804 + repositories: &825 description: An array of repository objects that the installation can access. type: array @@ -141585,8 +141689,8 @@ x-webhooks: - name - full_name - private - repository: *804 - requester: *823 + repository: *805 + requester: *824 sender: *4 required: - action @@ -141661,11 +141765,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 + enterprise: *802 installation: *22 - organization: *803 - repositories: *824 - repository: *804 + organization: *804 + repositories: *825 + repository: *805 requester: nullable: true sender: *4 @@ -141741,11 +141845,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *801 + enterprise: *802 installation: *22 - organization: *803 - repositories: *824 - repository: *804 + organization: *804 + repositories: *825 + repository: *805 requester: nullable: true sender: *4 @@ -141821,10 +141925,10 @@ x-webhooks: type: string enum: - added - enterprise: *801 + enterprise: *802 installation: *22 - organization: *803 - repositories_added: &825 + organization: *804 + repositories_added: &826 description: An array of repository objects, which were added to the installation. type: array @@ -141870,15 +141974,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *804 - repository_selection: &826 + repository: *805 + repository_selection: &827 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *823 + requester: *824 sender: *4 required: - action @@ -141957,10 +142061,10 @@ x-webhooks: type: string enum: - removed - enterprise: *801 + enterprise: *802 installation: *22 - organization: *803 - repositories_added: *825 + organization: *804 + repositories_added: *826 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -141987,9 +142091,9 @@ x-webhooks: - name - full_name - private - repository: *804 - repository_selection: *826 - requester: *823 + repository: *805 + repository_selection: *827 + requester: *824 sender: *4 required: - action @@ -142068,11 +142172,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *801 + enterprise: *802 installation: *22 - organization: *803 - repositories: *824 - repository: *804 + organization: *804 + repositories: *825 + repository: *805 requester: nullable: true sender: *4 @@ -142250,10 +142354,10 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 target_type: type: string @@ -142332,11 +142436,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *801 + enterprise: *802 installation: *22 - organization: *803 - repositories: *824 - repository: *804 + organization: *804 + repositories: *825 + repository: *805 requester: nullable: true sender: *4 @@ -142510,15 +142614,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *597 - required: *598 + properties: *598 + required: *599 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *599 - required: *600 + properties: *600 + required: *601 nullable: true user: title: User @@ -142603,8 +142707,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -143393,8 +143497,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 state: description: State of the issue; either 'open' or 'closed' type: string @@ -143410,7 +143514,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -143743,8 +143847,8 @@ x-webhooks: - state - locked - assignee - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -143824,7 +143928,7 @@ x-webhooks: type: string enum: - deleted - comment: &827 + comment: &828 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -143981,15 +144085,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *597 - required: *598 + properties: *598 + required: *599 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *599 - required: *600 + properties: *600 + required: *601 nullable: true required: - url @@ -144004,8 +144108,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -144790,8 +144894,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 state: description: State of the issue; either 'open' or 'closed' type: string @@ -144807,7 +144911,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -145142,8 +145246,8 @@ x-webhooks: - state - locked - assignee - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -145223,7 +145327,7 @@ x-webhooks: type: string enum: - edited - changes: &857 + changes: &858 description: The changes to the comment. type: object properties: @@ -145235,9 +145339,9 @@ x-webhooks: type: string required: - from - comment: *827 - enterprise: *801 - installation: *802 + comment: *828 + enterprise: *802 + installation: *803 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -146025,8 +146129,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 state: description: State of the issue; either 'open' or 'closed' type: string @@ -146042,7 +146146,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -146375,8 +146479,8 @@ x-webhooks: - state - locked - assignee - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -146457,9 +146561,9 @@ x-webhooks: type: string enum: - pinned - comment: *827 - enterprise: *801 - installation: *802 + comment: *828 + enterprise: *802 + installation: *803 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -147249,8 +147353,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 state: description: State of the issue; either 'open' or 'closed' type: string @@ -147266,7 +147370,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -147601,8 +147705,8 @@ x-webhooks: - state - locked - assignee - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -147682,9 +147786,9 @@ x-webhooks: type: string enum: - unpinned - comment: *827 - enterprise: *801 - installation: *802 + comment: *828 + enterprise: *802 + installation: *803 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -148474,8 +148578,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 state: description: State of the issue; either 'open' or 'closed' type: string @@ -148491,7 +148595,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -148826,8 +148930,8 @@ x-webhooks: - state - locked - assignee - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -148916,9 +149020,9 @@ x-webhooks: type: number blocking_issue: *89 blocking_issue_repo: *83 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -149007,9 +149111,9 @@ x-webhooks: type: number blocking_issue: *89 blocking_issue_repo: *83 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -149097,9 +149201,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *89 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -149188,9 +149292,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *89 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -149270,10 +149374,10 @@ x-webhooks: type: string enum: - assigned - assignee: *823 - enterprise: *801 - installation: *802 - issue: &828 + assignee: *824 + enterprise: *802 + installation: *803 + issue: &829 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -150065,11 +150169,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -150085,7 +150189,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -150186,8 +150290,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -150267,8 +150371,8 @@ x-webhooks: type: string enum: - closed - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -151065,11 +151169,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -151085,7 +151189,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -151321,8 +151425,8 @@ x-webhooks: required: - state - closed_at - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -151401,8 +151505,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -152190,11 +152294,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -152210,7 +152314,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -152310,8 +152414,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -152390,8 +152494,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -153201,11 +153305,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -153221,7 +153325,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -153300,7 +153404,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &829 + milestone: &830 title: Milestone description: A collection of related issues and pull requests. type: object @@ -153438,8 +153542,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -153538,8 +153642,8 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -154331,11 +154435,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -154348,7 +154452,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *259 + type: *260 title: description: Title of the issue type: string @@ -154452,9 +154556,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *822 - organization: *803 - repository: *804 + label: *823 + organization: *804 + repository: *805 sender: *4 required: - action @@ -154534,9 +154638,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *801 - installation: *802 - issue: *828 + enterprise: *802 + installation: *803 + issue: *829 issue_field: type: object description: The issue field whose value was set or updated on the @@ -154690,8 +154794,8 @@ x-webhooks: - id required: - from - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -154771,9 +154875,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *801 - installation: *802 - issue: *828 + enterprise: *802 + installation: *803 + issue: *829 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -154854,8 +154958,8 @@ x-webhooks: nullable: true required: - id - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -154935,8 +155039,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -155727,11 +155831,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -155744,7 +155848,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *259 + type: *260 title: description: Title of the issue type: string @@ -155848,9 +155952,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *822 - organization: *803 - repository: *804 + label: *823 + organization: *804 + repository: *805 sender: *4 required: - action @@ -155930,8 +156034,8 @@ x-webhooks: type: string enum: - locked - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -156746,11 +156850,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -156763,7 +156867,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *259 + type: *260 title: description: Title of the issue type: string @@ -156844,8 +156948,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -156924,8 +157028,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -157734,11 +157838,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -157754,7 +157858,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -157832,9 +157936,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *829 - organization: *803 - repository: *804 + milestone: *830 + organization: *804 + repository: *805 sender: *4 required: - action @@ -158697,11 +158801,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -158802,7 +158906,7 @@ x-webhooks: required: - login - id - type: *259 + type: *260 required: - id - number @@ -159282,8 +159386,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -160067,11 +160171,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160087,7 +160191,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -160195,8 +160299,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -160276,9 +160380,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *801 - installation: *802 - issue: &830 + enterprise: *802 + installation: *803 + issue: &831 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -161064,11 +161168,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161084,7 +161188,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -161184,8 +161288,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -161264,8 +161368,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -162078,11 +162182,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162176,9 +162280,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *259 - organization: *803 - repository: *804 + type: *260 + organization: *804 + repository: *805 sender: *4 required: - action @@ -163047,11 +163151,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163067,7 +163171,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -163646,11 +163750,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *801 - installation: *802 - issue: *830 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + issue: *831 + organization: *804 + repository: *805 sender: *4 required: - action @@ -163730,12 +163834,12 @@ x-webhooks: type: string enum: - typed - enterprise: *801 - installation: *802 - issue: *828 - type: *259 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + issue: *829 + type: *260 + organization: *804 + repository: *805 sender: *4 required: - action @@ -163816,7 +163920,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &860 + assignee: &861 title: User type: object nullable: true @@ -163886,11 +163990,11 @@ x-webhooks: required: - login - id - enterprise: *801 - installation: *802 - issue: *828 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + issue: *829 + organization: *804 + repository: *805 sender: *4 required: - action @@ -163969,12 +164073,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *801 - installation: *802 - issue: *828 - label: *822 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + issue: *829 + label: *823 + organization: *804 + repository: *805 sender: *4 required: - action @@ -164054,8 +164158,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -164868,11 +164972,11 @@ x-webhooks: properties: *90 required: *91 nullable: true - sub_issues_summary: *734 - issue_dependencies_summary: *735 + sub_issues_summary: *735 + issue_dependencies_summary: *736 issue_field_values: type: array - items: *579 + items: *580 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164888,7 +164992,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *259 + type: *260 updated_at: type: string format: date-time @@ -164966,8 +165070,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -165047,11 +165151,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *801 - installation: *802 - issue: *830 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + issue: *831 + organization: *804 + repository: *805 sender: *4 required: - action @@ -165130,12 +165234,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *801 - installation: *802 - issue: *828 - type: *259 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + issue: *829 + type: *260 + organization: *804 + repository: *805 sender: *4 required: - action @@ -165215,11 +165319,11 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - label: *822 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + label: *823 + organization: *804 + repository: *805 sender: *4 required: - action @@ -165297,11 +165401,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - label: *822 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + label: *823 + organization: *804 + repository: *805 sender: *4 required: - action @@ -165411,11 +165515,11 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - label: *822 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + label: *823 + organization: *804 + repository: *805 sender: *4 required: - action @@ -165497,9 +165601,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *801 - installation: *802 - marketplace_purchase: &831 + enterprise: *802 + installation: *803 + marketplace_purchase: &832 title: Marketplace Purchase type: object required: @@ -165582,8 +165686,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *803 - previous_marketplace_purchase: &832 + organization: *804 + previous_marketplace_purchase: &833 title: Marketplace Purchase type: object properties: @@ -165663,7 +165767,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *804 + repository: *805 sender: *4 required: - action @@ -165743,10 +165847,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *801 - installation: *802 - marketplace_purchase: *831 - organization: *803 + enterprise: *802 + installation: *803 + marketplace_purchase: *832 + organization: *804 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165829,7 +165933,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *804 + repository: *805 sender: *4 required: - action @@ -165911,10 +166015,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *801 - installation: *802 - marketplace_purchase: *831 - organization: *803 + enterprise: *802 + installation: *803 + marketplace_purchase: *832 + organization: *804 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -165996,7 +166100,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *804 + repository: *805 sender: *4 required: - action @@ -166077,8 +166181,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 marketplace_purchase: title: Marketplace Purchase type: object @@ -166160,9 +166264,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *803 - previous_marketplace_purchase: *832 - repository: *804 + organization: *804 + previous_marketplace_purchase: *833 + repository: *805 sender: *4 required: - action @@ -166242,12 +166346,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *801 - installation: *802 - marketplace_purchase: *831 - organization: *803 - previous_marketplace_purchase: *832 - repository: *804 + enterprise: *802 + installation: *803 + marketplace_purchase: *832 + organization: *804 + previous_marketplace_purchase: *833 + repository: *805 sender: *4 required: - action @@ -166349,11 +166453,11 @@ x-webhooks: type: string required: - to - enterprise: *801 - installation: *802 - member: *823 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + member: *824 + organization: *804 + repository: *805 sender: *4 required: - action @@ -166453,11 +166557,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *801 - installation: *802 - member: *823 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + member: *824 + organization: *804 + repository: *805 sender: *4 required: - action @@ -166536,11 +166640,11 @@ x-webhooks: type: string enum: - removed - enterprise: *801 - installation: *802 - member: *823 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + member: *824 + organization: *804 + repository: *805 sender: *4 required: - action @@ -166618,11 +166722,11 @@ x-webhooks: type: string enum: - added - enterprise: *801 - installation: *802 - member: *823 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + member: *824 + organization: *804 + repository: *805 scope: description: The scope of the membership. Currently, can only be `team`. @@ -166698,7 +166802,7 @@ x-webhooks: required: - login - id - team: &833 + team: &834 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -166921,11 +167025,11 @@ x-webhooks: type: string enum: - removed - enterprise: *801 - installation: *802 - member: *823 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + member: *824 + organization: *804 + repository: *805 scope: description: The scope of the membership. Currently, can only be `team`. @@ -167002,7 +167106,7 @@ x-webhooks: required: - login - id - team: *833 + team: *834 required: - action - scope @@ -167084,8 +167188,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *802 - merge_group: &835 + installation: *803 + merge_group: &836 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -167104,15 +167208,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *834 + head_commit: *835 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -167198,10 +167302,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *802 - merge_group: *835 - organization: *803 - repository: *804 + installation: *803 + merge_group: *836 + organization: *804 + repository: *805 sender: *4 required: - action @@ -167274,7 +167378,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 + enterprise: *802 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -167383,17 +167487,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *802 - organization: *803 + installation: *803 + organization: *804 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *836 - required: *837 - x-github-breaking-changes: *838 + properties: *837 + required: *838 + x-github-breaking-changes: *839 nullable: true sender: *4 required: @@ -167474,11 +167578,11 @@ x-webhooks: type: string enum: - closed - enterprise: *801 - installation: *802 - milestone: *829 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + milestone: *830 + organization: *804 + repository: *805 sender: *4 required: - action @@ -167557,9 +167661,9 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - milestone: &839 + enterprise: *802 + installation: *803 + milestone: &840 title: Milestone description: A collection of related issues and pull requests. type: object @@ -167696,8 +167800,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -167776,11 +167880,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - milestone: *829 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + milestone: *830 + organization: *804 + repository: *805 sender: *4 required: - action @@ -167890,11 +167994,11 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - milestone: *829 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + milestone: *830 + organization: *804 + repository: *805 sender: *4 required: - action @@ -167974,11 +168078,11 @@ x-webhooks: type: string enum: - opened - enterprise: *801 - installation: *802 - milestone: *839 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + milestone: *840 + organization: *804 + repository: *805 sender: *4 required: - action @@ -168057,11 +168161,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *823 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + blocked_user: *824 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -168140,11 +168244,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *823 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + blocked_user: *824 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -168223,9 +168327,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - membership: &840 + enterprise: *802 + installation: *803 + membership: &841 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -168332,8 +168436,8 @@ x-webhooks: - role - organization_url - user - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 required: - action @@ -168411,11 +168515,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *801 - installation: *802 - membership: *840 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + membership: *841 + organization: *804 + repository: *805 sender: *4 required: - action @@ -168494,8 +168598,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -168611,10 +168715,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 - user: *823 + user: *824 required: - action - invitation @@ -168692,11 +168796,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *801 - installation: *802 - membership: *840 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + membership: *841 + organization: *804 + repository: *805 sender: *4 required: - action @@ -168783,11 +168887,11 @@ x-webhooks: properties: from: type: string - enterprise: *801 - installation: *802 - membership: *840 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + membership: *841 + organization: *804 + repository: *805 sender: *4 required: - action @@ -168864,9 +168968,9 @@ x-webhooks: type: string enum: - published - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 package: description: Information about the package. type: object @@ -169365,7 +169469,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &841 + items: &842 title: Ruby Gems metadata type: object properties: @@ -169460,7 +169564,7 @@ x-webhooks: - owner - package_version - registry - repository: *804 + repository: *805 sender: *4 required: - action @@ -169536,9 +169640,9 @@ x-webhooks: type: string enum: - updated - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 package: description: Information about the package. type: object @@ -169891,7 +169995,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *841 + items: *842 source_url: type: string format: uri @@ -169961,7 +170065,7 @@ x-webhooks: - owner - package_version - registry - repository: *804 + repository: *805 sender: *4 required: - action @@ -170137,12 +170241,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *801 + enterprise: *802 id: type: integer - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - id @@ -170219,7 +170323,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &842 + personal_access_token_request: &843 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -170365,10 +170469,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *801 - organization: *803 + enterprise: *802 + organization: *804 sender: *4 - installation: *802 + installation: *803 required: - action - personal_access_token_request @@ -170445,11 +170549,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *842 - enterprise: *801 - organization: *803 + personal_access_token_request: *843 + enterprise: *802 + organization: *804 sender: *4 - installation: *802 + installation: *803 required: - action - personal_access_token_request @@ -170525,11 +170629,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *842 - enterprise: *801 - organization: *803 + personal_access_token_request: *843 + enterprise: *802 + organization: *804 sender: *4 - installation: *802 + installation: *803 required: - action - personal_access_token_request @@ -170604,11 +170708,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *842 - organization: *803 - enterprise: *801 + personal_access_token_request: *843 + organization: *804 + enterprise: *802 sender: *4 - installation: *802 + installation: *803 required: - action - personal_access_token_request @@ -170713,7 +170817,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *843 + last_response: *844 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -170745,8 +170849,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 zen: description: Random string of GitHub zen. @@ -170991,10 +171095,10 @@ x-webhooks: - from required: - note - enterprise: *801 - installation: *802 - organization: *803 - project_card: &844 + enterprise: *802 + installation: *803 + organization: *804 + project_card: &845 title: Project Card type: object properties: @@ -171113,7 +171217,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *804 + repository: *805 sender: *4 required: - action @@ -171194,11 +171298,11 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - project_card: *844 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + project_card: *845 + repository: *805 sender: *4 required: - action @@ -171278,9 +171382,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 project_card: title: Project Card type: object @@ -171408,9 +171512,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *836 - required: *837 - x-github-breaking-changes: *838 + properties: *837 + required: *838 + x-github-breaking-changes: *839 nullable: true sender: *4 required: @@ -171504,11 +171608,11 @@ x-webhooks: - from required: - note - enterprise: *801 - installation: *802 - organization: *803 - project_card: *844 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + project_card: *845 + repository: *805 sender: *4 required: - action @@ -171602,9 +171706,9 @@ x-webhooks: - from required: - column_id - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 project_card: allOf: - title: Project Card @@ -171794,7 +171898,7 @@ x-webhooks: type: string required: - after_id - repository: *804 + repository: *805 sender: *4 required: - action @@ -171874,10 +171978,10 @@ x-webhooks: type: string enum: - closed - enterprise: *801 - installation: *802 - organization: *803 - project: &846 + enterprise: *802 + installation: *803 + organization: *804 + project: &847 title: Project type: object properties: @@ -172001,7 +172105,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *804 + repository: *805 sender: *4 required: - action @@ -172081,10 +172185,10 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - project_column: &845 + enterprise: *802 + installation: *803 + organization: *804 + project_column: &846 title: Project Column type: object properties: @@ -172123,7 +172227,7 @@ x-webhooks: - name - created_at - updated_at - repository: *804 + repository: *805 sender: *4 required: - action @@ -172202,19 +172306,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 - project_column: *845 + enterprise: *802 + installation: *803 + organization: *804 + project_column: *846 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *836 - required: *837 - x-github-breaking-changes: *838 + properties: *837 + required: *838 + x-github-breaking-changes: *839 nullable: true sender: *4 required: @@ -172304,11 +172408,11 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - organization: *803 - project_column: *845 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + project_column: *846 + repository: *805 sender: *4 required: - action @@ -172388,11 +172492,11 @@ x-webhooks: type: string enum: - moved - enterprise: *801 - installation: *802 - organization: *803 - project_column: *845 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + project_column: *846 + repository: *805 sender: *4 required: - action @@ -172472,11 +172576,11 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - project: *846 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + project: *847 + repository: *805 sender: *4 required: - action @@ -172556,19 +172660,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 - project: *846 + enterprise: *802 + installation: *803 + organization: *804 + project: *847 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *836 - required: *837 - x-github-breaking-changes: *838 + properties: *837 + required: *838 + x-github-breaking-changes: *839 nullable: true sender: *4 required: @@ -172670,11 +172774,11 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - organization: *803 - project: *846 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + project: *847 + repository: *805 sender: *4 required: - action @@ -172753,11 +172857,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *801 - installation: *802 - organization: *803 - project: *846 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + project: *847 + repository: *805 sender: *4 required: - action @@ -172838,9 +172942,9 @@ x-webhooks: type: string enum: - closed - installation: *802 - organization: *803 - projects_v2: *293 + installation: *803 + organization: *804 + projects_v2: *294 sender: *4 required: - action @@ -172921,9 +173025,9 @@ x-webhooks: type: string enum: - created - installation: *802 - organization: *803 - projects_v2: *293 + installation: *803 + organization: *804 + projects_v2: *294 sender: *4 required: - action @@ -173004,9 +173108,9 @@ x-webhooks: type: string enum: - deleted - installation: *802 - organization: *803 - projects_v2: *293 + installation: *803 + organization: *804 + projects_v2: *294 sender: *4 required: - action @@ -173123,9 +173227,9 @@ x-webhooks: type: string to: type: string - installation: *802 - organization: *803 - projects_v2: *293 + installation: *803 + organization: *804 + projects_v2: *294 sender: *4 required: - action @@ -173208,7 +173312,7 @@ x-webhooks: type: string enum: - archived - changes: &850 + changes: &851 type: object properties: archived_at: @@ -173222,9 +173326,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *802 - organization: *803 - projects_v2_item: &847 + installation: *803 + organization: *804 + projects_v2_item: &848 title: Projects v2 Item description: An item belonging to a project type: object @@ -173242,7 +173346,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *300 + content_type: *301 creator: *4 created_at: type: string @@ -173359,9 +173463,9 @@ x-webhooks: nullable: true to: type: string - installation: *802 - organization: *803 - projects_v2_item: *847 + installation: *803 + organization: *804 + projects_v2_item: *848 sender: *4 required: - action @@ -173443,9 +173547,9 @@ x-webhooks: type: string enum: - created - installation: *802 - organization: *803 - projects_v2_item: *847 + installation: *803 + organization: *804 + projects_v2_item: *848 sender: *4 required: - action @@ -173526,9 +173630,9 @@ x-webhooks: type: string enum: - deleted - installation: *802 - organization: *803 - projects_v2_item: *847 + installation: *803 + organization: *804 + projects_v2_item: *848 sender: *4 required: - action @@ -173634,7 +173738,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &848 + - &849 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -173656,7 +173760,7 @@ x-webhooks: required: - id - name - - &849 + - &850 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -173690,8 +173794,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *848 - *849 + - *850 required: - field_value - type: object @@ -173707,9 +173811,9 @@ x-webhooks: nullable: true required: - body - installation: *802 - organization: *803 - projects_v2_item: *847 + installation: *803 + organization: *804 + projects_v2_item: *848 sender: *4 required: - action @@ -173804,9 +173908,9 @@ x-webhooks: to: type: string nullable: true - installation: *802 - organization: *803 - projects_v2_item: *847 + installation: *803 + organization: *804 + projects_v2_item: *848 sender: *4 required: - action @@ -173889,10 +173993,10 @@ x-webhooks: type: string enum: - restored - changes: *850 - installation: *802 - organization: *803 - projects_v2_item: *847 + changes: *851 + installation: *803 + organization: *804 + projects_v2_item: *848 sender: *4 required: - action @@ -173974,9 +174078,9 @@ x-webhooks: type: string enum: - reopened - installation: *802 - organization: *803 - projects_v2: *293 + installation: *803 + organization: *804 + projects_v2: *294 sender: *4 required: - action @@ -174057,14 +174161,14 @@ x-webhooks: type: string enum: - created - installation: *802 - organization: *803 - projects_v2_status_update: &853 + installation: *803 + organization: *804 + projects_v2_status_update: &854 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *851 - required: *852 + properties: *852 + required: *853 sender: *4 required: - action @@ -174145,9 +174249,9 @@ x-webhooks: type: string enum: - deleted - installation: *802 - organization: *803 - projects_v2_status_update: *853 + installation: *803 + organization: *804 + projects_v2_status_update: *854 sender: *4 required: - action @@ -174283,9 +174387,9 @@ x-webhooks: type: string format: date nullable: true - installation: *802 - organization: *803 - projects_v2_status_update: *853 + installation: *803 + organization: *804 + projects_v2_status_update: *854 sender: *4 required: - action @@ -174356,10 +174460,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - repository @@ -174436,13 +174540,13 @@ x-webhooks: type: string enum: - assigned - assignee: *823 - enterprise: *801 - installation: *802 - number: &854 + assignee: *824 + enterprise: *802 + installation: *803 + number: &855 description: The pull request number. type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -176621,7 +176725,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -176748,7 +176852,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -176845,11 +176949,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -179021,7 +179125,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -179150,7 +179254,7 @@ x-webhooks: - draft reason: type: string - repository: *804 + repository: *805 sender: *4 required: - action @@ -179247,11 +179351,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -181423,7 +181527,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -181552,7 +181656,7 @@ x-webhooks: - draft reason: type: string - repository: *804 + repository: *805 sender: *4 required: - action @@ -181649,13 +181753,13 @@ x-webhooks: type: string enum: - closed - enterprise: *801 - installation: *802 - number: *854 - organization: *803 - pull_request: &855 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 + pull_request: &856 allOf: - - *634 + - *635 - type: object properties: allow_auto_merge: @@ -181717,7 +181821,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *804 + repository: *805 sender: *4 required: - action @@ -181798,12 +181902,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *801 - installation: *802 - number: *854 - organization: *803 - pull_request: *855 - repository: *804 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 + pull_request: *856 + repository: *805 sender: *4 required: - action @@ -181883,11 +181987,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *801 - milestone: *617 - number: *854 - organization: *803 - pull_request: &856 + enterprise: *802 + milestone: *618 + number: *855 + organization: *804 + pull_request: &857 title: Pull Request type: object properties: @@ -184046,7 +184150,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -184215,7 +184319,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *804 + repository: *805 sender: *4 required: - action @@ -184294,11 +184398,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -186461,7 +186565,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -186603,7 +186707,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *804 + repository: *805 sender: *4 required: - action @@ -186735,12 +186839,12 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - number: *854 - organization: *803 - pull_request: *855 - repository: *804 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 + pull_request: *856 + repository: *805 sender: *4 required: - action @@ -186820,11 +186924,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -188987,7 +189091,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -189114,7 +189218,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -189202,11 +189306,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *801 - installation: *802 - label: *822 - number: *854 - organization: *803 + enterprise: *802 + installation: *803 + label: *823 + number: *855 + organization: *804 pull_request: title: Pull Request type: object @@ -191384,7 +191488,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -191511,7 +191615,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -191607,10 +191711,10 @@ x-webhooks: type: string enum: - locked - enterprise: *801 - installation: *802 - number: *854 - organization: *803 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 pull_request: title: Pull Request type: object @@ -193786,7 +193890,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -193913,7 +194017,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -194008,12 +194112,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *801 - milestone: *617 - number: *854 - organization: *803 - pull_request: *856 - repository: *804 + enterprise: *802 + milestone: *618 + number: *855 + organization: *804 + pull_request: *857 + repository: *805 sender: *4 required: - action @@ -194092,12 +194196,12 @@ x-webhooks: type: string enum: - opened - enterprise: *801 - installation: *802 - number: *854 - organization: *803 - pull_request: *855 - repository: *804 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 + pull_request: *856 + repository: *805 sender: *4 required: - action @@ -194178,12 +194282,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *801 - installation: *802 - number: *854 - organization: *803 - pull_request: *855 - repository: *804 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 + pull_request: *856 + repository: *805 sender: *4 required: - action @@ -194263,12 +194367,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *801 - installation: *802 - number: *854 - organization: *803 - pull_request: *855 - repository: *804 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 + pull_request: *856 + repository: *805 sender: *4 required: - action @@ -194634,9 +194738,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pull_request: type: object properties: @@ -196707,7 +196811,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: type: string enum: @@ -196829,7 +196933,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *804 + repository: *805 sender: *4 required: - action @@ -196924,7 +197028,7 @@ x-webhooks: type: string enum: - deleted - comment: &858 + comment: &859 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -197209,9 +197313,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pull_request: type: object properties: @@ -199270,7 +199374,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: type: string enum: @@ -199392,7 +199496,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *804 + repository: *805 sender: *4 required: - action @@ -199487,11 +199591,11 @@ x-webhooks: type: string enum: - edited - changes: *857 - comment: *858 - enterprise: *801 - installation: *802 - organization: *803 + changes: *858 + comment: *859 + enterprise: *802 + installation: *803 + organization: *804 pull_request: type: object properties: @@ -201553,7 +201657,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: type: string enum: @@ -201675,7 +201779,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *804 + repository: *805 sender: *4 required: - action @@ -201771,9 +201875,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pull_request: title: Simple Pull Request type: object @@ -203845,7 +203949,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: type: string enum: @@ -203969,7 +204073,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *804 + repository: *805 review: description: The review that was affected. type: object @@ -204231,9 +204335,9 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pull_request: title: Simple Pull Request type: object @@ -206287,8 +206391,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *804 - review: &859 + repository: *805 + review: &860 description: The review that was affected. type: object properties: @@ -206529,12 +206633,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: description: The pull request number. type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -208713,7 +208817,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. @@ -208840,7 +208944,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 requested_reviewer: title: User type: object @@ -208924,12 +209028,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: description: The pull request number. type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -211115,7 +211219,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. @@ -211242,7 +211346,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 requested_team: title: Team description: Groups of organization members that gives permissions @@ -211457,12 +211561,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: description: The pull request number. type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -213642,7 +213746,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. @@ -213770,7 +213874,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 requested_reviewer: title: User type: object @@ -213855,12 +213959,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *801 - installation: *802 + enterprise: *802 + installation: *803 number: description: The pull request number. type: integer - organization: *803 + organization: *804 pull_request: title: Pull Request type: object @@ -216031,7 +216135,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. @@ -216159,7 +216263,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 requested_team: title: Team description: Groups of organization members that gives permissions @@ -216363,9 +216467,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pull_request: title: Simple Pull Request type: object @@ -218439,7 +218543,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: type: string enum: @@ -218563,8 +218667,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *804 - review: *859 + repository: *805 + review: *860 sender: *4 required: - action @@ -218659,9 +218763,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pull_request: title: Simple Pull Request type: object @@ -220630,7 +220734,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: type: string enum: @@ -220754,7 +220858,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *804 + repository: *805 sender: *4 thread: type: object @@ -221149,9 +221253,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 pull_request: title: Simple Pull Request type: object @@ -223107,7 +223211,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: type: string enum: @@ -223230,7 +223334,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *804 + repository: *805 sender: *4 thread: type: object @@ -223622,11 +223726,11 @@ x-webhooks: type: string enum: - stacked - enterprise: *801 - installation: *802 - stack: *631 - number: *854 - organization: *803 + enterprise: *802 + installation: *803 + stack: *632 + number: *855 + organization: *804 pull_request: title: Pull Request type: object @@ -225804,7 +225908,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -225931,7 +226035,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -226032,10 +226136,10 @@ x-webhooks: type: string before: type: string - enterprise: *801 - installation: *802 - number: *854 - organization: *803 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 pull_request: title: Pull Request type: object @@ -228202,7 +228306,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -228329,7 +228433,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -228426,11 +228530,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *860 - enterprise: *801 - installation: *802 - number: *854 - organization: *803 + assignee: *861 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 pull_request: title: Pull Request type: object @@ -230609,7 +230713,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -230736,7 +230840,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -230830,11 +230934,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *801 - installation: *802 - label: *822 - number: *854 - organization: *803 + enterprise: *802 + installation: *803 + label: *823 + number: *855 + organization: *804 pull_request: title: Pull Request type: object @@ -233003,7 +233107,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -233130,7 +233234,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -233226,10 +233330,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *801 - installation: *802 - number: *854 - organization: *803 + enterprise: *802 + installation: *803 + number: *855 + organization: *804 pull_request: title: Pull Request type: object @@ -235391,7 +235495,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *631 + stack: *632 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -235517,7 +235621,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *804 + repository: *805 sender: *4 required: - action @@ -235732,7 +235836,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *801 + enterprise: *802 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -235824,8 +235928,8 @@ x-webhooks: - url - author - committer - installation: *802 - organization: *803 + installation: *803 + organization: *804 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -236411,9 +236515,9 @@ x-webhooks: type: string enum: - published - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 registry_package: type: object properties: @@ -236859,7 +236963,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *841 + items: *842 summary: type: string tag_name: @@ -236913,7 +237017,7 @@ x-webhooks: - owner - package_version - registry - repository: *804 + repository: *805 sender: *4 required: - action @@ -236991,9 +237095,9 @@ x-webhooks: type: string enum: - updated - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 registry_package: type: object properties: @@ -237301,7 +237405,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *841 + items: *842 summary: type: string tag_name: @@ -237350,7 +237454,7 @@ x-webhooks: - owner - package_version - registry - repository: *804 + repository: *805 sender: *4 required: - action @@ -237427,10 +237531,10 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - release: &861 + enterprise: *802 + installation: *803 + organization: *804 + release: &862 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -237748,7 +237852,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *804 + repository: *805 sender: *4 required: - action @@ -237825,11 +237929,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 - release: *861 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + release: *862 + repository: *805 sender: *4 required: - action @@ -237946,11 +238050,11 @@ x-webhooks: type: boolean required: - to - enterprise: *801 - installation: *802 - organization: *803 - release: *861 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + release: *862 + repository: *805 sender: *4 required: - action @@ -238028,9 +238132,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -238352,7 +238456,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *804 + repository: *805 sender: *4 required: - action @@ -238428,10 +238532,10 @@ x-webhooks: type: string enum: - published - enterprise: *801 - installation: *802 - organization: *803 - release: &862 + enterprise: *802 + installation: *803 + organization: *804 + release: &863 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -238750,7 +238854,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *804 + repository: *805 sender: *4 required: - action @@ -238826,11 +238930,11 @@ x-webhooks: type: string enum: - released - enterprise: *801 - installation: *802 - organization: *803 - release: *861 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + release: *862 + repository: *805 sender: *4 required: - action @@ -238906,11 +239010,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *801 - installation: *802 - organization: *803 - release: *862 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + release: *863 + repository: *805 sender: *4 required: - action @@ -238986,11 +239090,11 @@ x-webhooks: type: string enum: - published - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - repository_advisory: *720 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + repository_advisory: *721 sender: *4 required: - action @@ -239066,11 +239170,11 @@ x-webhooks: type: string enum: - reported - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - repository_advisory: *720 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + repository_advisory: *721 sender: *4 required: - action @@ -239146,10 +239250,10 @@ x-webhooks: type: string enum: - archived - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239226,10 +239330,10 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239307,10 +239411,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239394,10 +239498,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239509,10 +239613,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239584,10 +239688,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 status: type: string @@ -239668,10 +239772,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239748,10 +239852,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239845,10 +239949,10 @@ x-webhooks: - name required: - repository - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -239928,11 +240032,11 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - repository_ruleset: *342 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + repository_ruleset: *343 sender: *4 required: - action @@ -240010,11 +240114,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - repository_ruleset: *342 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + repository_ruleset: *343 sender: *4 required: - action @@ -240092,11 +240196,11 @@ x-webhooks: type: string enum: - edited - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - repository_ruleset: *342 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + repository_ruleset: *343 changes: type: object properties: @@ -240115,16 +240219,16 @@ x-webhooks: properties: added: type: array - items: *316 + items: *317 deleted: type: array - items: *316 + items: *317 updated: type: array items: type: object properties: - condition: *316 + condition: *317 changes: type: object properties: @@ -240157,16 +240261,16 @@ x-webhooks: properties: added: type: array - items: *656 + items: *657 deleted: type: array - items: *656 + items: *657 updated: type: array items: type: object properties: - rule: *656 + rule: *657 changes: type: object properties: @@ -240400,10 +240504,10 @@ x-webhooks: - from required: - owner - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -240481,10 +240585,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -240562,7 +240666,7 @@ x-webhooks: type: string enum: - create - alert: &863 + alert: &864 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -240684,10 +240788,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -240893,10 +240997,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -240974,11 +241078,11 @@ x-webhooks: type: string enum: - reopen - alert: *863 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *864 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -241177,10 +241281,10 @@ x-webhooks: enum: - fixed - open - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -241258,7 +241362,7 @@ x-webhooks: type: string enum: - assigned - alert: &865 + alert: &866 type: object properties: number: *189 @@ -241408,12 +241512,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *864 + metadata: *865 assignee: *4 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -241491,11 +241595,11 @@ x-webhooks: type: string enum: - created - alert: *865 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *866 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -241576,11 +241680,11 @@ x-webhooks: type: string enum: - created - alert: *865 - installation: *802 - location: *866 - organization: *803 - repository: *804 + alert: *866 + installation: *803 + location: *867 + organization: *804 + repository: *805 sender: *4 required: - location @@ -241818,11 +241922,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *865 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *866 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -241899,11 +242003,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *865 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *866 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -241980,11 +242084,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *865 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *866 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -242062,11 +242166,11 @@ x-webhooks: type: string enum: - reopened - alert: *865 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *866 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -242144,11 +242248,11 @@ x-webhooks: type: string enum: - resolved - alert: *865 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *866 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -242226,12 +242330,12 @@ x-webhooks: type: string enum: - unassigned - alert: *865 + alert: *866 assignee: *4 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -242309,11 +242413,11 @@ x-webhooks: type: string enum: - validated - alert: *865 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + alert: *866 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -242439,10 +242543,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *804 - enterprise: *801 - installation: *802 - organization: *803 + repository: *805 + enterprise: *802 + installation: *803 + organization: *804 sender: *4 required: - action @@ -242520,11 +242624,11 @@ x-webhooks: type: string enum: - published - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - security_advisory: &867 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + security_advisory: &868 description: The details of the security advisory, including summary, description, and severity. type: object @@ -242725,11 +242829,11 @@ x-webhooks: type: string enum: - updated - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 - security_advisory: *867 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 + security_advisory: *868 sender: *4 required: - action @@ -242802,10 +242906,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -242997,11 +243101,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *315 - enterprise: *801 - installation: *802 - organization: *803 - repository: *362 + security_and_analysis: *316 + enterprise: *802 + installation: *803 + organization: *804 + repository: *363 sender: *4 required: - changes @@ -243079,12 +243183,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - sponsorship: &868 + sponsorship: &869 type: object properties: created_at: @@ -243385,12 +243489,12 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - sponsorship: *868 + sponsorship: *869 required: - action - sponsorship @@ -243478,12 +243582,12 @@ x-webhooks: type: string required: - from - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - sponsorship: *868 + sponsorship: *869 required: - action - changes @@ -243560,17 +243664,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &869 + effective_date: &870 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: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - sponsorship: *868 + sponsorship: *869 required: - action - sponsorship @@ -243644,7 +243748,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &870 + changes: &871 type: object properties: tier: @@ -243688,13 +243792,13 @@ x-webhooks: - from required: - tier - effective_date: *869 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + effective_date: *870 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - sponsorship: *868 + sponsorship: *869 required: - action - changes @@ -243771,13 +243875,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *870 - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + changes: *871 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - sponsorship: *868 + sponsorship: *869 required: - action - changes @@ -243851,10 +243955,10 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -243937,10 +244041,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -244360,15 +244464,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *801 + enterprise: *802 id: description: The unique identifier of the status. type: integer - installation: *802 + installation: *803 name: type: string - organization: *803 - repository: *804 + organization: *804 + repository: *805 sender: *4 sha: description: The Commit SHA. @@ -244483,9 +244587,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *89 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -244574,9 +244678,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *89 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -244665,9 +244769,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *89 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -244756,9 +244860,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *89 - installation: *802 - organization: *803 - repository: *804 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -244834,12 +244938,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - team: &871 + team: &872 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -245062,9 +245166,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 repository: title: Repository description: A git repository @@ -245522,7 +245626,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *871 + team: *872 required: - action - team @@ -245598,9 +245702,9 @@ x-webhooks: type: string enum: - created - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 repository: title: Repository description: A git repository @@ -246058,7 +246162,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *871 + team: *872 required: - action - team @@ -246135,9 +246239,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 repository: title: Repository description: A git repository @@ -246595,7 +246699,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *871 + team: *872 required: - action - team @@ -246739,9 +246843,9 @@ x-webhooks: - from required: - permissions - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 repository: title: Repository description: A git repository @@ -247199,7 +247303,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *871 + team: *872 required: - action - changes @@ -247277,9 +247381,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *801 - installation: *802 - organization: *803 + enterprise: *802 + installation: *803 + organization: *804 repository: title: Repository description: A git repository @@ -247737,7 +247841,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *871 + team: *872 required: - action - team @@ -247813,10 +247917,10 @@ x-webhooks: type: string enum: - started - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 required: - action @@ -247889,16 +247993,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *801 + enterprise: *802 inputs: type: object nullable: true additionalProperties: true - installation: *802 - organization: *803 + installation: *803 + organization: *804 ref: type: string - repository: *804 + repository: *805 sender: *4 workflow: type: string @@ -247980,10 +248084,10 @@ x-webhooks: type: string enum: - completed - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 workflow_job: allOf: @@ -248220,7 +248324,7 @@ x-webhooks: type: string required: - conclusion - deployment: *524 + deployment: *525 required: - action - repository @@ -248299,10 +248403,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 workflow_job: allOf: @@ -248562,7 +248666,7 @@ x-webhooks: required: - status - steps - deployment: *524 + deployment: *525 required: - action - repository @@ -248641,10 +248745,10 @@ x-webhooks: type: string enum: - queued - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 workflow_job: type: object @@ -248779,7 +248883,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *524 + deployment: *525 required: - action - repository @@ -248858,10 +248962,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 workflow_job: type: object @@ -248997,7 +249101,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *524 + deployment: *525 required: - action - repository @@ -249077,12 +249181,12 @@ x-webhooks: type: string enum: - completed - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object @@ -250081,12 +250185,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object @@ -251070,12 +251174,12 @@ x-webhooks: type: string enum: - requested - enterprise: *801 - installation: *802 - organization: *803 - repository: *804 + enterprise: *802 + installation: *803 + organization: *804 + repository: *805 sender: *4 - workflow: *818 + workflow: *819 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json index 898032afab..5846ed4d10 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -50613,6 +50613,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -51969,7 +51977,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -52194,7 +52203,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -75507,7 +75517,7 @@ "/enterprises/{enterprise}/settings/billing/budgets": { "get": { "summary": "Get all budgets", - "description": "Gets all budgets for an enterprise. The authenticated user must be an enterprise admin or billing manager.\nEach page returns up to 100 budgets.", + "description": "Gets all budgets for an enterprise. The authenticated actor must have permission to view enterprise billing.\nEach page returns up to 100 budgets.", "tags": [ "billing" ], @@ -75639,6 +75649,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -75883,7 +75897,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "budgets" } @@ -183852,6 +183866,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -185208,7 +185230,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -185433,7 +185456,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -262246,6 +262270,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -416674,6 +416749,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -417610,7 +417693,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -417768,7 +417852,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -418958,7 +419043,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -420164,7 +420250,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -772093,6 +772180,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ diff --git a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 9dcacabb86..883e126c87 100644 --- a/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -872,7 +872,7 @@ paths: - subscriptions_url - type - url - type: &493 + type: &494 type: string description: The type of credit the user is receiving. enum: @@ -1038,7 +1038,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &833 + - &834 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4261,7 +4261,7 @@ paths: schema: type: integer default: 30 - - &377 + - &378 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 @@ -4270,7 +4270,7 @@ paths: required: false schema: type: string - - &378 + - &379 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4290,7 +4290,7 @@ paths: application/json: schema: type: array - items: &379 + items: &380 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4370,7 +4370,7 @@ paths: - installation_id - repository_id examples: - default: &380 + default: &381 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4402,7 +4402,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &843 + schema: &844 title: Scim Error description: Scim Error type: object @@ -4498,7 +4498,7 @@ paths: description: Response content: application/json: - schema: &381 + schema: &382 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4612,7 +4612,7 @@ paths: - request - response examples: - default: &382 + default: &383 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5624,7 +5624,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &451 + properties: &452 id: description: Unique identifier of the repository example: 42 @@ -6075,7 +6075,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &452 + required: &453 - archive_url - assignees_url - blobs_url @@ -11833,7 +11833,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &844 + '401': &845 description: Authorization failure '404': *6 x-github: @@ -16115,7 +16115,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &585 + instances_url: &586 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -16150,7 +16150,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &586 + dismissed_reason: &587 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -16159,13 +16159,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &587 + dismissed_comment: &588 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &588 + rule: &589 type: object properties: id: @@ -16218,7 +16218,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &589 + tool: &590 type: object properties: name: *114 @@ -16228,26 +16228,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *115 - most_recent_instance: &590 + most_recent_instance: &591 type: object properties: - ref: &583 + ref: &584 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &601 + analysis_key: &602 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: &602 + environment: &603 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: &603 + category: &604 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16267,7 +16267,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: &604 + location: &605 type: object description: Describe a region within a file for the alert. properties: @@ -16288,7 +16288,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: &605 + items: &606 type: string description: A classification of the file. For example to identify it as generated. @@ -18647,7 +18647,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &417 + properties: &418 id: description: Unique identifier of the team type: integer @@ -18719,7 +18719,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &418 + required: &419 - id - node_id - url @@ -20902,7 +20902,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 - - &647 + - &648 name: has in: query description: |- @@ -20936,6 +20936,16 @@ paths: - development - runtime - &362 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &363 name: sort in: query description: |- @@ -20961,7 +20971,7 @@ paths: application/json: schema: type: array - items: &363 + items: &364 type: object description: A Dependabot alert. properties: @@ -21025,7 +21035,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &648 + security_advisory: &649 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -21264,14 +21274,14 @@ paths: nullable: true maxLength: 280 fixed_at: *146 - auto_dismissed_at: &649 + auto_dismissed_at: &650 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &650 + dismissal_request: &651 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -21333,7 +21343,7 @@ paths: - repository additionalProperties: false examples: - default: &364 + default: &365 value: - number: 2 state: dismissed @@ -21343,6 +21353,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -21529,6 +21540,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -21718,7 +21730,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21744,7 +21756,7 @@ paths: nullable: true additionalProperties: false examples: - default: &366 + default: &367 value: default_level: public accessible_repositories: @@ -21966,7 +21978,7 @@ paths: - *106 - *107 - *108 - - &368 + - &369 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -21992,7 +22004,7 @@ paths: application/json: schema: type: array - items: &370 + items: &371 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -22113,7 +22125,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &371 + default: &372 value: - id: 21 number: 42 @@ -23192,7 +23204,7 @@ paths: application/json: schema: *22 examples: - default: &394 + default: &395 value: id: 1 account: @@ -23446,7 +23458,7 @@ paths: - name - created_on examples: - default: &498 + default: &499 value: total_count: 2 network_configurations: @@ -23697,7 +23709,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *42 - - &499 + - &500 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23709,7 +23721,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &501 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23743,7 +23755,7 @@ paths: - subnet_id - region examples: - default: &501 + default: &502 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24562,7 +24574,7 @@ paths: required: true content: application/json: - schema: &450 + schema: &451 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25793,7 +25805,7 @@ paths: nullable: true anyOf: - *170 - - &456 + - &457 title: Organization ruleset conditions type: object description: |- @@ -25840,7 +25852,7 @@ paths: - *173 rules: type: array - items: &798 + items: &799 title: Repository Rule type: object description: A repository rule. @@ -25849,7 +25861,7 @@ paths: - *179 - *180 - *181 - - &795 + - &796 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25940,7 +25952,7 @@ paths: - *192 - *193 - *194 - - &796 + - &797 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -26189,7 +26201,7 @@ paths: type: string format: date-time examples: - default: &459 + default: &460 value: - version_id: 3 actor: @@ -26242,7 +26254,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &461 allOf: - *203 - type: object @@ -26297,7 +26309,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *42 - - &461 + - &462 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -26308,7 +26320,7 @@ paths: enum: - open - resolved - - &462 + - &463 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -26318,7 +26330,7 @@ paths: required: false schema: type: string - - &463 + - &464 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -26329,7 +26341,7 @@ paths: required: false schema: type: string - - &464 + - &465 name: exclude_providers in: query description: |- @@ -26340,7 +26352,7 @@ paths: required: false schema: type: string - - &465 + - &466 name: providers in: query description: |- @@ -26351,7 +26363,7 @@ paths: required: false schema: type: string - - &466 + - &467 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -26360,7 +26372,7 @@ paths: required: false schema: type: string - - &467 + - &468 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -26379,7 +26391,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &468 + - &469 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. @@ -26395,7 +26407,7 @@ paths: - *17 - *111 - *112 - - &469 + - &470 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -26404,7 +26416,7 @@ paths: required: false schema: type: string - - &470 + - &471 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -26413,7 +26425,7 @@ paths: schema: type: boolean default: false - - &471 + - &472 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -26422,7 +26434,7 @@ paths: schema: type: boolean default: false - - &472 + - &473 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -26431,7 +26443,7 @@ paths: schema: type: boolean default: false - - &473 + - &474 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -26442,7 +26454,7 @@ paths: required: false schema: type: boolean - - &474 + - &475 name: included_metadata in: query description: |- @@ -26453,7 +26465,7 @@ paths: required: false schema: type: string - - &475 + - &476 name: owner_email_hash in: query description: |- @@ -26472,7 +26484,7 @@ paths: application/json: schema: type: array - items: &476 + items: &477 type: object properties: number: *136 @@ -26491,14 +26503,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &811 + state: &812 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: &812 + resolution: &813 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -26615,8 +26627,8 @@ paths: pull request. ' - oneOf: &813 - - &815 + oneOf: &814 + - &816 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26674,7 +26686,7 @@ paths: - blob_url - commit_sha - commit_url - - &816 + - &817 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. @@ -26729,7 +26741,7 @@ paths: - page_url - commit_sha - commit_url - - &817 + - &818 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26749,7 +26761,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &818 + - &819 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26769,7 +26781,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &819 + - &820 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26789,7 +26801,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &820 + - &821 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26803,7 +26815,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &821 + - &822 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26817,7 +26829,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &822 + - &823 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26831,7 +26843,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &823 + - &824 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. @@ -26851,7 +26863,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &824 + - &825 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. @@ -26871,7 +26883,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &825 + - &826 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. @@ -26891,7 +26903,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &826 + - &827 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. @@ -26911,7 +26923,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &827 + - &828 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -26959,7 +26971,7 @@ paths: required: *21 nullable: true examples: - default: &477 + default: &478 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -27163,7 +27175,7 @@ paths: subcategory: custom-patterns parameters: - *42 - - &478 + - &479 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -27174,7 +27186,7 @@ paths: enum: - published - unpublished - - &479 + - &480 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -27185,7 +27197,7 @@ paths: enum: - enabled - disabled - - &480 + - &481 name: sort description: The property to sort the results by. in: query @@ -27279,7 +27291,7 @@ paths: - state - push_protection_enabled examples: - default: &481 + default: &482 value: - id: 1 name: Example Custom Pattern @@ -27342,7 +27354,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &482 + items: &483 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -27379,7 +27391,7 @@ paths: items: type: string examples: - default: &483 + default: &484 value: patterns: - name: Example Custom Pattern @@ -27405,7 +27417,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: &484 + default: &485 value: created_patterns: - id: 1 @@ -27457,7 +27469,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &485 + items: &486 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -27511,7 +27523,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &486 + items: &487 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -27534,7 +27546,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &487 + default: &488 value: patterns: - pattern_id: 2 @@ -27580,7 +27592,7 @@ paths: required: true content: application/json: - schema: &488 + schema: &489 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -27621,7 +27633,7 @@ paths: type: string custom_pattern_version: *206 examples: - default: &489 + default: &490 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -27638,7 +27650,7 @@ paths: application/json: schema: *205 examples: - default: &490 + default: &491 value: id: 1 name: Example Custom Pattern @@ -27685,7 +27697,7 @@ paths: description: Response content: application/json: - schema: &491 + schema: &492 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -27763,7 +27775,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *208 examples: - default: &492 + default: &493 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -27899,7 +27911,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *42 - - &495 + - &496 name: advanced_security_product in: query description: | @@ -27919,7 +27931,7 @@ paths: description: Success content: application/json: - schema: &496 + schema: &497 type: object properties: total_advanced_security_committers: @@ -27974,7 +27986,7 @@ paths: required: - repositories examples: - default: &497 + default: &498 value: total_advanced_security_committers: 2 total_count: 2 @@ -28214,7 +28226,7 @@ paths: get: summary: Get all budgets description: |- - Gets all budgets for an enterprise. The authenticated user must be an enterprise admin or billing manager. + Gets all budgets for an enterprise. The authenticated actor must have permission to view enterprise billing. Each page returns up to 100 budgets. tags: - billing @@ -28322,6 +28334,10 @@ paths: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -28462,7 +28478,7 @@ paths: '403': *29 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: budgets post: @@ -31819,7 +31835,7 @@ paths: properties: action: type: string - discussion: &955 + discussion: &956 title: Discussion description: A Discussion in a repository. type: object @@ -32186,7 +32202,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &708 + properties: &709 id: type: integer format: int64 @@ -32299,7 +32315,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &439 + properties: &440 url: type: string format: uri @@ -32369,7 +32385,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &440 + required: &441 - closed_issues - creator - description @@ -32448,7 +32464,7 @@ paths: timeline_url: type: string format: uri - type: &404 + type: &405 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -32564,7 +32580,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &871 + sub_issues_summary: &872 title: Sub-issues Summary type: object properties: @@ -32651,7 +32667,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &737 + properties: &738 pinned_at: type: string format: date-time @@ -32663,7 +32679,7 @@ paths: properties: *20 required: *21 nullable: true - required: &738 + required: &739 - pinned_at - pinned_by nullable: true @@ -32672,13 +32688,13 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &739 + properties: &740 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &740 + required: &741 - reason nullable: true required: &237 @@ -32691,7 +32707,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &872 + issue_dependencies_summary: &873 title: Issue Dependencies Summary type: object properties: @@ -32710,7 +32726,7 @@ paths: - total_blocking issue_field_values: type: array - items: &719 + items: &720 title: Issue Field Value description: A value assigned to an issue field type: object @@ -32802,7 +32818,7 @@ paths: - node_id - data_type - value - required: &709 + required: &710 - assignee - closed_at - comments @@ -32840,7 +32856,7 @@ paths: action: type: string issue: *235 - comment: &704 + comment: &705 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -33504,7 +33520,7 @@ paths: type: string release: allOf: - - &788 + - &789 title: Release description: A release. type: object @@ -33575,7 +33591,7 @@ paths: author: *4 assets: type: array - items: &789 + items: &790 title: Release Asset description: Data related to a release. type: object @@ -34154,7 +34170,7 @@ paths: url: type: string format: uri - user: &880 + user: &881 title: Public User description: Public User type: object @@ -36031,7 +36047,7 @@ paths: - closed - all default: open - - &407 + - &408 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -36082,7 +36098,7 @@ paths: type: array items: *235 examples: - default: &408 + default: &409 value: - id: 1 node_id: MDU6SXNzdWUx @@ -37481,14 +37497,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &510 + - &511 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &511 + - &512 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -37550,7 +37566,7 @@ paths: '404': *6 '403': *29 '304': *38 - '301': &516 + '301': &517 description: Moved permanently content: application/json: @@ -37572,7 +37588,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &760 + - &761 name: all description: If `true`, show notifications marked as read. in: query @@ -37580,7 +37596,7 @@ paths: schema: type: boolean default: false - - &761 + - &762 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -37590,7 +37606,7 @@ paths: type: boolean default: false - *242 - - &762 + - &763 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: @@ -37626,7 +37642,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &372 + properties: &373 id: type: integer format: int64 @@ -37912,7 +37928,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &453 + security_and_analysis: &454 nullable: true type: object properties: @@ -38040,7 +38056,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &373 + required: &374 - archive_url - assignees_url - blobs_url @@ -38128,7 +38144,7 @@ paths: - url - subscription_url examples: - default: &763 + default: &764 value: - id: '1' repository: @@ -38980,7 +38996,7 @@ paths: type: array items: *164 examples: - default: &769 + default: &770 value: - property_name: environment value: production @@ -39030,7 +39046,7 @@ paths: required: - properties examples: - default: &770 + default: &771 value: properties: - property_name: environment @@ -39843,7 +39859,7 @@ paths: type: integer repository_cache_usages: type: array - items: &523 + items: &524 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -46095,12 +46111,12 @@ paths: required: - subject_digests examples: - default: &913 + default: &914 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &914 + withPredicateType: &915 value: subject_digests: - sha256:abc123 @@ -46158,7 +46174,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &915 + default: &916 value: attestations_subject_digests: - sha256:abc: @@ -46508,7 +46524,7 @@ paths: initiator: type: string examples: - default: &556 + default: &557 value: attestations: - repository_id: 1 @@ -47343,7 +47359,7 @@ paths: be returned. in: query required: false - schema: &584 + schema: &585 type: string description: Severity of a code scanning alert. enum: @@ -48409,7 +48425,7 @@ paths: type: integer codespaces: type: array - items: &409 + items: &410 type: object title: Codespace description: A codespace. @@ -48439,7 +48455,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &617 + properties: &618 name: type: string description: The name of the machine. @@ -48481,7 +48497,7 @@ paths: - ready - in_progress nullable: true - required: &618 + required: &619 - name - display_name - operating_system @@ -48686,7 +48702,7 @@ paths: - pulls_url - recent_folders examples: - default: &410 + default: &411 value: total_count: 3 codespaces: @@ -49349,7 +49365,7 @@ paths: - updated_at - visibility examples: - default: &619 + default: &620 value: total_count: 2 secrets: @@ -49387,7 +49403,7 @@ paths: description: Response content: application/json: - schema: &620 + schema: &621 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -49416,7 +49432,7 @@ paths: - key_id - key examples: - default: &621 + default: &622 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -49448,7 +49464,7 @@ paths: application/json: schema: *343 examples: - default: &623 + default: &624 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -53256,6 +53272,7 @@ paths: type: string - *361 - *362 + - *363 - *113 - *111 - *112 @@ -53267,9 +53284,9 @@ paths: application/json: schema: type: array - items: *363 + items: *364 examples: - default: *364 + default: *365 '304': *38 '400': *14 '403': *29 @@ -53318,9 +53335,9 @@ paths: description: Response content: application/json: - schema: *365 + schema: *366 examples: - default: *366 + default: *367 '403': *29 '404': *6 x-github: @@ -53483,7 +53500,7 @@ paths: type: integer secrets: type: array - items: &367 + items: &368 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -53560,7 +53577,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &654 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -53577,7 +53594,7 @@ paths: - key_id - key examples: - default: &654 + default: &655 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -53607,7 +53624,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *368 examples: default: value: @@ -53905,7 +53922,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *90 - - &663 + - &664 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -53913,7 +53930,7 @@ paths: required: false schema: type: string - - &664 + - &665 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -53921,7 +53938,7 @@ paths: required: false schema: type: string - - &665 + - &666 name: time_period description: |- The time period to filter by. @@ -53937,7 +53954,7 @@ paths: - week - month default: month - - &666 + - &667 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -53962,7 +53979,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -54068,7 +54085,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &369 + items: &370 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -54118,7 +54135,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &668 + default: &669 value: - id: 21 number: 42 @@ -54210,7 +54227,7 @@ paths: - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -54220,7 +54237,7 @@ paths: application/json: schema: type: array - items: &669 + items: &670 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -54326,7 +54343,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *369 + items: *370 url: type: string format: uri @@ -54337,7 +54354,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &670 + default: &671 value: - id: 21 number: 42 @@ -54429,7 +54446,7 @@ paths: - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -54439,9 +54456,9 @@ paths: application/json: schema: type: array - items: *370 + items: *371 examples: - default: *371 + default: *372 '404': *6 '403': *29 '500': *41 @@ -54467,7 +54484,7 @@ paths: application/json: schema: type: array - items: &420 + items: &421 title: Package description: A software package type: object @@ -54517,8 +54534,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *372 - required: *373 + properties: *373 + required: *374 nullable: true created_at: type: string @@ -54537,7 +54554,7 @@ paths: - created_at - updated_at examples: - default: &421 + default: &422 value: - id: 197 name: hello_docker @@ -54724,7 +54741,7 @@ paths: description: Response content: application/json: - schema: &507 + schema: &508 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -54805,7 +54822,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &508 + default: &509 value: group_id: '123' group_name: Octocat admins @@ -54860,7 +54877,7 @@ paths: description: Response content: application/json: - schema: &504 + schema: &505 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -54897,7 +54914,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &505 + default: &506 value: groups: - group_id: '123' @@ -54942,7 +54959,7 @@ paths: application/json: schema: type: array - items: &398 + items: &399 title: Organization Invitation description: Organization Invitation type: object @@ -54989,7 +55006,7 @@ paths: - invitation_teams_url - node_id examples: - default: &399 + default: &400 value: - id: 1 login: monalisa @@ -55056,7 +55073,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -55070,7 +55087,7 @@ paths: - name - description examples: - default: &455 + default: &456 value: - name: add_assignee description: Assign or remove a user @@ -55111,7 +55128,7 @@ paths: application/json: schema: type: array - items: &374 + items: &375 title: Org Hook description: Org Hook type: object @@ -55280,9 +55297,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: &375 + default: &376 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -55327,7 +55344,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *90 - - &376 + - &377 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. @@ -55340,9 +55357,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 '404': *6 x-github: githubCloudOnly: false @@ -55364,7 +55381,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *90 - - *376 + - *377 requestBody: required: false content: @@ -55409,7 +55426,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: default: value: @@ -55449,7 +55466,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *90 - - *376 + - *377 responses: '204': description: Response @@ -55475,7 +55492,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *90 - - *376 + - *377 responses: '200': description: Response @@ -55504,7 +55521,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *90 - - *376 + - *377 requestBody: required: false content: @@ -55553,10 +55570,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *90 - - *376 - - *17 - *377 + - *17 - *378 + - *379 responses: '200': description: Response @@ -55564,9 +55581,9 @@ paths: application/json: schema: type: array - items: *379 + items: *380 examples: - default: *380 + default: *381 '400': *14 '422': *15 x-github: @@ -55590,16 +55607,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *90 - - *376 + - *377 - *16 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 '400': *14 '422': *15 x-github: @@ -55623,7 +55640,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *90 - - *376 + - *377 - *16 responses: '202': *40 @@ -55650,7 +55667,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *90 - - *376 + - *377 responses: '204': description: Response @@ -55675,7 +55692,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *90 - - &387 + - &388 name: actor_type in: path description: The type of the actor @@ -55688,14 +55705,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &388 + - &389 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &383 + - &384 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`.' @@ -55703,7 +55720,7 @@ paths: required: true schema: type: string - - &384 + - &385 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) @@ -55799,12 +55816,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *90 - - *383 - *384 + - *385 - *19 - *17 - *113 - - &393 + - &394 name: sort description: The property to sort the results by. in: query @@ -55884,14 +55901,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *90 - - *383 - *384 + - *385 responses: '200': description: Response content: application/json: - schema: &385 + schema: &386 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -55907,7 +55924,7 @@ paths: type: integer format: int64 examples: - default: &386 + default: &387 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -55930,23 +55947,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *90 - - &389 + - &390 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *383 - *384 + - *385 responses: '200': description: Response content: application/json: - schema: *385 + schema: *386 examples: - default: *386 + default: *387 x-github: enabledForGitHubApps: true category: orgs @@ -55966,18 +55983,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *90 - - *383 - *384 - - *387 + - *385 - *388 + - *389 responses: '200': description: Response content: application/json: - schema: *385 + schema: *386 examples: - default: *386 + default: *387 x-github: enabledForGitHubApps: true category: orgs @@ -55997,9 +56014,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *90 - - *383 - *384 - - &390 + - *385 + - &391 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -56012,7 +56029,7 @@ paths: description: Response content: application/json: - schema: &391 + schema: &392 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -56028,7 +56045,7 @@ paths: type: integer format: int64 examples: - default: &392 + default: &393 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -56067,18 +56084,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *90 - - *389 - - *383 - - *384 - *390 + - *384 + - *385 + - *391 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *392 + default: *393 x-github: enabledForGitHubApps: true category: orgs @@ -56098,19 +56115,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *90 - - *387 - *388 - - *383 + - *389 - *384 - - *390 + - *385 + - *391 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *392 + default: *393 x-github: enabledForGitHubApps: true category: orgs @@ -56130,13 +56147,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *90 - - *389 - - *383 + - *390 - *384 + - *385 - *19 - *17 - *113 - - *393 + - *394 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -56217,7 +56234,7 @@ paths: application/json: schema: *22 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -56337,12 +56354,12 @@ paths: application/json: schema: anyOf: - - &396 + - &397 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &395 + limit: &396 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -56367,7 +56384,7 @@ paths: properties: {} additionalProperties: false examples: - default: &397 + default: &398 value: limit: collaborators_only origin: organization @@ -56396,13 +56413,13 @@ paths: required: true content: application/json: - schema: &699 + schema: &700 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *395 + limit: *396 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -56426,9 +56443,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: - default: *397 + default: *398 '422': *15 x-github: githubCloudOnly: false @@ -56640,9 +56657,9 @@ paths: application/json: schema: type: array - items: *398 + items: *399 examples: - default: *399 + default: *400 headers: Link: *48 '404': *6 @@ -56720,7 +56737,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -56777,7 +56794,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *90 - - &400 + - &401 name: invitation_id description: The unique identifier of the invitation. in: path @@ -56811,7 +56828,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *90 - - *400 + - *401 - *17 - *19 responses: @@ -56823,7 +56840,7 @@ paths: type: array items: *329 examples: - default: &419 + default: &420 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -56866,7 +56883,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -57119,9 +57136,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &402 + default: &403 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -57177,7 +57194,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *90 - - &403 + - &404 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -57285,9 +57302,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *402 + default: *403 '404': *6 '422': *7 x-github: @@ -57312,7 +57329,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *90 - - *403 + - *404 responses: '204': *129 '404': *6 @@ -57342,9 +57359,9 @@ paths: application/json: schema: type: array - items: *404 + items: *405 examples: - default: &703 + default: &704 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -57427,9 +57444,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: - default: &405 + default: &406 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -57462,7 +57479,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *90 - - &406 + - &407 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -57515,9 +57532,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: - default: *405 + default: *406 '404': *6 '422': *7 x-github: @@ -57542,7 +57559,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *90 - - *406 + - *407 responses: '204': description: Response @@ -57605,7 +57622,7 @@ paths: - closed - all default: open - - *407 + - *408 - name: type description: Can be the name of an issue type. in: query @@ -57636,7 +57653,7 @@ paths: type: array items: *235 examples: - default: *408 + default: *409 headers: Link: *48 '404': *6 @@ -57795,9 +57812,9 @@ paths: type: integer codespaces: type: array - items: *409 + items: *410 examples: - default: *410 + default: *411 '304': *38 '500': *41 '401': *25 @@ -57824,7 +57841,7 @@ paths: parameters: - *90 - *135 - - &411 + - &412 name: codespace_name in: path required: true @@ -57859,15 +57876,15 @@ paths: parameters: - *90 - *135 - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: &616 + default: &617 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -58123,7 +58140,7 @@ paths: description: Response content: application/json: - schema: &412 + schema: &413 title: Org Membership description: Org Membership type: object @@ -58190,7 +58207,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &413 + response-if-user-has-an-active-admin-membership-with-organization: &414 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -58291,9 +58308,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: - response-if-user-already-had-membership-with-organization: *413 + response-if-user-already-had-membership-with-organization: *414 '422': *15 '403': *29 x-github: @@ -58364,7 +58381,7 @@ paths: application/json: schema: type: array - items: &414 + items: &415 title: Migration description: A migration. type: object @@ -58693,7 +58710,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -58872,7 +58889,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *90 - - &415 + - &416 name: migration_id description: The unique identifier of the migration. in: path @@ -58899,7 +58916,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -59069,7 +59086,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *90 - - *415 + - *416 responses: '302': description: Response @@ -59091,7 +59108,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *90 - - *415 + - *416 responses: '204': description: Response @@ -59115,8 +59132,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *90 - - *415 - - &896 + - *416 + - &897 name: repo_name description: repo_name parameter in: path @@ -59144,7 +59161,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *90 - - *415 + - *416 - *17 - *19 responses: @@ -59156,7 +59173,7 @@ paths: type: array items: *296 examples: - default: &426 + default: &427 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -59367,7 +59384,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &416 + items: &417 title: Organization Role description: Organization roles type: object @@ -59574,7 +59591,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -59804,7 +59821,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -59901,7 +59918,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -60059,8 +60076,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *417 - required: *418 + properties: *418 + required: *419 nullable: true type: description: The ownership type of the team @@ -60092,7 +60109,7 @@ paths: - type - parent examples: - default: *419 + default: *420 headers: Link: *48 '404': @@ -60150,13 +60167,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &494 + items: &495 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *417 - required: *418 + properties: *418 + required: *419 name: nullable: true type: string @@ -60444,7 +60461,7 @@ paths: - nuget - container - *90 - - &897 + - &898 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -60480,12 +60497,12 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *421 + default: *422 '403': *29 '401': *25 - '400': &899 + '400': &900 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -60507,7 +60524,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &422 + - &423 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 @@ -60525,7 +60542,7 @@ paths: - docker - nuget - container - - &423 + - &424 name: package_name description: The name of the package. in: path @@ -60538,7 +60555,7 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -60590,8 +60607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *422 - *423 + - *424 - *90 responses: '204': @@ -60624,8 +60641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - name: token description: package token @@ -60658,8 +60675,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *422 - *423 + - *424 - *90 - *19 - *17 @@ -60680,7 +60697,7 @@ paths: application/json: schema: type: array - items: &424 + items: &425 title: Package Version description: A version of a software package type: object @@ -60805,10 +60822,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - - &425 + - &426 name: package_version_id description: Unique identifier of the package version. in: path @@ -60820,7 +60837,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -60856,10 +60873,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - - *425 + - *426 responses: '204': description: Response @@ -60891,10 +60908,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - - *425 + - *426 responses: '204': description: Response @@ -60924,7 +60941,7 @@ paths: - *90 - *17 - *19 - - &427 + - &428 name: sort description: The property by which to sort the results. in: query @@ -60935,7 +60952,7 @@ paths: - created_at default: created_at - *113 - - &428 + - &429 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -60946,7 +60963,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &429 + - &430 name: repository description: The name of the repository to use to filter the results. in: query @@ -60954,7 +60971,7 @@ paths: schema: type: string example: Hello-World - - &430 + - &431 name: permission description: The permission to use to filter the results. in: query @@ -60962,7 +60979,7 @@ paths: schema: type: string example: issues_read - - &431 + - &432 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) @@ -60972,7 +60989,7 @@ paths: schema: type: string format: date-time - - &432 + - &433 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) @@ -60982,7 +60999,7 @@ paths: schema: type: string format: date-time - - &433 + - &434 name: token_id description: The ID of the token in: query @@ -61295,7 +61312,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 x-github: @@ -61321,14 +61338,14 @@ paths: - *90 - *17 - *19 - - *427 - - *113 - *428 + - *113 - *429 - *430 - *431 - *432 - *433 + - *434 responses: '500': *41 '422': *15 @@ -61610,7 +61627,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 x-github: @@ -61652,7 +61669,7 @@ paths: type: integer configurations: type: array - items: &434 + items: &435 title: Organization private registry description: Private registry configuration for an organization type: object @@ -62163,7 +62180,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &435 + org-private-registry-with-selected-visibility: &436 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -62259,9 +62276,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *434 + schema: *435 examples: - default: *435 + default: *436 '404': *6 x-github: githubCloudOnly: false @@ -62512,7 +62529,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: Projects v2 Project description: A projects v2 project type: object @@ -62582,7 +62599,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &991 + properties: &992 id: type: number description: The unique identifier of the status update. @@ -62630,7 +62647,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &992 + required: &993 - id - node_id - created_at @@ -62655,7 +62672,7 @@ paths: - deleted_at - deleted_by examples: - default: &437 + default: &438 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -62758,7 +62775,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &438 + - &439 name: project_number description: The project's number. in: path @@ -62771,9 +62788,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 headers: Link: *48 '304': *38 @@ -62796,7 +62813,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *90 - - *438 + - *439 requestBody: required: true description: Details of the draft item to create in the project. @@ -62830,7 +62847,7 @@ paths: description: Response content: application/json: - schema: &444 + schema: &445 title: Projects v2 Item description: An item belonging to a project type: object @@ -62844,7 +62861,7 @@ paths: content: oneOf: - *235 - - &591 + - &592 title: Pull Request Simple description: Pull Request Simple type: object @@ -62950,8 +62967,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 nullable: true active_lock_reason: type: string @@ -63044,7 +63061,7 @@ paths: _links: type: object properties: - comments: &441 + comments: &442 title: Link description: Hypermedia Link type: object @@ -63053,13 +63070,13 @@ paths: type: string required: - href - commits: *441 - statuses: *441 - html: *441 - issue: *441 - review_comments: *441 - review_comment: *441 - self: *441 + commits: *442 + statuses: *442 + html: *442 + issue: *442 + review_comments: *442 + review_comment: *442 + self: *442 required: - comments - commits @@ -63070,7 +63087,7 @@ paths: - review_comment - self author_association: *232 - auto_merge: &772 + auto_merge: &773 title: Auto merge description: The status of auto merging a pull request. type: object @@ -63095,7 +63112,7 @@ paths: - commit_title - commit_message nullable: true - stack: &773 + stack: &774 title: Pull Request Stack description: The stack information associated with a pull request. @@ -63211,7 +63228,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &443 + content_type: &444 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -63251,7 +63268,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &445 + draft_issue: &446 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -63325,7 +63342,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *438 + - *439 - *90 - *17 - *111 @@ -63337,7 +63354,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -63487,7 +63504,7 @@ paths: - updated_at - project_url examples: - default: &919 + default: &920 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63617,7 +63634,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *438 + - *439 - *90 requestBody: required: true @@ -63664,7 +63681,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &920 + items: &921 type: object properties: name: @@ -63701,7 +63718,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &921 + iteration_configuration: &922 type: object description: The configuration for iteration fields. properties: @@ -63751,7 +63768,7 @@ paths: value: name: Due date data_type: date - single_select_field: &922 + single_select_field: &923 summary: Create a single select field value: name: Priority @@ -63778,7 +63795,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &923 + iteration_field: &924 summary: Create an iteration field value: name: Sprint @@ -63802,9 +63819,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *442 + schema: *443 examples: - text_field: &924 + text_field: &925 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -63813,7 +63830,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: &925 + number_field: &926 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -63822,7 +63839,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: &926 + date_field: &927 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -63831,7 +63848,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: &927 + single_select_field: &928 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63865,7 +63882,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &928 + iteration_field: &929 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -63910,8 +63927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *438 - - &929 + - *439 + - &930 name: field_id description: The unique identifier of the field. in: path @@ -63924,9 +63941,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: &930 + default: &931 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63982,7 +63999,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *438 + - *439 - *90 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -64015,7 +64032,7 @@ paths: application/json: schema: type: array - items: &446 + items: &447 title: Projects v2 Item description: An item belonging to a project type: object @@ -64031,7 +64048,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *443 + content_type: *444 content: type: object additionalProperties: true @@ -64074,7 +64091,7 @@ paths: - updated_at - archived_at examples: - default: &447 + default: &448 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -64772,7 +64789,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *90 - - *438 + - *439 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -64842,22 +64859,22 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *445 + value: *446 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *445 + value: *446 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *445 + value: *446 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *445 + value: *446 '304': *38 '403': *29 '401': *25 @@ -64877,9 +64894,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *438 + - *439 - *90 - - &448 + - &449 name: item_id description: The unique identifier of the project item. in: path @@ -64905,9 +64922,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -64928,9 +64945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *438 + - *439 - *90 - - *448 + - *449 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -65000,13 +65017,13 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - text_field: *447 - number_field: *447 - date_field: *447 - single_select_field: *447 - iteration_field: *447 + text_field: *448 + number_field: *448 + date_field: *448 + single_select_field: *448 + iteration_field: *448 '401': *25 '403': *29 '404': *6 @@ -65026,9 +65043,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *438 + - *439 - *90 - - *448 + - *449 responses: '204': description: Response @@ -65052,7 +65069,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *90 - - *438 + - *439 requestBody: required: true content: @@ -65088,6 +65105,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -65123,7 +65181,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &910 + schema: &911 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -65221,7 +65279,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &449 + value: &450 value: id: 1 number: 1 @@ -65267,10 +65325,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *449 + value: *450 roadmap_view: summary: Response for creating a roadmap view - value: *449 + value: *450 '304': *38 '403': *29 '401': *25 @@ -65298,9 +65356,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *438 + - *439 - *90 - - &931 + - &932 name: view_number description: The number that identifies the project view. in: path @@ -65332,9 +65390,9 @@ paths: application/json: schema: type: array - items: *446 + items: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -65498,7 +65556,7 @@ paths: required: true content: application/json: - schema: *450 + schema: *451 examples: default: value: @@ -65863,7 +65921,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 x-github: @@ -66066,7 +66124,7 @@ paths: description: Response content: application/json: - schema: &515 + schema: &516 title: Full Repository description: Full Repository type: object @@ -66354,8 +66412,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *451 - required: *452 + properties: *452 + required: *453 nullable: true temp_clone_token: type: string @@ -66470,7 +66528,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &637 + properties: &638 url: type: string format: uri @@ -66486,12 +66544,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &638 + required: &639 - url - key - name - html_url - security_and_analysis: *453 + security_and_analysis: *454 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -66575,7 +66633,7 @@ paths: - network_count - subscribers_count examples: - default: &517 + default: &518 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -67101,9 +67159,9 @@ paths: application/json: schema: type: array - items: *454 + items: *455 examples: - default: *455 + default: *456 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -67128,7 +67186,7 @@ paths: - *90 - *17 - *19 - - &797 + - &798 name: targets description: | A comma-separated list of rule targets to filter by. @@ -67219,11 +67277,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *177 - conditions: *456 + conditions: *457 rules: type: array description: An array of rules within the ruleset. - items: &458 + items: &459 title: Repository Rule type: object description: A repository rule. @@ -67288,7 +67346,7 @@ paths: application/json: schema: *199 examples: - default: &457 + default: &458 value: id: 21 name: super cool ruleset @@ -67344,7 +67402,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &799 + - &800 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 @@ -67356,14 +67414,14 @@ paths: x-multi-segment: true - *326 - *108 - - &800 + - &801 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 - - &801 + - &802 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -67376,7 +67434,7 @@ paths: - bypass - all default: all - - &802 + - &803 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. @@ -67399,7 +67457,7 @@ paths: description: Response content: application/json: - schema: &803 + schema: &804 title: Rule Suites description: Response type: array @@ -67454,7 +67512,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &804 + default: &805 value: - id: 21 actor_id: 12 @@ -67498,7 +67556,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &805 + - &806 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -67514,7 +67572,7 @@ paths: description: Response content: application/json: - schema: &806 + schema: &807 title: Rule Suite description: Response type: object @@ -67613,7 +67671,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &807 + default: &808 value: id: 21 actor_id: 12 @@ -67688,7 +67746,7 @@ paths: application/json: schema: *199 examples: - default: *457 + default: *458 '404': *6 '500': *41 put: @@ -67737,11 +67795,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *177 - conditions: *456 + conditions: *457 rules: description: An array of rules within the ruleset. type: array - items: *458 + items: *459 examples: default: value: @@ -67778,7 +67836,7 @@ paths: application/json: schema: *199 examples: - default: *457 + default: *458 '404': *6 '422': *15 '500': *41 @@ -67838,7 +67896,7 @@ paths: type: array items: *203 examples: - default: *459 + default: *460 '404': *6 '500': *41 x-github: @@ -67875,7 +67933,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *461 examples: default: value: @@ -67938,7 +67996,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *461 - *462 - *463 - *464 @@ -67946,10 +68003,11 @@ paths: - *466 - *467 - *468 + - *469 - *113 - *19 - *17 - - &809 + - &810 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -67959,7 +68017,7 @@ paths: required: false schema: type: string - - &810 + - &811 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -67969,13 +68027,13 @@ paths: required: false schema: type: string - - *469 - *470 - *471 - *472 - *473 - *474 - *475 + - *476 responses: '200': description: Response @@ -67983,9 +68041,9 @@ paths: application/json: schema: type: array - items: *476 + items: *477 examples: - default: *477 + default: *478 headers: Link: *48 '404': *6 @@ -68015,9 +68073,9 @@ paths: subcategory: custom-patterns parameters: - *90 - - *478 - *479 - *480 + - *481 - *113 - *19 - *17 @@ -68030,7 +68088,7 @@ paths: type: array items: *205 examples: - default: *481 + default: *482 headers: Link: *48 '403': *29 @@ -68066,9 +68124,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *482 + items: *483 examples: - default: *483 + default: *484 responses: '201': description: All patterns created successfully. @@ -68082,7 +68140,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: *484 + default: *485 '400': *14 '403': *29 '404': *6 @@ -68106,7 +68164,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *485 + items: *486 delete: summary: Bulk delete organization custom patterns description: |- @@ -68139,7 +68197,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *486 + items: *487 post_delete_action: type: string description: |- @@ -68152,7 +68210,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *487 + default: *488 responses: '204': description: All patterns deleted successfully. @@ -68190,9 +68248,9 @@ paths: required: true content: application/json: - schema: *488 + schema: *489 examples: - default: *489 + default: *490 responses: '200': description: Pattern updated successfully. @@ -68200,7 +68258,7 @@ paths: application/json: schema: *205 examples: - default: *490 + default: *491 '400': *14 '403': *29 '404': *6 @@ -68231,9 +68289,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '403': *29 '404': *6 patch: @@ -68386,7 +68444,7 @@ paths: application/json: schema: type: array - items: &831 + items: &832 description: A repository security advisory. type: object properties: @@ -68606,7 +68664,7 @@ paths: login: type: string description: The username of the user credited. - type: *493 + type: *494 credits_detailed: type: array nullable: true @@ -68616,7 +68674,7 @@ paths: type: object properties: user: *4 - type: *493 + type: *494 state: type: string description: The state of the user's acceptance of the @@ -68677,7 +68735,7 @@ paths: - private_fork additionalProperties: false examples: - default: &832 + default: &833 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -69064,7 +69122,7 @@ paths: application/json: schema: type: array - items: *494 + items: *495 examples: default: value: @@ -69163,7 +69221,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *90 - - *495 + - *496 - *17 - *19 responses: @@ -69171,9 +69229,9 @@ paths: description: Success content: application/json: - schema: *496 + schema: *497 examples: - default: *497 + default: *498 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -69454,7 +69512,7 @@ paths: type: array items: *157 examples: - default: *498 + default: *499 headers: Link: *48 x-github: @@ -69683,15 +69741,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *90 - - *499 + - *500 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *501 + default: *502 headers: Link: *48 x-github: @@ -69729,7 +69787,7 @@ paths: description: Response content: application/json: - schema: &512 + schema: &513 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -69775,7 +69833,7 @@ paths: type: string nullable: true examples: - default: &513 + default: &514 value: groups: - group_id: '123' @@ -69832,7 +69890,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 headers: Link: *48 '403': *29 @@ -69930,7 +69988,7 @@ paths: description: Response content: application/json: - schema: &502 + schema: &503 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -69993,8 +70051,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *417 - required: *418 + properties: *418 + required: *419 nullable: true members_count: type: integer @@ -70257,7 +70315,7 @@ paths: - repos_count - organization examples: - default: &503 + default: &504 value: id: 1 node_id: MDQ6VGVhbTE= @@ -70334,9 +70392,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 x-github: githubCloudOnly: false @@ -70425,16 +70483,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '201': description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 '422': *15 '403': *29 @@ -70464,7 +70522,7 @@ paths: responses: '204': description: Response - '422': &506 + '422': &507 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -70493,10 +70551,10 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 - '422': *506 + default: *506 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -70539,10 +70597,10 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: *508 - '422': *506 + default: *509 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70566,7 +70624,7 @@ paths: responses: '204': description: Response - '422': *506 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70598,12 +70656,12 @@ paths: application/json: schema: type: array - items: *398 + items: *399 examples: - default: *399 + default: *400 headers: Link: *48 - '422': *506 + '422': *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70647,7 +70705,7 @@ paths: application/json: schema: type: array - items: &874 + items: &875 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -70766,7 +70824,7 @@ paths: - type - url examples: - default: &875 + default: &876 value: - login: octocat id: 1 @@ -70825,7 +70883,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &510 title: Team Membership description: Team Membership type: object @@ -70852,7 +70910,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &876 + response-if-user-is-a-team-maintainer: &877 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -70915,9 +70973,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - response-if-users-membership-with-team-is-now-pending: &877 + response-if-users-membership-with-team-is-now-pending: &878 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -70995,7 +71053,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 x-github: @@ -71026,14 +71084,14 @@ paths: parameters: - *90 - *227 - - *510 - *511 + - *512 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &878 + schema: &879 title: Team Repository description: A team's access to a repository. type: object @@ -71604,8 +71662,8 @@ paths: parameters: - *90 - *227 - - *510 - *511 + - *512 requestBody: required: false content: @@ -71652,8 +71710,8 @@ paths: parameters: - *90 - *227 - - *510 - *511 + - *512 responses: '204': description: Response @@ -71686,10 +71744,10 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 - '422': *506 + default: *514 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71755,7 +71813,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: default: value: @@ -71767,7 +71825,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *506 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71801,7 +71859,7 @@ paths: type: array items: *329 examples: - response-if-child-teams-exist: &879 + response-if-child-teams-exist: &880 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -71954,7 +72012,7 @@ paths: resources: type: object properties: - core: &514 + core: &515 title: Rate Limit type: object properties: @@ -71971,21 +72029,21 @@ paths: - remaining - reset - used - graphql: *514 - search: *514 - code_search: *514 - source_import: *514 - integration_manifest: *514 - actions_runner_registration: *514 - scim: *514 - dependency_snapshots: *514 - dependency_sbom: *514 - code_scanning_autofix: *514 - copilot_usage_records: *514 + graphql: *515 + search: *515 + code_search: *515 + source_import: *515 + integration_manifest: *515 + actions_runner_registration: *515 + scim: *515 + dependency_snapshots: *515 + dependency_sbom: *515 + code_scanning_autofix: *515 + copilot_usage_records: *515 required: - core - search - rate: *514 + rate: *515 required: - rate - resources @@ -72085,14 +72143,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *515 + schema: *516 examples: default-response: summary: Default response @@ -72601,7 +72659,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *516 + '301': *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72619,8 +72677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -72940,10 +72998,10 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 - '307': &518 + default: *518 + '307': &519 description: Temporary Redirect content: application/json: @@ -72972,8 +73030,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -72995,7 +73053,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository - '307': *518 + '307': *519 '404': *6 '409': *122 x-github: @@ -73019,11 +73077,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 - - &534 + - &535 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -73046,7 +73104,7 @@ paths: type: integer artifacts: type: array - items: &519 + items: &520 title: Artifact description: An artifact type: object @@ -73124,7 +73182,7 @@ paths: - expires_at - updated_at examples: - default: &535 + default: &536 value: total_count: 2 artifacts: @@ -73185,9 +73243,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *510 - *511 - - &520 + - *512 + - &521 name: artifact_id description: The unique identifier of the artifact. in: path @@ -73199,7 +73257,7 @@ paths: description: Response content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -73237,9 +73295,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *510 - *511 - - *520 + - *512 + - *521 responses: '204': description: Response @@ -73263,9 +73321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *510 - *511 - - *520 + - *512 + - *521 - name: archive_format in: path required: true @@ -73275,7 +73333,7 @@ paths: '302': description: Response headers: - Location: &656 + Location: &657 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 @@ -73300,14 +73358,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &521 + schema: &522 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -73340,13 +73398,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *521 + schema: *522 examples: selected_actions: *45 responses: @@ -73375,14 +73433,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &522 + schema: &523 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -73415,13 +73473,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *522 + schema: *523 examples: selected_actions: *47 responses: @@ -73452,14 +73510,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -73485,11 +73543,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 - - &524 + - &525 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 @@ -73523,7 +73581,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &526 title: Repository actions caches description: Repository actions caches type: object @@ -73565,7 +73623,7 @@ paths: - total_count - actions_caches examples: - default: &526 + default: &527 value: total_count: 1 actions_caches: @@ -73597,23 +73655,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *510 - *511 + - *512 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *524 + - *525 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73633,8 +73691,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *510 - *511 + - *512 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -73663,8 +73721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *112 responses: @@ -73746,8 +73804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *510 - *511 + - *512 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -73899,9 +73957,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *510 - *511 - - &527 + - *512 + - &528 name: job_id description: The unique identifier of the job. in: path @@ -73913,7 +73971,7 @@ paths: description: Response content: application/json: - schema: &538 + schema: &539 title: Job description: Information of a job execution in a workflow run type: object @@ -74220,9 +74278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *510 - *511 - - *527 + - *512 + - *528 responses: '302': description: Response @@ -74250,9 +74308,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *510 - *511 - - *527 + - *512 + - *528 requestBody: required: false content: @@ -74302,8 +74360,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Status response @@ -74362,8 +74420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -74431,8 +74489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -74450,7 +74508,7 @@ paths: type: integer secrets: type: array - items: &540 + items: &541 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -74470,7 +74528,7 @@ paths: - created_at - updated_at examples: - default: &541 + default: &542 value: total_count: 2 secrets: @@ -74503,8 +74561,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -74522,7 +74580,7 @@ paths: type: integer variables: type: array - items: &542 + items: &543 title: Actions Variable type: object properties: @@ -74552,7 +74610,7 @@ paths: - created_at - updated_at examples: - default: &543 + default: &544 value: total_count: 2 variables: @@ -74585,8 +74643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74595,7 +74653,7 @@ paths: schema: type: object properties: - enabled: &528 + enabled: &529 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *63 @@ -74630,8 +74688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -74642,7 +74700,7 @@ paths: schema: type: object properties: - enabled: *528 + enabled: *529 allowed_actions: *63 sha_pinning_required: *64 required: @@ -74675,14 +74733,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &529 + schema: &530 type: object properties: access_level: @@ -74700,7 +74758,7 @@ paths: required: - access_level examples: - default: &530 + default: &531 value: access_level: organization x-github: @@ -74725,15 +74783,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *529 + schema: *530 examples: - default: *530 + default: *531 responses: '204': description: Response @@ -74757,8 +74815,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74788,8 +74846,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Empty response for successful settings update @@ -74823,8 +74881,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74851,8 +74909,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -74886,8 +74944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74915,8 +74973,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -74947,8 +75005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74979,8 +75037,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -75012,8 +75070,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -75042,8 +75100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Success response @@ -75083,8 +75141,8 @@ paths: in: query schema: type: string - - *510 - *511 + - *512 - *17 - *19 responses: @@ -75129,8 +75187,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#get-runner-version-end-of-life-schedule-for-a-repository parameters: - - *510 - *511 + - *512 - name: version description: The runner version to look up. in: path @@ -75192,8 +75250,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -75225,8 +75283,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -75300,8 +75358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -75337,8 +75395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -75368,8 +75426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '200': @@ -75399,8 +75457,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '204': @@ -75427,8 +75485,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '200': *84 @@ -75453,8 +75511,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 requestBody: required: true @@ -75503,8 +75561,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 requestBody: required: true @@ -75554,8 +75612,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '200': *303 @@ -75585,8 +75643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 - *304 responses: @@ -75616,9 +75674,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *510 - *511 - - &546 + - *512 + - &547 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. @@ -75626,7 +75684,7 @@ paths: required: false schema: type: string - - &547 + - &548 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -75634,7 +75692,7 @@ paths: required: false schema: type: string - - &548 + - &549 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -75643,7 +75701,7 @@ paths: required: false schema: type: string - - &549 + - &550 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 @@ -75670,7 +75728,7 @@ paths: - pending - *17 - *19 - - &550 + - &551 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -75679,7 +75737,7 @@ paths: schema: type: string format: date-time - - &531 + - &532 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -75688,13 +75746,13 @@ paths: schema: type: boolean default: false - - &551 + - &552 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &552 + - &553 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -75717,7 +75775,7 @@ paths: type: integer workflow_runs: type: array - items: &532 + items: &533 title: Workflow Run description: An invocation of a workflow type: object @@ -75865,7 +75923,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &576 + properties: &577 id: type: string description: SHA for the commit @@ -75916,7 +75974,7 @@ paths: - name - email nullable: true - required: &577 + required: &578 - id - tree_id - message @@ -75963,7 +76021,7 @@ paths: - workflow_url - pull_requests examples: - default: &553 + default: &554 value: total_count: 1 workflow_runs: @@ -76199,24 +76257,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *510 - *511 - - &533 + - *512 + - &534 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *531 + - *532 responses: '200': description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: &536 + default: &537 value: id: 30433642 name: Build @@ -76457,9 +76515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '204': description: Response @@ -76482,9 +76540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '200': description: Response @@ -76603,9 +76661,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '201': description: Response @@ -76638,12 +76696,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *510 - *511 - - *533 + - *512 + - *534 - *17 - *19 - - *534 + - *535 - *113 responses: '200': @@ -76660,9 +76718,9 @@ paths: type: integer artifacts: type: array - items: *519 + items: *520 examples: - default: *535 + default: *536 headers: Link: *48 x-github: @@ -76686,25 +76744,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *510 - *511 - - *533 - - &537 + - *512 + - *534 + - &538 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *531 + - *532 responses: '200': description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: *536 + default: *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76727,10 +76785,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *510 - *511 - - *533 - - *537 + - *512 + - *534 + - *538 - *17 - *19 responses: @@ -76748,9 +76806,9 @@ paths: type: integer jobs: type: array - items: *538 + items: *539 examples: - default: &539 + default: &540 value: total_count: 1 jobs: @@ -76863,10 +76921,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *510 - *511 - - *533 - - *537 + - *512 + - *534 + - *538 responses: '302': description: Response @@ -76894,9 +76952,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '202': description: Response @@ -76942,9 +77000,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 - *17 - *111 - *112 @@ -77115,9 +77173,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: true content: @@ -77184,9 +77242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '202': description: Response @@ -77219,9 +77277,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 - 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 @@ -77251,9 +77309,9 @@ paths: type: integer jobs: type: array - items: *538 + items: *539 examples: - default: *539 + default: *540 headers: Link: *48 x-github: @@ -77278,9 +77336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '302': description: Response @@ -77307,9 +77365,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '204': description: Response @@ -77336,9 +77394,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '200': description: Response @@ -77398,7 +77456,7 @@ paths: items: type: object properties: - type: &671 + type: &672 type: string description: The type of reviewer. enum: @@ -77483,9 +77541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: true content: @@ -77532,12 +77590,12 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &949 + properties: &950 url: type: string format: uri @@ -77622,7 +77680,7 @@ paths: nullable: true properties: *230 required: *231 - required: &950 + required: &951 - id - node_id - sha @@ -77638,7 +77696,7 @@ paths: - created_at - updated_at examples: - default: &659 + default: &660 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -77694,9 +77752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: false content: @@ -77740,9 +77798,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: false content: @@ -77796,9 +77854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '200': description: Response @@ -77935,8 +77993,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -77954,9 +78012,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -77981,8 +78039,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -78012,17 +78070,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: &554 + default: &555 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -78048,8 +78106,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -78107,8 +78165,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -78134,8 +78192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -78153,9 +78211,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -78178,8 +78236,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -78231,17 +78289,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: &555 + default: &556 value: name: USERNAME value: octocat @@ -78267,8 +78325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 requestBody: required: true @@ -78311,8 +78369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '204': @@ -78338,8 +78396,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -78357,7 +78415,7 @@ paths: type: integer workflows: type: array - items: &544 + items: &545 title: Workflow description: A GitHub Actions workflow type: object @@ -78464,9 +78522,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *510 - *511 - - &545 + - *512 + - &546 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -78481,7 +78539,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -78514,9 +78572,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '204': description: Response @@ -78541,9 +78599,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -78630,9 +78688,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '204': description: Response @@ -78659,19 +78717,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *510 - *511 - - *545 + - *512 - *546 - *547 - *548 - *549 + - *550 - *17 - *19 - - *550 - - *531 - *551 + - *532 - *552 + - *553 responses: '200': description: Response @@ -78687,9 +78745,9 @@ paths: type: integer workflow_runs: type: array - items: *532 + items: *533 examples: - default: *553 + default: *554 headers: Link: *48 x-github: @@ -78722,9 +78780,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '200': description: Response @@ -78785,8 +78843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *510 - *511 + - *512 - *113 - *17 - *111 @@ -78955,8 +79013,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -78974,9 +79032,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -79000,8 +79058,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -79019,9 +79077,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -79046,8 +79104,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -79065,9 +79123,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -79092,8 +79150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -79123,17 +79181,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *554 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79155,8 +79213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -79214,8 +79272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -79241,8 +79299,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -79260,9 +79318,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -79285,8 +79343,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -79338,17 +79396,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79369,8 +79427,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 requestBody: required: true @@ -79413,8 +79471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '204': @@ -79436,8 +79494,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -79474,8 +79532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *510 - *511 + - *512 - name: assignee in: path required: true @@ -79511,8 +79569,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -79622,8 +79680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *510 - *511 + - *512 - *17 - *111 - *112 @@ -79680,7 +79738,7 @@ paths: initiator: type: string examples: - default: *556 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79700,8 +79758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -79709,7 +79767,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Autolink reference description: An autolink reference. type: object @@ -79763,8 +79821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -79803,9 +79861,9 @@ paths: description: response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: id: 1 key_prefix: TICKET- @@ -79836,9 +79894,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *510 - *511 - - &559 + - *512 + - &560 name: autolink_id description: The unique identifier of the autolink. in: path @@ -79850,9 +79908,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 x-github: githubCloudOnly: false @@ -79872,9 +79930,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *510 - *511 - - *559 + - *512 + - *560 responses: '204': description: Response @@ -79898,8 +79956,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response if Dependabot is enabled @@ -79947,8 +80005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -79969,8 +80027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -79990,8 +80048,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *510 - *511 + - *512 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -80029,7 +80087,7 @@ paths: - url protected: type: boolean - protection: &561 + protection: &562 title: Branch Protection description: Branch Protection type: object @@ -80071,7 +80129,7 @@ paths: required: - contexts - checks - enforce_admins: &564 + enforce_admins: &565 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -80086,7 +80144,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &566 + required_pull_request_reviews: &567 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -80162,7 +80220,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &563 + restrictions: &564 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -80439,9 +80497,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *510 - *511 - - &562 + - *512 + - &563 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest/graphql). @@ -80455,14 +80513,14 @@ paths: description: Response content: application/json: - schema: &572 + schema: &573 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &629 + commit: &630 title: Commit description: Commit type: object @@ -80496,7 +80554,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &560 + properties: &561 name: type: string example: '"Chris Wanstrath"' @@ -80512,7 +80570,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *560 + properties: *561 nullable: true message: type: string @@ -80533,7 +80591,7 @@ paths: required: - sha - url - verification: &689 + verification: &690 title: Verification type: object properties: @@ -80603,7 +80661,7 @@ paths: type: integer files: type: array - items: &641 + items: &642 title: Diff Entry description: Diff Entry type: object @@ -80687,7 +80745,7 @@ paths: - self protected: type: boolean - protection: *561 + protection: *562 protection_url: type: string format: uri @@ -80794,7 +80852,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *516 + '301': *517 '404': *6 x-github: githubCloudOnly: false @@ -80816,15 +80874,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -81018,9 +81076,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -81275,7 +81333,7 @@ paths: url: type: string format: uri - required_status_checks: &569 + required_status_checks: &570 title: Status Check Policy description: Status Check Policy type: object @@ -81427,7 +81485,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *563 + restrictions: *564 required_conversation_resolution: type: object properties: @@ -81539,9 +81597,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81566,17 +81624,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -81598,17 +81656,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81627,9 +81685,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81654,17 +81712,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: &567 + default: &568 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -81760,9 +81818,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -81860,9 +81918,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: *567 + default: *568 '422': *15 x-github: githubCloudOnly: false @@ -81883,9 +81941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81912,17 +81970,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: &568 + default: &569 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -81945,17 +82003,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *568 + default: *569 '404': *6 x-github: githubCloudOnly: false @@ -81975,9 +82033,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -82002,17 +82060,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &570 + default: &571 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -82038,9 +82096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -82092,9 +82150,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *570 + default: *571 '404': *6 '422': *15 x-github: @@ -82116,9 +82174,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -82142,9 +82200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -82178,9 +82236,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -82247,9 +82305,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -82313,9 +82371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: content: application/json: @@ -82381,15 +82439,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *563 + schema: *564 examples: default: value: @@ -82480,9 +82538,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -82505,9 +82563,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -82517,7 +82575,7 @@ paths: type: array items: *5 examples: - default: &571 + default: &572 value: - id: 1 slug: octoapp @@ -82574,9 +82632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82610,7 +82668,7 @@ paths: type: array items: *5 examples: - default: *571 + default: *572 '422': *15 x-github: githubCloudOnly: false @@ -82631,9 +82689,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82667,7 +82725,7 @@ paths: type: array items: *5 examples: - default: *571 + default: *572 '422': *15 x-github: githubCloudOnly: false @@ -82688,9 +82746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82724,7 +82782,7 @@ paths: type: array items: *5 examples: - default: *571 + default: *572 '422': *15 x-github: githubCloudOnly: false @@ -82746,9 +82804,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -82758,7 +82816,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '404': *6 x-github: githubCloudOnly: false @@ -82778,9 +82836,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -82818,7 +82876,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -82839,9 +82897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -82879,7 +82937,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -82900,9 +82958,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: content: application/json: @@ -82939,7 +82997,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -82961,9 +83019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -82997,9 +83055,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -83057,9 +83115,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -83117,9 +83175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -83179,9 +83237,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -83203,7 +83261,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -83317,8 +83375,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *510 - *511 + - *512 - *106 - *107 - *108 @@ -83354,8 +83412,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *510 - *511 + - *512 - name: bypass_request_number in: path required: true @@ -83428,8 +83486,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - *106 - *107 - *108 @@ -83469,8 +83527,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - name: bypass_request_number in: path required: true @@ -83540,8 +83598,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - name: bypass_request_number in: path required: true @@ -83612,8 +83670,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - name: bypass_response_id in: path required: true @@ -83646,8 +83704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -83926,7 +83984,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &574 title: CheckRun description: A check performed on the code of a given code change type: object @@ -84046,7 +84104,7 @@ paths: check. type: array items: *240 - deployment: &942 + deployment: &943 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -84326,9 +84384,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *510 - *511 - - &574 + - *512 + - &575 name: check_run_id description: The unique identifier of the check run. in: path @@ -84340,9 +84398,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &575 + default: &576 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -84442,9 +84500,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *510 - *511 - - *574 + - *512 + - *575 requestBody: required: true content: @@ -84684,9 +84742,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *575 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84706,9 +84764,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *510 - *511 - - *574 + - *512 + - *575 - *17 - *19 responses: @@ -84803,9 +84861,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *510 - *511 - - *574 + - *512 + - *575 responses: '201': description: Response @@ -84849,8 +84907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -84872,7 +84930,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &578 + schema: &579 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -84958,12 +85016,12 @@ paths: type: string format: date-time nullable: true - head_commit: &975 + head_commit: &976 title: Simple Commit description: A commit. type: object - properties: *576 - required: *577 + properties: *577 + required: *578 latest_check_runs_count: type: integer check_runs_url: @@ -84991,7 +85049,7 @@ paths: - check_runs_url - pull_requests examples: - default: &579 + default: &580 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -85282,9 +85340,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85303,8 +85361,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -85613,9 +85671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *510 - *511 - - &580 + - *512 + - &581 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -85627,9 +85685,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85652,17 +85710,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *510 - *511 - - *580 - - &634 + - *512 + - *581 + - &635 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &635 + - &636 name: status description: Returns check runs with the specified `status`. in: query @@ -85701,9 +85759,9 @@ paths: type: integer check_runs: type: array - items: *573 + items: *574 examples: - default: &636 + default: &637 value: total_count: 1 check_runs: @@ -85805,9 +85863,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *510 - *511 - - *580 + - *512 + - *581 responses: '201': description: Response @@ -85836,8 +85894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *113 - *111 @@ -85859,7 +85917,7 @@ paths: application/json: schema: type: array - items: &581 + items: &582 description: Code quality finding type: object properties: @@ -85989,7 +86047,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &582 + '403': &583 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -86016,8 +86074,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *510 - *511 + - *512 - name: finding_number in: path description: The number that identifies a finding. @@ -86029,7 +86087,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: default: value: @@ -86058,7 +86116,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *582 + '403': *583 '404': *6 '503': *204 x-github: @@ -86080,8 +86138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -86153,7 +86211,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *582 + '403': *583 '404': *6 '503': *204 x-github: @@ -86174,8 +86232,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -86311,21 +86369,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *510 - *511 + - *512 - *333 - *334 - *19 - *17 - - &599 + - &600 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: *583 - - &600 + schema: *584 + - &601 name: pr description: The number of the pull request for the results you want to list. in: query @@ -86356,7 +86414,7 @@ paths: be returned. in: query required: false - schema: *584 + schema: *585 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -86380,7 +86438,7 @@ paths: updated_at: *144 url: *141 html_url: *142 - instances_url: *585 + instances_url: *586 state: *116 fixed_at: *146 dismissed_by: @@ -86391,11 +86449,11 @@ paths: required: *21 nullable: true dismissed_at: *145 - dismissed_reason: *586 - dismissed_comment: *587 - rule: *588 - tool: *589 - most_recent_instance: *590 + dismissed_reason: *587 + dismissed_comment: *588 + rule: *589 + tool: *590 + most_recent_instance: *591 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -86521,7 +86579,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *38 - '403': &592 + '403': &593 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -86548,9 +86606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *510 - *511 - - &593 + - *512 + - &594 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -86564,7 +86622,7 @@ paths: description: Response content: application/json: - schema: &594 + schema: &595 type: object properties: number: *136 @@ -86572,7 +86630,7 @@ paths: updated_at: *144 url: *141 html_url: *142 - instances_url: *585 + instances_url: *586 state: *116 fixed_at: *146 dismissed_by: @@ -86583,8 +86641,8 @@ paths: required: *21 nullable: true dismissed_at: *145 - dismissed_reason: *586 - dismissed_comment: *587 + dismissed_reason: *587 + dismissed_comment: *588 rule: type: object properties: @@ -86638,8 +86696,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *589 - most_recent_instance: *590 + tool: *590 + most_recent_instance: *591 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -86653,7 +86711,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *591 + items: *592 required: - number - created_at @@ -86742,7 +86800,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *38 - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -86762,9 +86820,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 requestBody: required: true content: @@ -86779,8 +86837,8 @@ paths: enum: - open - dismissed - dismissed_reason: *586 - dismissed_comment: *587 + dismissed_reason: *587 + dismissed_comment: *588 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -86808,7 +86866,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: default: value: @@ -86884,7 +86942,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &598 + '403': &599 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -86911,15 +86969,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 responses: '200': description: Response content: application/json: - schema: &595 + schema: &596 type: object properties: status: @@ -86945,13 +87003,13 @@ paths: - description - started_at examples: - default: &596 + default: &597 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &597 + '400': &598 description: Bad Request content: application/json: @@ -86962,7 +87020,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': *592 + '403': *593 '404': *6 '500': *41 x-github: @@ -86987,29 +87045,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 responses: '200': description: OK content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '202': description: Accepted content: application/json: - schema: *595 + schema: *596 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *597 + '400': *598 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -87041,9 +87099,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 requestBody: required: false content: @@ -87088,8 +87146,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *597 - '403': *598 + '400': *598 + '403': *599 '404': *6 '422': description: Unprocessable Entity @@ -87113,13 +87171,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 - *19 - *17 - - *599 - *600 + - *601 responses: '200': description: Response @@ -87130,10 +87188,10 @@ paths: items: type: object properties: - ref: *583 - analysis_key: *601 - environment: *602 - category: *603 + ref: *584 + analysis_key: *602 + environment: *603 + category: *604 state: type: string description: State of a code scanning alert instance. @@ -87148,7 +87206,7 @@ paths: properties: text: type: string - location: *604 + location: *605 html_url: type: string classifications: @@ -87156,7 +87214,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: *605 + items: *606 examples: default: value: @@ -87193,7 +87251,7 @@ paths: end_column: 50 classifications: - source - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -87227,25 +87285,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *510 - *511 + - *512 - *333 - *334 - *19 - *17 - - *600 + - *601 - 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: *583 + schema: *584 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &606 + schema: &607 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -87266,23 +87324,23 @@ paths: application/json: schema: type: array - items: &607 + items: &608 type: object properties: - ref: *583 - commit_sha: &615 + ref: *584 + commit_sha: &616 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: *601 + analysis_key: *602 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *603 + category: *604 error: type: string example: error reading field xyz @@ -87306,8 +87364,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *606 - tool: *589 + sarif_id: *607 + tool: *590 deletable: type: boolean warning: @@ -87368,7 +87426,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -87404,8 +87462,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *510 - *511 + - *512 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -87418,7 +87476,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *608 examples: response: summary: application/json response @@ -87472,7 +87530,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *592 + '403': *593 '404': *6 '422': description: Response if analysis could not be processed @@ -87559,8 +87617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *510 - *511 + - *512 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -87613,7 +87671,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': *598 + '403': *599 '404': *6 '503': *204 x-github: @@ -87635,8 +87693,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -87644,7 +87702,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: CodeQL Database description: A CodeQL database. type: object @@ -87755,7 +87813,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': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -87784,8 +87842,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *510 - *511 + - *512 - name: language in: path description: The language of the CodeQL database. @@ -87797,7 +87855,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -87829,9 +87887,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': &645 + '302': &646 description: Found - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -87853,8 +87911,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *510 - *511 + - *512 - name: language in: path description: The language of the CodeQL database. @@ -87864,7 +87922,7 @@ paths: responses: '204': description: Response - '403': *598 + '403': *599 '404': *6 '503': *204 x-github: @@ -87892,8 +87950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -87902,7 +87960,7 @@ paths: type: object additionalProperties: false properties: - language: &609 + language: &610 type: string description: The language targeted by the CodeQL query enum: @@ -87982,7 +88040,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &613 + schema: &614 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -87992,7 +88050,7 @@ paths: description: The ID of the variant analysis. controller_repo: *123 actor: *4 - query_language: *609 + query_language: *610 query_pack_url: type: string description: The download url for the query pack. @@ -88039,7 +88097,7 @@ paths: items: type: object properties: - repository: &610 + repository: &611 title: Repository Identifier description: Repository Identifier type: object @@ -88075,7 +88133,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &614 + analysis_status: &615 type: string description: The new status of the CodeQL variant analysis repository task. @@ -88107,7 +88165,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &611 + access_mismatch_repos: &612 type: object properties: repository_count: @@ -88121,7 +88179,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: *610 + items: *611 required: - repository_count - repositories @@ -88143,8 +88201,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *611 - over_limit_repos: *611 + no_codeql_db_repos: *612 + over_limit_repos: *612 required: - access_mismatch_repos - not_found_repos @@ -88160,7 +88218,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &612 + value: &613 summary: Default response value: id: 1 @@ -88306,10 +88364,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *612 + value: *613 repository_lists: summary: Response for a successful variant analysis submission - value: *612 + value: *613 '404': *6 '422': description: Unable to process variant analysis submission @@ -88337,8 +88395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *510 - *511 + - *512 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -88350,9 +88408,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: - default: *612 + default: *613 '404': *6 '503': *204 x-github: @@ -88375,7 +88433,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *510 + - *511 - name: repo in: path description: The name of the controller repository. @@ -88410,7 +88468,7 @@ paths: type: object properties: repository: *123 - analysis_status: *614 + analysis_status: *615 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -88535,8 +88593,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -88621,7 +88679,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -88642,8 +88700,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -88735,7 +88793,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *598 + '403': *599 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -88806,8 +88864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -88815,7 +88873,7 @@ paths: schema: type: object properties: - commit_sha: *615 + commit_sha: *616 ref: type: string description: |- @@ -88873,7 +88931,7 @@ paths: schema: type: object properties: - id: *606 + id: *607 url: type: string description: The REST API URL for checking the status of the upload. @@ -88887,7 +88945,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': *598 + '403': *599 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -88910,8 +88968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *510 - *511 + - *512 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -88957,7 +89015,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': *592 + '403': *593 '404': description: Not Found if the sarif id does not match any upload '503': *204 @@ -88982,8 +89040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -89064,8 +89122,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *510 - *511 + - *512 - 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 @@ -89185,8 +89243,8 @@ paths: parameters: - *17 - *19 - - *510 - *511 + - *512 responses: '200': description: Response @@ -89202,7 +89260,7 @@ paths: type: integer codespaces: type: array - items: *409 + items: *410 examples: default: value: @@ -89500,8 +89558,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -89564,17 +89622,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '400': *14 '401': *25 '403': *29 @@ -89603,8 +89661,8 @@ paths: parameters: - *17 - *19 - - *510 - *511 + - *512 responses: '200': description: Response @@ -89668,8 +89726,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *510 - *511 + - *512 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -89704,14 +89762,14 @@ paths: type: integer machines: type: array - items: &885 + items: &886 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *617 - required: *618 + properties: *618 + required: *619 examples: - default: &886 + default: &887 value: total_count: 2 machines: @@ -89751,8 +89809,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *510 - *511 + - *512 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -89836,8 +89894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *510 - *511 + - *512 - 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 @@ -89903,8 +89961,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -89922,7 +89980,7 @@ paths: type: integer secrets: type: array - items: &622 + items: &623 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -89942,7 +90000,7 @@ paths: - created_at - updated_at examples: - default: *619 + default: *620 headers: Link: *48 x-github: @@ -89965,16 +90023,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89994,17 +90052,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *623 + default: *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90024,8 +90082,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -90078,8 +90136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -90108,8 +90166,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *510 - *511 + - *512 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -90151,7 +90209,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &624 + properties: &625 login: type: string example: octocat @@ -90244,7 +90302,7 @@ paths: user_view_type: type: string example: public - required: &625 + required: &626 - avatar_url - events_url - followers_url @@ -90318,8 +90376,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *510 - *511 + - *512 - *135 responses: '204': @@ -90366,8 +90424,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *510 - *511 + - *512 - *135 requestBody: required: false @@ -90394,7 +90452,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &702 + schema: &703 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -90623,8 +90681,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *510 - *511 + - *512 - *135 responses: '204': @@ -90656,8 +90714,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *510 - *511 + - *512 - *135 responses: '200': @@ -90678,8 +90736,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *624 - required: *625 + properties: *625 + required: *626 nullable: true required: - permission @@ -90734,8 +90792,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -90745,7 +90803,7 @@ paths: application/json: schema: type: array - items: &626 + items: &627 title: Commit Comment description: Commit Comment type: object @@ -90803,7 +90861,7 @@ paths: - created_at - updated_at examples: - default: &631 + default: &632 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90862,17 +90920,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *626 + schema: *627 examples: - default: &632 + default: &633 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90929,8 +90987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -90953,7 +91011,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -91004,8 +91062,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -91027,8 +91085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -91055,7 +91113,7 @@ paths: application/json: schema: type: array - items: &627 + items: &628 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -91098,7 +91156,7 @@ paths: - content - created_at examples: - default: &706 + default: &707 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -91143,8 +91201,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -91177,9 +91235,9 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -91208,9 +91266,9 @@ paths: description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -91232,10 +91290,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *510 - *511 + - *512 - *251 - - &707 + - &708 name: reaction_id description: The unique identifier of the reaction. in: path @@ -91290,8 +91348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *510 - *511 + - *512 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -91347,9 +91405,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: &780 + default: &781 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -91443,9 +91501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *510 - *511 - - &630 + - *512 + - &631 name: commit_sha description: The SHA of the commit. in: path @@ -91517,9 +91575,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *510 - *511 - - *630 + - *512 + - *631 - *17 - *19 responses: @@ -91529,9 +91587,9 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: *631 + default: *632 headers: Link: *48 x-github: @@ -91559,9 +91617,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *510 - *511 - - *630 + - *512 + - *631 requestBody: required: true content: @@ -91596,9 +91654,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -91626,9 +91684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *510 - *511 - - *630 + - *512 + - *631 - *17 - *19 responses: @@ -91638,9 +91696,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: &771 + default: &772 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -92177,11 +92235,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *510 - *511 + - *512 - *19 - *17 - - &633 + - &634 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)" @@ -92196,9 +92254,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: &756 + default: &757 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -92286,7 +92344,7 @@ paths: schema: type: string examples: - default: &642 + default: &643 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -92299,7 +92357,7 @@ paths: schema: type: string examples: - default: &643 + default: &644 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -92352,11 +92410,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *510 - *511 - - *633 + - *512 - *634 - *635 + - *636 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -92390,9 +92448,9 @@ paths: type: integer check_runs: type: array - items: *573 + items: *574 examples: - default: *636 + default: *637 headers: Link: *48 x-github: @@ -92417,9 +92475,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *510 - *511 - - *633 + - *512 + - *634 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -92427,7 +92485,7 @@ paths: schema: type: integer example: 1 - - *634 + - *635 - *17 - *19 responses: @@ -92445,7 +92503,7 @@ paths: type: integer check_suites: type: array - items: *578 + items: *579 examples: default: value: @@ -92645,9 +92703,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *510 - *511 - - *633 + - *512 + - *634 - *17 - *19 responses: @@ -92845,9 +92903,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *510 - *511 - - *633 + - *512 + - *634 - *17 - *19 responses: @@ -92857,7 +92915,7 @@ paths: application/json: schema: type: array - items: &837 + items: &838 title: Status description: The status of a commit. type: object @@ -92938,7 +92996,7 @@ paths: site_admin: false headers: Link: *48 - '301': *516 + '301': *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92966,8 +93024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -92996,20 +93054,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *637 - required: *638 + properties: *638 + required: *639 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &639 + properties: &640 url: type: string format: uri html_url: type: string format: uri - required: &640 + required: &641 - url - html_url nullable: true @@ -93023,26 +93081,26 @@ paths: contributing: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true readme: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true issue_template: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true pull_request_template: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true required: - code_of_conduct @@ -93169,8 +93227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *510 - *511 + - *512 - *19 - *17 - name: basehead @@ -93213,8 +93271,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *629 - merge_base_commit: *629 + base_commit: *630 + merge_base_commit: *630 status: type: string enum: @@ -93234,10 +93292,10 @@ paths: example: 6 commits: type: array - items: *629 + items: *630 files: type: array - items: *641 + items: *642 required: - url - html_url @@ -93483,12 +93541,12 @@ paths: schema: type: string examples: - default: *642 + default: *643 application/vnd.github.patch: schema: type: string examples: - default: *643 + default: *644 '404': *6 '500': *41 '503': *204 @@ -93533,8 +93591,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *510 - *511 + - *512 - name: path description: path parameter in: path @@ -93694,7 +93752,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &644 + response-if-content-is-a-file-github-object: &645 summary: Response if content is a file value: type: file @@ -93826,7 +93884,7 @@ paths: - size - type - url - - &786 + - &787 title: Content File description: Content File type: object @@ -94027,7 +94085,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *644 + response-if-content-is-a-file: *645 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -94096,7 +94154,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *645 + '302': *646 '304': *38 x-github: githubCloudOnly: false @@ -94119,8 +94177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *510 - *511 + - *512 - name: path description: path parameter in: path @@ -94213,7 +94271,7 @@ paths: description: Response content: application/json: - schema: &646 + schema: &647 title: File Commit description: File Commit type: object @@ -94365,7 +94423,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: example-for-creating-a-file: value: @@ -94419,7 +94477,7 @@ paths: schema: oneOf: - *3 - - &684 + - &685 description: Repository rule violation was detected type: object properties: @@ -94440,7 +94498,7 @@ paths: items: type: object properties: - placeholder_id: &828 + placeholder_id: &829 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -94472,8 +94530,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *510 - *511 + - *512 - name: path description: path parameter in: path @@ -94534,7 +94592,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: default: value: @@ -94589,8 +94647,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *510 - *511 + - *512 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -94719,8 +94777,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -94871,8 +94929,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *510 - *511 + - *512 - *354 - *355 - *356 @@ -94885,10 +94943,11 @@ paths: schema: type: string - *359 - - *647 + - *648 - *360 - *361 - *362 + - *363 - *113 - *111 - *112 @@ -94900,7 +94959,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 type: object description: A Dependabot alert. properties: @@ -94947,7 +95006,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *648 + security_advisory: *649 security_vulnerability: *140 url: *141 html_url: *142 @@ -94978,8 +95037,8 @@ paths: nullable: true maxLength: 280 fixed_at: *146 - auto_dismissed_at: *649 - dismissal_request: *650 + auto_dismissed_at: *650 + dismissal_request: *651 assignees: type: array description: The users assigned to this alert. @@ -95012,6 +95071,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -95133,6 +95193,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -95234,9 +95295,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *510 - *511 - - &652 + - *512 + - &653 name: alert_number in: path description: |- @@ -95251,7 +95312,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: default: value: @@ -95263,6 +95324,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -95383,9 +95445,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *510 - *511 - - *652 + - *512 + - *653 requestBody: required: true content: @@ -95458,7 +95520,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: default: value: @@ -95470,6 +95532,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -95588,8 +95651,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -95607,7 +95670,7 @@ paths: type: integer secrets: type: array - items: &655 + items: &656 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -95660,16 +95723,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *653 + schema: *654 examples: - default: *654 + default: *655 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95689,15 +95752,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *655 + schema: *656 examples: default: value: @@ -95723,8 +95786,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -95777,8 +95840,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -95801,8 +95864,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *510 - *511 + - *512 - 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 @@ -95965,8 +96028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -96204,8 +96267,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *510 - *511 + - *512 - name: sbom_uuid in: path required: true @@ -96216,7 +96279,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *656 + Location: *657 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -96237,8 +96300,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -96276,8 +96339,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -96352,7 +96415,7 @@ paths: - version - url additionalProperties: false - metadata: &657 + metadata: &658 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -96385,7 +96448,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *657 + metadata: *658 resolved: type: object description: A collection of resolved package dependencies. @@ -96398,7 +96461,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *657 + metadata: *658 relationship: type: string description: A notation of whether a dependency is requested @@ -96527,8 +96590,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *510 - *511 + - *512 - name: sha description: The SHA recorded at creation time. in: query @@ -96568,9 +96631,9 @@ paths: application/json: schema: type: array - items: *658 + items: *659 examples: - default: *659 + default: *660 headers: Link: *48 x-github: @@ -96636,8 +96699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -96718,7 +96781,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: simple-example: summary: Simple example @@ -96791,9 +96854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *510 - *511 - - &660 + - *512 + - &661 name: deployment_id description: deployment_id parameter in: path @@ -96805,7 +96868,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: default: value: @@ -96870,9 +96933,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *510 - *511 - - *660 + - *512 + - *661 responses: '204': description: Response @@ -96894,9 +96957,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *510 - *511 - - *660 + - *512 + - *661 - *17 - *19 responses: @@ -96906,7 +96969,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: Deployment Status description: The status of a deployment. type: object @@ -97067,9 +97130,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *510 - *511 - - *660 + - *512 + - *661 requestBody: required: true content: @@ -97144,9 +97207,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: &662 + default: &663 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -97202,9 +97265,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *510 - *511 - - *660 + - *512 + - *661 - name: status_id in: path required: true @@ -97215,9 +97278,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *662 + default: *663 '404': *6 x-github: githubCloudOnly: false @@ -97244,12 +97307,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 - - *663 + - *512 - *664 - *665 - *666 + - *667 - *17 - *19 responses: @@ -97259,9 +97322,9 @@ paths: application/json: schema: type: array - items: *667 + items: *668 examples: - default: *668 + default: *669 '404': *6 '403': *29 '500': *41 @@ -97285,8 +97348,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97298,7 +97361,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -97354,8 +97417,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97414,12 +97477,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 - - *663 + - *512 - *664 - *665 - *666 + - *667 - *17 - *19 responses: @@ -97429,9 +97492,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 '404': *6 '403': *29 '500': *41 @@ -97455,8 +97518,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97468,7 +97531,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -97519,8 +97582,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97558,7 +97621,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -97609,8 +97672,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97681,8 +97744,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97715,12 +97778,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -97730,9 +97793,9 @@ paths: application/json: schema: type: array - items: *370 + items: *371 examples: - default: *371 + default: *372 '404': *6 '403': *29 '500': *41 @@ -97757,8 +97820,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97770,7 +97833,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *370 + schema: *371 examples: default: value: @@ -97828,8 +97891,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97898,8 +97961,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -97956,8 +98019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -97974,7 +98037,7 @@ paths: type: integer environments: type: array - items: &672 + items: &673 title: Environment description: Details of a deployment environment type: object @@ -98026,7 +98089,7 @@ paths: type: type: string example: wait_timer - wait_timer: &674 + wait_timer: &675 type: integer example: 30 description: The amount of time to delay a job after @@ -98063,7 +98126,7 @@ paths: items: type: object properties: - type: *671 + type: *672 reviewer: anyOf: - *4 @@ -98087,7 +98150,7 @@ paths: - id - node_id - type - deployment_branch_policy: &675 + deployment_branch_policy: &676 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -98203,9 +98266,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *510 - *511 - - &673 + - *512 + - &674 name: environment_name in: path required: true @@ -98218,9 +98281,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: &676 + default: &677 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -98304,9 +98367,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *510 - *511 - - *673 + - *512 + - *674 requestBody: required: false content: @@ -98315,7 +98378,7 @@ paths: type: object nullable: true properties: - wait_timer: *674 + wait_timer: *675 prevent_self_review: type: boolean example: false @@ -98332,13 +98395,13 @@ paths: items: type: object properties: - type: *671 + type: *672 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *675 + deployment_branch_policy: *676 additionalProperties: false examples: default: @@ -98358,9 +98421,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: *676 + default: *677 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -98384,9 +98447,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *510 - *511 - - *673 + - *512 + - *674 responses: '204': description: Default response @@ -98411,9 +98474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *17 - *19 responses: @@ -98431,7 +98494,7 @@ paths: example: 2 branch_policies: type: array - items: &677 + items: &678 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -98488,9 +98551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 + - *512 + - *674 requestBody: required: true content: @@ -98536,9 +98599,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - example-wildcard: &678 + example-wildcard: &679 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -98580,10 +98643,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 - - &679 + - *512 + - *674 + - &680 name: branch_policy_id in: path required: true @@ -98595,9 +98658,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98616,10 +98679,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 - - *679 + - *512 + - *674 + - *680 requestBody: required: true content: @@ -98647,9 +98710,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98668,10 +98731,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 - - *679 + - *512 + - *674 + - *680 responses: '204': description: Response @@ -98696,9 +98759,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 responses: '200': description: List of deployment protection rules @@ -98714,7 +98777,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &680 + items: &681 title: Deployment protection rule description: Deployment protection rule type: object @@ -98733,7 +98796,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &681 + app: &682 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -98832,9 +98895,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 requestBody: content: application/json: @@ -98855,9 +98918,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *680 + schema: *681 examples: - default: &682 + default: &683 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -98892,9 +98955,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 - *19 - *17 responses: @@ -98913,7 +98976,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *681 + items: *682 examples: default: value: @@ -98948,10 +99011,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *510 - *511 - - *673 - - &683 + - *512 + - *674 + - &684 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -98963,9 +99026,9 @@ paths: description: Response content: application/json: - schema: *680 + schema: *681 examples: - default: *682 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98986,10 +99049,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 - - *683 + - *684 responses: '204': description: Response @@ -99015,9 +99078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *17 - *19 responses: @@ -99035,9 +99098,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -99062,9 +99125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *510 - *511 - - *673 + - *512 + - *674 responses: '200': description: Response @@ -99094,18 +99157,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *306 responses: '200': description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *554 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99127,9 +99190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *306 requestBody: required: true @@ -99187,9 +99250,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *306 responses: '204': @@ -99215,9 +99278,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *315 - *19 responses: @@ -99235,9 +99298,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -99260,9 +99323,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *510 - *511 - - *673 + - *512 + - *674 requestBody: required: true content: @@ -99314,18 +99377,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *309 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99346,10 +99409,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *510 - *511 + - *512 - *309 - - *673 + - *674 requestBody: required: true content: @@ -99391,10 +99454,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *510 - *511 + - *512 - *309 - - *673 + - *674 responses: '204': description: Response @@ -99416,8 +99479,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -99485,8 +99548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *510 - *511 + - *512 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -99645,8 +99708,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -99678,9 +99741,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 '400': *14 '422': *15 '403': *29 @@ -99701,8 +99764,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -99762,7 +99825,7 @@ paths: schema: oneOf: - *271 - - *684 + - *685 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99787,8 +99850,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *510 - *511 + - *512 - name: file_sha in: path required: true @@ -99887,8 +99950,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -99997,7 +100060,7 @@ paths: description: Response content: application/json: - schema: &685 + schema: &686 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -100211,15 +100274,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *510 - *511 - - *630 + - *512 + - *631 responses: '200': description: Response content: application/json: - schema: *685 + schema: *686 examples: default: value: @@ -100275,9 +100338,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *510 - *511 - - &686 + - *512 + - &687 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. @@ -100294,7 +100357,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: Git Reference description: Git references within a repository type: object @@ -100369,17 +100432,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *510 - *511 - - *686 + - *512 + - *687 responses: '200': description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: &688 + default: &689 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -100408,8 +100471,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -100438,9 +100501,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: *688 + default: *689 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -100466,9 +100529,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *510 - *511 - - *686 + - *512 + - *687 requestBody: required: true content: @@ -100497,9 +100560,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: *688 + default: *689 '422': *15 '409': *122 x-github: @@ -100517,9 +100580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *510 - *511 - - *686 + - *512 + - *687 responses: '204': description: Response @@ -100574,8 +100637,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -100642,7 +100705,7 @@ paths: description: Response content: application/json: - schema: &690 + schema: &691 title: Git Tag description: Metadata for a Git tag type: object @@ -100693,7 +100756,7 @@ paths: - sha - type - url - verification: *689 + verification: *690 required: - sha - url @@ -100703,7 +100766,7 @@ paths: - tag - message examples: - default: &691 + default: &692 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -100776,8 +100839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *510 - *511 + - *512 - name: tag_sha in: path required: true @@ -100788,9 +100851,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: *691 + default: *692 '404': *6 '409': *122 x-github: @@ -100814,8 +100877,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -100888,7 +100951,7 @@ paths: description: Response content: application/json: - schema: &692 + schema: &693 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -100984,8 +101047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *510 - *511 + - *512 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -101008,7 +101071,7 @@ paths: description: Response content: application/json: - schema: *692 + schema: *693 examples: default-response: summary: Default response @@ -101066,8 +101129,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -101110,8 +101173,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -101121,7 +101184,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Webhook description: Webhooks for repositories. type: object @@ -101175,7 +101238,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &983 + last_response: &984 title: Hook Response type: object properties: @@ -101249,8 +101312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -101302,9 +101365,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: &694 + default: &695 value: type: Repository id: 12345678 @@ -101352,17 +101415,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '200': description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '404': *6 x-github: githubCloudOnly: false @@ -101382,9 +101445,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 requestBody: required: true content: @@ -101429,9 +101492,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '422': *15 '404': *6 x-github: @@ -101452,9 +101515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '204': description: Response @@ -101478,9 +101541,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '200': description: Response @@ -101507,9 +101570,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *510 - *511 - - *376 + - *512 + - *377 requestBody: required: false content: @@ -101553,12 +101616,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *510 - *511 - - *376 - - *17 + - *512 - *377 + - *17 - *378 + - *379 responses: '200': description: Response @@ -101566,9 +101629,9 @@ paths: application/json: schema: type: array - items: *379 + items: *380 examples: - default: *380 + default: *381 '400': *14 '422': *15 x-github: @@ -101587,18 +101650,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 - *16 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 '400': *14 '422': *15 x-github: @@ -101617,9 +101680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 - *16 responses: '202': *40 @@ -101642,9 +101705,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '204': description: Response @@ -101669,9 +101732,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '204': description: Response @@ -101694,8 +101757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response if immutable releases are enabled @@ -101741,8 +101804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *510 - *511 + - *512 responses: '204': *129 '409': *122 @@ -101762,8 +101825,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *510 - *511 + - *512 responses: '204': *129 '409': *122 @@ -101820,14 +101883,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &695 + schema: &696 title: Import description: A repository import from an external source. type: object @@ -101926,7 +101989,7 @@ paths: - html_url - authors_url examples: - default: &698 + default: &699 value: vcs: subversion use_lfs: true @@ -101942,7 +102005,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': &696 + '503': &697 description: Unavailable due to service under maintenance. content: application/json: @@ -101971,8 +102034,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -102020,7 +102083,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -102045,7 +102108,7 @@ paths: type: string '422': *15 '404': *6 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102073,8 +102136,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -102123,7 +102186,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: example-1: summary: Example 1 @@ -102171,7 +102234,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': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102194,12 +102257,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *510 - *511 + - *512 responses: '204': description: Response - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102225,9 +102288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *510 - *511 - - &908 + - *512 + - &909 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -102241,7 +102304,7 @@ paths: application/json: schema: type: array - items: &697 + items: &698 title: Porter Author description: Porter Author type: object @@ -102295,7 +102358,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': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102320,8 +102383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *510 - *511 + - *512 - name: author_id in: path required: true @@ -102351,7 +102414,7 @@ paths: description: Response content: application/json: - schema: *697 + schema: *698 examples: default: value: @@ -102364,7 +102427,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102388,8 +102451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102430,7 +102493,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102458,8 +102521,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -102486,11 +102549,11 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: - default: *698 + default: *699 '422': *15 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102513,8 +102576,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102522,8 +102585,8 @@ paths: application/json: schema: *22 examples: - default: *394 - '301': *516 + default: *395 + '301': *517 '404': *6 x-github: githubCloudOnly: false @@ -102543,8 +102606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102552,12 +102615,12 @@ paths: application/json: schema: anyOf: - - *396 + - *397 - type: object properties: {} additionalProperties: false examples: - default: &700 + default: &701 value: limit: collaborators_only origin: repository @@ -102582,13 +102645,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *699 + schema: *700 examples: default: summary: Example request body @@ -102600,9 +102663,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: - default: *700 + default: *701 '409': description: Response x-github: @@ -102624,8 +102687,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -102652,8 +102715,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102707,13 +102770,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: &701 + schema: &702 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -102763,13 +102826,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *701 + schema: *702 examples: default: summary: Example request body @@ -102802,8 +102865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102856,8 +102919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -102933,8 +102996,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -102944,9 +103007,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: &901 + default: &902 value: - id: 1 repository: @@ -103077,9 +103140,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *510 - *511 - - *400 + - *512 + - *401 requestBody: required: false content: @@ -103108,7 +103171,7 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: default: value: @@ -103239,9 +103302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *510 - *511 - - *400 + - *512 + - *401 responses: '204': description: Response @@ -103264,8 +103327,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -103273,9 +103336,9 @@ paths: application/json: schema: type: array - items: *404 + items: *405 examples: - default: *703 + default: *704 '404': *6 x-github: githubCloudOnly: false @@ -103304,8 +103367,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *510 - *511 + - *512 - 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 @@ -103367,7 +103430,7 @@ paths: required: false schema: type: string - - *407 + - *408 - name: sort description: What to sort results by. in: query @@ -103392,7 +103455,7 @@ paths: type: array items: *235 examples: - default: &717 + default: &718 value: - id: 1 node_id: MDU6SXNzdWUx @@ -103541,7 +103604,7 @@ paths: state_reason: completed headers: Link: *48 - '301': *516 + '301': *517 '422': *15 '404': *6 x-github: @@ -103570,8 +103633,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -103680,7 +103743,7 @@ paths: application/json: schema: *235 examples: - default: &714 + default: &715 value: id: 1 node_id: MDU6SXNzdWUx @@ -103865,8 +103928,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *510 - *511 + - *512 - *259 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -103887,9 +103950,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: &716 + default: &717 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -103948,17 +104011,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: &705 + default: &706 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -104014,8 +104077,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -104038,9 +104101,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 '422': *15 x-github: githubCloudOnly: false @@ -104058,8 +104121,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -104088,15 +104151,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *704 + schema: *705 examples: default: value: @@ -104169,8 +104232,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -104196,8 +104259,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -104224,9 +104287,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -104247,8 +104310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -104281,16 +104344,16 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -104312,10 +104375,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *510 - *511 + - *512 - *251 - - *707 + - *708 responses: '204': description: Response @@ -104335,8 +104398,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -104346,7 +104409,7 @@ paths: application/json: schema: type: array - items: &713 + items: &714 title: Issue Event description: Issue Event type: object @@ -104389,8 +104452,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *708 - required: *709 + properties: *709 + required: *710 nullable: true label: title: Issue Event Label @@ -104499,7 +104562,7 @@ paths: required: - from - to - issue_type: &710 + issue_type: &711 title: Issue Type description: The type of issue. type: object @@ -104527,14 +104590,14 @@ paths: required: - id - name - prev_issue_type: *710 + prev_issue_type: *711 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &711 + properties: &712 number: type: integer description: The number of the referenced issue. @@ -104572,7 +104635,7 @@ paths: - id - node_id - name - required: &712 + required: &713 - number - title - state @@ -104584,24 +104647,24 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -104612,7 +104675,7 @@ paths: is disabled or the event type does not support intent. type: object nullable: true - properties: &718 + properties: &719 rationale: type: string description: The reasoning the agent provided for the change. @@ -104825,8 +104888,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *510 - *511 + - *512 - name: event_id in: path required: true @@ -104837,7 +104900,7 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: default: value: @@ -105064,9 +105127,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *510 - *511 - - &715 + - *512 + - &716 name: issue_number description: The number that identifies the issue. in: path @@ -105082,7 +105145,7 @@ paths: examples: default: summary: Issue - value: *714 + value: *715 pinned_comment: summary: Issue with pinned comment value: @@ -105281,7 +105344,7 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *516 + '301': *517 '404': *6 '410': *33 '304': *38 @@ -105308,9 +105371,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -105662,11 +105725,11 @@ paths: - already_applied - issue_already_closed examples: - default: *714 + default: *715 '422': *15 '503': *204 '403': *29 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -105686,9 +105749,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -105738,7 +105801,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105754,9 +105817,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: content: application/json: @@ -105783,7 +105846,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105805,9 +105868,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: assignee in: path required: true @@ -105847,9 +105910,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *242 - *17 - *19 @@ -105860,9 +105923,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: *716 + default: *717 headers: Link: *48 '404': *6 @@ -105895,9 +105958,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -105919,9 +105982,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -105956,9 +106019,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -105970,10 +106033,10 @@ paths: type: array items: *235 examples: - default: *717 + default: *718 headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -106003,9 +106066,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -106029,13 +106092,13 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *516 + '301': *517 '403': *29 '410': *33 '422': *15 @@ -106068,9 +106131,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -106084,8 +106147,8 @@ paths: application/json: schema: *235 examples: - default: *714 - '301': *516 + default: *715 + '301': *517 '400': *14 '401': *25 '403': *29 @@ -106116,9 +106179,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -106130,10 +106193,10 @@ paths: type: array items: *235 examples: - default: *717 + default: *718 headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -106152,9 +106215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -106168,7 +106231,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &724 + - &725 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -106221,7 +106284,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - label - id @@ -106233,7 +106296,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &725 + - &726 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -106286,7 +106349,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - label - id @@ -106332,7 +106395,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - id - node_id @@ -106391,7 +106454,7 @@ paths: - performed_via_github_app - assignee - assigner - - &726 + - &727 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -106442,7 +106505,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &727 + - &728 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -106493,7 +106556,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &728 + - &729 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -106547,7 +106610,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &729 + - &730 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -106594,7 +106657,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &730 + - &731 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -106641,7 +106704,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &731 + - &732 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -106701,7 +106764,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &732 + - &733 title: Locked Issue Event description: Locked Issue Event type: object @@ -106749,7 +106812,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &733 + - &734 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -106815,7 +106878,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &734 + - &735 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -106881,7 +106944,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &735 + - &736 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -106947,7 +107010,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &736 + - &737 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -107003,7 +107066,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &741 + - &742 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -107036,7 +107099,7 @@ paths: nullable: true properties: *230 required: *231 - issue_type: *710 + issue_type: *711 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -107047,7 +107110,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - issue_type - id @@ -107059,7 +107122,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &742 + - &743 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -107092,7 +107155,7 @@ paths: nullable: true properties: *230 required: *231 - prev_issue_type: *710 + prev_issue_type: *711 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -107103,7 +107166,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - prev_issue_type - id @@ -107115,7 +107178,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &743 + - &744 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -107148,8 +107211,8 @@ paths: nullable: true properties: *230 required: *231 - issue_type: *710 - prev_issue_type: *710 + issue_type: *711 + prev_issue_type: *711 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -107160,7 +107223,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - issue_type - prev_issue_type @@ -107173,7 +107236,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &744 + - &745 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -107213,8 +107276,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - sub_issue - id @@ -107226,7 +107289,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &745 + - &746 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -107266,8 +107329,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - sub_issue - id @@ -107279,7 +107342,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &746 + - &747 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -107319,8 +107382,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - parent_issue - id @@ -107332,7 +107395,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &747 + - &748 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -107372,8 +107435,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - parent_issue - id @@ -107385,7 +107448,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &748 + - &749 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -107425,8 +107488,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocked_by - id @@ -107438,7 +107501,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &749 + - &750 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -107478,8 +107541,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocked_by - id @@ -107491,7 +107554,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &750 + - &751 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -107531,8 +107594,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocking - id @@ -107544,7 +107607,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &751 + - &752 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -107584,8 +107647,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocking - id @@ -107649,9 +107712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -107661,9 +107724,9 @@ paths: application/json: schema: type: array - items: *719 + items: *720 examples: - default: &720 + default: &721 value: - issue_field_id: 1 issue_field_name: DRI @@ -107703,7 +107766,7 @@ paths: color: green headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -107734,9 +107797,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -107806,9 +107869,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *719 + items: *720 examples: - default: *720 + default: *721 '400': *14 '403': *29 '404': *6 @@ -107844,9 +107907,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -107911,9 +107974,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *719 + items: *720 examples: - default: *720 + default: *721 '400': *14 '403': *29 '404': *6 @@ -107944,10 +108007,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *510 - *511 - - *715 - - *403 + - *512 + - *716 + - *404 responses: '204': description: Issue field value deleted successfully @@ -107972,9 +108035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -107986,7 +108049,7 @@ paths: type: array items: *234 examples: - default: &721 + default: &722 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -108004,7 +108067,7 @@ paths: default: false headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -108022,9 +108085,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -108104,8 +108167,8 @@ paths: type: array items: *234 examples: - default: *721 - '301': *516 + default: *722 + '301': *517 '404': *6 '410': *33 '422': *15 @@ -108124,9 +108187,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -108188,8 +108251,8 @@ paths: type: array items: *234 examples: - default: *721 - '301': *516 + default: *722 + '301': *517 '404': *6 '410': *33 '422': *15 @@ -108208,13 +108271,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 responses: '204': description: Response - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -108235,9 +108298,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: name in: path required: true @@ -108261,7 +108324,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -108283,9 +108346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -108331,9 +108394,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 responses: '204': description: Response @@ -108363,9 +108426,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 responses: '200': description: Response @@ -108373,8 +108436,8 @@ paths: application/json: schema: *235 examples: - default: *714 - '301': *516 + default: *715 + '301': *517 '404': *6 '410': *33 x-github: @@ -108393,9 +108456,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -108421,9 +108484,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -108445,9 +108508,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -108479,16 +108542,16 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -108510,10 +108573,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *510 - *511 - - *715 - - *707 + - *512 + - *716 + - *708 responses: '204': description: Response @@ -108542,9 +108605,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -108568,7 +108631,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -108601,9 +108664,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -108615,7 +108678,7 @@ paths: type: array items: *235 examples: - default: *717 + default: *718 headers: Link: *48 '404': *6 @@ -108647,9 +108710,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -108678,7 +108741,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -108705,9 +108768,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -108740,7 +108803,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 '403': *29 '404': *6 '422': *7 @@ -108769,9 +108832,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-issue-suggestions parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: state in: query required: false @@ -108808,7 +108871,7 @@ paths: application/json: schema: type: array - items: &722 + items: &723 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -108960,9 +109023,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#approve-an-issue-suggestion parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: suggestion_id in: path required: true @@ -108974,9 +109037,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *723 examples: - default: &723 + default: &724 value: id: 12 issue_id: 4567 @@ -109014,9 +109077,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: suggestion_id in: path required: true @@ -109028,9 +109091,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *723 examples: - default: *723 + default: *724 '403': *29 '404': *6 '422': *15 @@ -109050,9 +109113,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 - name: exclude @@ -109073,7 +109136,6 @@ paths: description: Timeline Event type: object anyOf: - - *724 - *725 - *726 - *727 @@ -109086,6 +109148,7 @@ paths: - *734 - *735 - *736 + - *737 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -109146,15 +109209,15 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *737 - required: *738 + properties: *738 + required: *739 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *739 - required: *740 + properties: *740 + required: *741 nullable: true required: - event @@ -109409,7 +109472,7 @@ paths: type: string comments: type: array - items: &774 + items: &775 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -109624,7 +109687,7 @@ paths: type: string comments: type: array - items: *626 + items: *627 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -109668,7 +109731,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - id - node_id @@ -109769,7 +109832,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - id - node_id @@ -109780,7 +109843,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *741 - *742 - *743 - *744 @@ -109791,6 +109853,7 @@ paths: - *749 - *750 - *751 + - *752 examples: default: value: @@ -109964,8 +110027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -109975,7 +110038,7 @@ paths: application/json: schema: type: array - items: &752 + items: &753 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -110041,8 +110104,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110078,9 +110141,9 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: &753 + default: &754 value: id: 1 key: ssh-rsa AAA... @@ -110114,9 +110177,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *510 - *511 - - &754 + - *512 + - &755 name: key_id description: The unique identifier of the key. in: path @@ -110128,9 +110191,9 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 '404': *6 x-github: githubCloudOnly: false @@ -110148,9 +110211,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *510 - *511 - - *754 + - *512 + - *755 responses: '204': description: Response @@ -110170,8 +110233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -110183,7 +110246,7 @@ paths: type: array items: *234 examples: - default: *721 + default: *722 headers: Link: *48 '404': *6 @@ -110204,8 +110267,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110243,7 +110306,7 @@ paths: application/json: schema: *234 examples: - default: &755 + default: &756 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -110275,8 +110338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *510 - *511 + - *512 - name: name in: path required: true @@ -110289,7 +110352,7 @@ paths: application/json: schema: *234 examples: - default: *755 + default: *756 '404': *6 x-github: githubCloudOnly: false @@ -110306,8 +110369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *510 - *511 + - *512 - name: name in: path required: true @@ -110372,8 +110435,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *510 - *511 + - *512 - name: name in: path required: true @@ -110399,8 +110462,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -110436,8 +110499,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *510 - *511 + - *512 responses: '202': *40 '403': @@ -110465,8 +110528,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -110492,9 +110555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *510 - *511 - - *599 + - *512 + - *600 responses: '200': description: Response @@ -110639,8 +110702,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110705,8 +110768,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110740,9 +110803,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *629 + schema: *630 examples: - default: *756 + default: *757 '204': description: Response when already merged '404': @@ -110767,8 +110830,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *510 - *511 + - *512 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -110809,12 +110872,12 @@ paths: application/json: schema: type: array - items: &757 + items: &758 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 examples: default: value: @@ -110870,8 +110933,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110911,9 +110974,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: &758 + default: &759 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -110972,9 +111035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *510 - *511 - - &759 + - *512 + - &760 name: milestone_number description: The number that identifies the milestone. in: path @@ -110986,9 +111049,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 '404': *6 x-github: githubCloudOnly: false @@ -111005,9 +111068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *510 - *511 - - *759 + - *512 + - *760 requestBody: required: false content: @@ -111045,9 +111108,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111063,9 +111126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *510 - *511 - - *759 + - *512 + - *760 responses: '204': description: Response @@ -111086,9 +111149,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *510 - *511 - - *759 + - *512 + - *760 - *17 - *19 responses: @@ -111100,7 +111163,7 @@ paths: type: array items: *234 examples: - default: *721 + default: *722 headers: Link: *48 x-github: @@ -111119,12 +111182,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *510 - *511 - - *760 + - *512 - *761 - - *242 - *762 + - *242 + - *763 - *17 - *19 responses: @@ -111136,7 +111199,7 @@ paths: type: array items: *262 examples: - default: *763 + default: *764 headers: Link: *48 x-github: @@ -111160,8 +111223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -111219,14 +111282,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &764 + schema: &765 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -111351,7 +111414,7 @@ paths: - custom_404 - public examples: - default: &765 + default: &766 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -111392,8 +111455,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -111447,9 +111510,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: *765 + default: *766 '422': *15 '409': *122 x-github: @@ -111472,8 +111535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -111580,8 +111643,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -111607,8 +111670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -111618,7 +111681,7 @@ paths: application/json: schema: type: array - items: &766 + items: &767 title: Page Build description: Page Build type: object @@ -111712,8 +111775,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -111758,16 +111821,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: &767 + default: &768 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -111815,8 +111878,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *510 - *511 + - *512 - name: build_id in: path required: true @@ -111827,9 +111890,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: *767 + default: *768 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111849,8 +111912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -111955,9 +112018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *510 - *511 - - &768 + - *512 + - &769 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -112015,9 +112078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *510 - *511 - - *768 + - *512 + - *769 responses: '204': *129 '404': *6 @@ -112044,8 +112107,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -112303,8 +112366,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Private vulnerability reporting status @@ -112341,8 +112404,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': *129 '422': *14 @@ -112363,8 +112426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': *129 '422': *14 @@ -112386,8 +112449,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -112397,7 +112460,7 @@ paths: type: array items: *164 examples: - default: *769 + default: *770 '403': *29 '404': *6 x-github: @@ -112419,8 +112482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -112436,7 +112499,7 @@ paths: required: - properties examples: - default: *770 + default: *771 responses: '204': description: No Content when custom property values are successfully created @@ -112474,8 +112537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *510 - *511 + - *512 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -112535,9 +112598,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: *771 + default: *772 headers: Link: *48 '304': *38 @@ -112569,8 +112632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -112635,7 +112698,7 @@ paths: description: Response content: application/json: - schema: &776 + schema: &777 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -112746,8 +112809,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 nullable: true active_lock_reason: type: string @@ -112790,7 +112853,7 @@ paths: items: *4 requested_teams: type: array - items: *494 + items: *495 head: type: object properties: @@ -112828,14 +112891,14 @@ paths: _links: type: object properties: - comments: *441 - commits: *441 - statuses: *441 - html: *441 - issue: *441 - review_comments: *441 - review_comment: *441 - self: *441 + comments: *442 + commits: *442 + statuses: *442 + html: *442 + issue: *442 + review_comments: *442 + review_comment: *442 + self: *442 required: - comments - commits @@ -112846,8 +112909,8 @@ paths: - review_comment - self author_association: *232 - auto_merge: *772 - stack: *773 + auto_merge: *773 + stack: *774 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -112939,7 +113002,7 @@ paths: - merged_by - review_comments examples: - default: &777 + default: &778 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -113466,8 +113529,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *510 - *511 + - *512 - name: sort in: query required: false @@ -113496,9 +113559,9 @@ paths: application/json: schema: type: array - items: *774 + items: *775 examples: - default: &779 + default: &780 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -113575,17 +113638,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: &775 + default: &776 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -113660,8 +113723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -113684,9 +113747,9 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: *775 + default: *776 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113702,8 +113765,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -113725,8 +113788,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *510 - *511 + - *512 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -113753,9 +113816,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -113776,8 +113839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -113810,16 +113873,16 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -113841,10 +113904,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *510 - *511 + - *512 - *251 - - *707 + - *708 responses: '204': description: Response @@ -113887,9 +113950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *510 - *511 - - &778 + - *512 + - &779 name: pull_number description: The number that identifies the pull request. in: path @@ -113902,9 +113965,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *776 + schema: *777 examples: - default: *777 + default: *778 '304': *38 '404': *6 '406': @@ -113939,9 +114002,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -113983,9 +114046,9 @@ paths: description: Response content: application/json: - schema: *776 + schema: *777 examples: - default: *777 + default: *778 '422': *15 '403': *29 x-github: @@ -114007,9 +114070,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: true content: @@ -114069,17 +114132,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '401': *25 '403': *29 '404': *6 @@ -114109,9 +114172,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *259 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -114132,9 +114195,9 @@ paths: application/json: schema: type: array - items: *774 + items: *775 examples: - default: *779 + default: *780 headers: Link: *48 x-github: @@ -114167,9 +114230,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: true content: @@ -114274,7 +114337,7 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: example-for-a-multi-line-comment: value: @@ -114362,9 +114425,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *251 requestBody: required: true @@ -114387,7 +114450,7 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: default: value: @@ -114473,9 +114536,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *17 - *19 responses: @@ -114485,9 +114548,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *780 + default: *781 headers: Link: *48 x-github: @@ -114517,9 +114580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *17 - *19 responses: @@ -114529,7 +114592,7 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: default: value: @@ -114567,9 +114630,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *510 - *511 - - *778 + - *512 + - *779 responses: '204': description: Response if pull request has been merged @@ -114592,9 +114655,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -114716,9 +114779,9 @@ paths: category: pulls subcategory: pulls parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -114770,7 +114833,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &781 + schema: &782 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -114855,7 +114918,7 @@ paths: merge queue content: application/json: - schema: *781 + schema: *782 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -114875,7 +114938,7 @@ paths: this pull request content: application/json: - schema: *781 + schema: *782 examples: response-if-a-merge-request-already-exists: value: @@ -114891,7 +114954,7 @@ paths: it is closed content: application/json: - schema: *781 + schema: *782 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -114923,9 +114986,9 @@ paths: category: pulls subcategory: pulls parameters: - - *510 - *511 - - *778 + - *512 + - *779 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -114938,7 +115001,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *781 + schema: *782 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -114986,9 +115049,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 responses: '200': description: Response @@ -115063,9 +115126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -115102,7 +115165,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -115638,9 +115701,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: true content: @@ -115674,7 +115737,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -116179,9 +116242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *17 - *19 responses: @@ -116191,7 +116254,7 @@ paths: application/json: schema: type: array - items: &782 + items: &783 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -116342,9 +116405,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -116430,9 +116493,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: &784 + default: &785 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -116495,10 +116558,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - &783 + - *512 + - *779 + - &784 name: review_id description: The unique identifier of the review. in: path @@ -116510,9 +116573,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: &785 + default: &786 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -116571,10 +116634,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 requestBody: required: true content: @@ -116597,7 +116660,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: default: value: @@ -116659,18 +116722,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 responses: '200': description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *784 + default: *785 '422': *7 '404': *6 x-github: @@ -116697,10 +116760,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 - *17 - *19 responses: @@ -116783,9 +116846,9 @@ paths: _links: type: object properties: - self: *441 - html: *441 - pull_request: *441 + self: *442 + html: *442 + pull_request: *442 required: - self - html @@ -116935,10 +116998,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 requestBody: required: true content: @@ -116966,7 +117029,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: default: value: @@ -117029,10 +117092,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 requestBody: required: true content: @@ -117067,9 +117130,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *785 + default: *786 '404': *6 '422': *7 '403': *29 @@ -117091,9 +117154,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -117156,8 +117219,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *510 - *511 + - *512 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -117170,9 +117233,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: &787 + default: &788 value: type: file encoding: base64 @@ -117214,8 +117277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *510 - *511 + - *512 - name: dir description: The alternate path to look for a README file in: path @@ -117235,9 +117298,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: *787 + default: *788 '404': *6 '422': *15 x-github: @@ -117259,8 +117322,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -117270,7 +117333,7 @@ paths: application/json: schema: type: array - items: *788 + items: *789 examples: default: value: @@ -117369,8 +117432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -117446,9 +117509,9 @@ paths: description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: &792 + default: &793 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -117553,9 +117616,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *510 - *511 - - &790 + - *512 + - &791 name: asset_id description: The unique identifier of the asset. in: path @@ -117567,9 +117630,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: &791 + default: &792 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 @@ -117604,7 +117667,7 @@ paths: type: User site_admin: false '404': *6 - '302': *645 + '302': *646 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117620,9 +117683,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *510 - *511 - - *790 + - *512 + - *791 requestBody: required: false content: @@ -117650,9 +117713,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: *791 + default: *792 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117668,9 +117731,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *510 - *511 - - *790 + - *512 + - *791 responses: '204': description: Response @@ -117695,8 +117758,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -117781,16 +117844,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '404': *6 x-github: githubCloudOnly: false @@ -117808,8 +117871,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *510 - *511 + - *512 - name: tag description: tag parameter in: path @@ -117822,9 +117885,9 @@ paths: description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '404': *6 x-github: githubCloudOnly: false @@ -117846,9 +117909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *510 - *511 - - &793 + - *512 + - &794 name: release_id description: The unique identifier of the release. in: path @@ -117862,9 +117925,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '401': description: Unauthorized x-github: @@ -117888,9 +117951,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 requestBody: required: false content: @@ -117954,9 +118017,9 @@ paths: description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '404': description: Not Found if the discussion category name is invalid content: @@ -117977,9 +118040,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 responses: '204': description: Response @@ -118000,9 +118063,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *510 - *511 - - *793 + - *512 + - *794 - *17 - *19 responses: @@ -118012,7 +118075,7 @@ paths: application/json: schema: type: array - items: *789 + items: *790 examples: default: value: @@ -118094,9 +118157,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: - - *510 - *511 - - *793 + - *512 + - *794 - name: name in: query required: true @@ -118122,7 +118185,7 @@ paths: description: Response for successful upload content: application/json: - schema: *789 + schema: *790 examples: response-for-successful-upload: value: @@ -118177,9 +118240,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -118203,9 +118266,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -118226,9 +118289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 requestBody: required: true content: @@ -118258,16 +118321,16 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -118289,10 +118352,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *510 - *511 - - *793 - - *707 + - *512 + - *794 + - *708 responses: '204': description: Response @@ -118316,9 +118379,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 - *17 - *19 responses: @@ -118335,7 +118398,7 @@ paths: oneOf: - allOf: - *178 - - &794 + - &795 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -118356,70 +118419,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *179 - - *794 + - *795 - allOf: - *180 - - *794 + - *795 - allOf: - *181 - - *794 + - *795 - allOf: + - *796 - *795 - - *794 - allOf: - *182 - - *794 + - *795 - allOf: - *183 - - *794 + - *795 - allOf: - *184 - - *794 + - *795 - allOf: - *185 - - *794 + - *795 - allOf: - *186 - - *794 + - *795 - allOf: - *187 - - *794 + - *795 - allOf: - *188 - - *794 + - *795 - allOf: - *189 - - *794 + - *795 - allOf: - *190 - - *794 + - *795 - allOf: - *191 - - *794 + - *795 - allOf: - *192 - - *794 + - *795 - allOf: - *193 - - *794 + - *795 - allOf: - *194 - - *794 + - *795 - allOf: - - *796 - - *794 + - *797 + - *795 - allOf: - *195 - - *794 + - *795 - allOf: - *196 - - *794 + - *795 - allOf: - *197 - - *794 + - *795 - allOf: - *198 - - *794 + - *795 examples: default: value: @@ -118458,8 +118521,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - *17 - *19 - name: includes_parents @@ -118470,7 +118533,7 @@ paths: schema: type: boolean default: true - - *797 + - *798 responses: '200': description: Response @@ -118525,8 +118588,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 requestBody: description: Request body required: true @@ -118555,7 +118618,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *798 + items: *799 required: - name - enforcement @@ -118588,7 +118651,7 @@ paths: application/json: schema: *199 examples: - default: &808 + default: &809 value: id: 42 name: super cool ruleset @@ -118636,13 +118699,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *510 - *511 - - *799 - - *108 + - *512 - *800 + - *108 - *801 - *802 + - *803 - *17 - *19 responses: @@ -118650,9 +118713,9 @@ paths: description: Response content: application/json: - schema: *803 + schema: *804 examples: - default: *804 + default: *805 '404': *6 '500': *41 x-github: @@ -118673,17 +118736,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *510 - *511 - - *805 + - *512 + - *806 responses: '200': description: Response content: application/json: - schema: *806 + schema: *807 examples: - default: *807 + default: *808 '404': *6 '500': *41 x-github: @@ -118711,8 +118774,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118734,7 +118797,7 @@ paths: application/json: schema: *199 examples: - default: *808 + default: *809 '404': *6 '500': *41 put: @@ -118752,8 +118815,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118787,7 +118850,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *798 + items: *799 examples: default: value: @@ -118817,7 +118880,7 @@ paths: application/json: schema: *199 examples: - default: *808 + default: *809 '404': *6 '422': *15 '500': *41 @@ -118836,8 +118899,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118860,8 +118923,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *510 - *511 + - *512 - *17 - *19 - name: ruleset_id @@ -118879,7 +118942,7 @@ paths: type: array items: *203 examples: - default: *459 + default: *460 '404': *6 '500': *41 x-github: @@ -118898,8 +118961,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118917,7 +118980,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *461 examples: default: value: @@ -118972,9 +119035,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *510 - *511 - - *461 + - *512 - *462 - *463 - *464 @@ -118982,18 +119044,19 @@ paths: - *466 - *467 - *468 + - *469 - *113 - *19 - *17 - - *809 - *810 - - *469 + - *811 - *470 - *471 - *472 - *473 - *474 - *475 + - *476 responses: '200': description: Response @@ -119020,8 +119083,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *811 - resolution: *812 + state: *812 + resolution: *813 resolved_at: type: string format: date-time @@ -119127,7 +119190,7 @@ paths: pull request. ' - oneOf: *813 + oneOf: *814 nullable: true has_more_locations: type: boolean @@ -119291,16 +119354,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *510 - *511 - - *593 - - *472 + - *512 + - *594 + - *473 responses: '200': description: Response content: application/json: - schema: &814 + schema: &815 type: object properties: number: *136 @@ -119318,8 +119381,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *811 - resolution: *812 + state: *812 + resolution: *813 resolved_at: type: string format: date-time @@ -119425,7 +119488,7 @@ paths: pull request. ' - oneOf: *813 + oneOf: *814 nullable: true has_more_locations: type: boolean @@ -119453,7 +119516,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &1004 + metadata: &1005 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -119526,9 +119589,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 requestBody: required: true content: @@ -119536,8 +119599,8 @@ paths: schema: type: object properties: - state: *811 - resolution: *812 + state: *812 + resolution: *813 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -119581,7 +119644,7 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: default: value: @@ -119683,9 +119746,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 - *19 - *17 responses: @@ -119696,7 +119759,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &1006 + items: &1007 type: object properties: type: @@ -119722,7 +119785,6 @@ paths: example: commit details: oneOf: - - *815 - *816 - *817 - *818 @@ -119735,6 +119797,7 @@ paths: - *825 - *826 - *827 + - *828 examples: default: value: @@ -119823,11 +119886,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 - - *478 + - *512 - *479 - *480 + - *481 - *113 - *19 - *17 @@ -119840,7 +119903,7 @@ paths: type: array items: *205 examples: - default: *481 + default: *482 headers: Link: *48 '403': *29 @@ -119863,8 +119926,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -119877,9 +119940,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *482 + items: *483 examples: - default: *483 + default: *484 responses: '201': description: All patterns created successfully. @@ -119893,7 +119956,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: *484 + default: *485 '400': *14 '403': *29 '404': *6 @@ -119917,7 +119980,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *485 + items: *486 delete: summary: Bulk delete repository custom patterns description: |- @@ -119936,8 +119999,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -119951,7 +120014,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *486 + items: *487 post_delete_action: type: string description: |- @@ -119964,7 +120027,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *487 + default: *488 responses: '204': description: All patterns deleted successfully. @@ -119991,8 +120054,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 + - *512 - name: pattern_id in: path required: true @@ -120003,9 +120066,9 @@ paths: required: true content: application/json: - schema: *488 + schema: *489 examples: - default: *489 + default: *490 responses: '200': description: Pattern updated successfully. @@ -120013,7 +120076,7 @@ paths: application/json: schema: *205 examples: - default: *490 + default: *491 '400': *14 '403': *29 '404': *6 @@ -120035,8 +120098,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -120044,14 +120107,14 @@ paths: schema: type: object properties: - reason: &829 + reason: &830 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *828 + placeholder_id: *829 required: - reason - placeholder_id @@ -120068,7 +120131,7 @@ paths: schema: type: object properties: - reason: *829 + reason: *830 expire_at: type: string format: date-time @@ -120114,8 +120177,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *510 - *511 + - *512 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -120130,7 +120193,7 @@ paths: properties: incremental_scans: type: array - items: &830 + items: &831 description: Information on a single scan performed by secret scanning on the repository type: object @@ -120161,15 +120224,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *830 + items: *831 backfill_scans: type: array - items: *830 + items: *831 custom_pattern_backfill_scans: type: array items: allOf: - - *830 + - *831 - type: object properties: pattern_name: @@ -120182,7 +120245,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *830 + items: *831 examples: default: value: @@ -120247,8 +120310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *510 - *511 + - *512 - *113 - name: sort description: The property to sort the results by. @@ -120292,9 +120355,9 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: - default: *832 + default: *833 '400': *14 '404': *6 x-github: @@ -120317,8 +120380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -120391,7 +120454,7 @@ paths: login: type: string description: The username of the user credited. - type: *493 + type: *494 required: - login - type @@ -120478,9 +120541,9 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: &834 + default: &835 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -120713,8 +120776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -120818,7 +120881,7 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: default: value: @@ -120965,17 +121028,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *510 - *511 - - *833 + - *512 + - *834 responses: '200': description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: *834 + default: *835 '403': *29 '404': *6 x-github: @@ -120999,9 +121062,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *510 - *511 - - *833 + - *512 + - *834 requestBody: required: true content: @@ -121074,7 +121137,7 @@ paths: login: type: string description: The username of the user credited. - type: *493 + type: *494 required: - login - type @@ -121160,10 +121223,10 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: *834 - add_credit: *834 + default: *835 + add_credit: *835 '403': *29 '404': *6 '422': @@ -121201,9 +121264,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *510 - *511 - - *833 + - *512 + - *834 responses: '202': *40 '400': *14 @@ -121230,17 +121293,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *510 - *511 - - *833 + - *512 + - *834 responses: '202': description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 '400': *14 '422': *15 '403': *29 @@ -121261,8 +121324,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#list-pull-request-stacks parameters: - - *510 - *511 + - *512 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -121394,8 +121457,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -121462,7 +121525,7 @@ paths: format: date-time pull_requests: type: array - items: &835 + items: &836 title: Pull Request Stack Pull Request type: object allOf: @@ -121688,8 +121751,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *510 - *511 + - *512 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -121738,7 +121801,7 @@ paths: format: date-time pull_requests: type: array - items: *835 + items: *836 examples: default: value: @@ -121858,8 +121921,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *510 - *511 + - *512 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -121931,7 +121994,7 @@ paths: format: date-time pull_requests: type: array - items: *835 + items: *836 examples: default: value: @@ -122135,8 +122198,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *510 - *511 + - *512 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -122185,7 +122248,7 @@ paths: format: date-time pull_requests: type: array - items: *835 + items: *836 examples: default: value: @@ -122291,8 +122354,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -122391,8 +122454,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *510 - *511 + - *512 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -122401,7 +122464,7 @@ paths: application/json: schema: type: array - items: &836 + items: &837 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -122434,8 +122497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -122511,8 +122574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -122608,8 +122671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *510 - *511 + - *512 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -122763,8 +122826,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *510 - *511 + - *512 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -122774,7 +122837,7 @@ paths: application/json: schema: type: array - items: *836 + items: *837 examples: default: value: @@ -122807,8 +122870,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *510 - *511 + - *512 - name: sha in: path required: true @@ -122862,7 +122925,7 @@ paths: description: Response content: application/json: - schema: *837 + schema: *838 examples: default: value: @@ -122916,8 +122979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -122949,14 +123012,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *510 - *511 + - *512 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &838 + schema: &839 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -123024,8 +123087,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -123051,7 +123114,7 @@ paths: description: Response content: application/json: - schema: *838 + schema: *839 examples: default: value: @@ -123078,8 +123141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -123099,8 +123162,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -123179,8 +123242,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *510 - *511 + - *512 - name: ref in: path required: true @@ -123216,8 +123279,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -123229,7 +123292,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 headers: Link: *48 '404': *6 @@ -123249,8 +123312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *510 - *511 + - *512 - *19 - *17 responses: @@ -123258,7 +123321,7 @@ paths: description: Response content: application/json: - schema: &839 + schema: &840 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -123270,7 +123333,7 @@ paths: required: - names examples: - default: &840 + default: &841 value: names: - octocat @@ -123293,8 +123356,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -123325,9 +123388,9 @@ paths: description: Response content: application/json: - schema: *839 + schema: *840 examples: - default: *840 + default: *841 '404': *6 '422': *7 x-github: @@ -123348,9 +123411,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *510 - *511 - - &841 + - *512 + - &842 name: per description: The time frame to display results for. in: query @@ -123379,7 +123442,7 @@ paths: example: 128 clones: type: array - items: &842 + items: &843 title: Traffic type: object properties: @@ -123466,8 +123529,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -123557,8 +123620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -123618,9 +123681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *510 - *511 - - *841 + - *512 + - *842 responses: '200': description: Response @@ -123639,7 +123702,7 @@ paths: example: 3782 views: type: array - items: *842 + items: *843 required: - uniques - count @@ -123716,8 +123779,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -123991,8 +124054,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -124015,8 +124078,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -124038,8 +124101,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -124065,8 +124128,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *510 - *511 + - *512 - name: ref in: path required: true @@ -124158,9 +124221,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -124311,7 +124374,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &850 + - &851 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -124320,7 +124383,7 @@ paths: schema: type: string example: members - - &855 + - &856 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -124331,7 +124394,7 @@ paths: default: 1 format: int32 example: 1 - - &856 + - &857 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -124373,7 +124436,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &845 + items: &846 allOf: - type: object required: @@ -124448,7 +124511,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &857 + meta: &858 type: object description: The metadata associated with the creation/updates to the user. @@ -124508,30 +124571,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &846 + '400': &847 description: Bad request content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '401': *844 - '403': &847 + schema: *844 + '401': *845 + '403': &848 description: Permission denied - '429': &848 + '429': &849 description: Too many requests content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '500': &849 + schema: *844 + '500': &850 description: Internal server error content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 + schema: *844 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124555,7 +124618,7 @@ paths: required: true content: application/json: - schema: &853 + schema: &854 type: object required: - schemas @@ -124615,9 +124678,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *845 + schema: *846 examples: - group: &851 + group: &852 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -124636,13 +124699,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *846 - '401': *844 - '403': *847 - '409': &854 + '400': *847 + '401': *845 + '403': *848 + '409': &855 description: Duplicate record detected - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124659,7 +124722,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &852 + - &853 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -124667,22 +124730,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *850 + - *851 - *42 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *845 + schema: *846 examples: - default: *851 - '400': *846 - '401': *844 - '403': *847 + default: *852 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124701,13 +124764,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *852 + - *853 - *42 requestBody: required: true content: application/json: - schema: *853 + schema: *854 examples: group: summary: Group @@ -124733,17 +124796,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *845 + schema: *846 examples: - group: *851 - groupWithMembers: *851 - '400': *846 - '401': *844 - '403': *847 + group: *852 + groupWithMembers: *852 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124767,13 +124830,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *852 + - *853 - *42 requestBody: required: true content: application/json: - schema: &864 + schema: &865 type: object required: - Operations @@ -124833,17 +124896,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *845 + schema: *846 examples: - updateGroup: *851 - addMembers: *851 - '400': *846 - '401': *844 - '403': *847 + updateGroup: *852 + addMembers: *852 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124859,17 +124922,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *852 + - *853 - *42 responses: '204': description: Group was deleted, no content - '400': *846 - '401': *844 - '403': *847 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124903,8 +124966,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *855 - *856 + - *857 - *42 responses: '200': @@ -124937,7 +125000,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &859 + items: &860 allOf: - type: object required: @@ -125016,7 +125079,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &858 + roles: &859 type: array description: The roles assigned to the user. items: @@ -125072,7 +125135,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *857 + meta: *858 startIndex: type: integer description: A starting index for the returned page @@ -125109,11 +125172,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *846 - '401': *844 - '403': *847 - '429': *848 - '500': *849 + '400': *847 + '401': *845 + '403': *848 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125137,7 +125200,7 @@ paths: required: true content: application/json: - schema: &862 + schema: &863 type: object required: - schemas @@ -125219,9 +125282,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *858 + roles: *859 examples: - user: &863 + user: &864 summary: User value: schemas: @@ -125268,9 +125331,9 @@ paths: description: User has been created content: application/scim+json: - schema: *859 + schema: *860 examples: - user: &860 + user: &861 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -125296,13 +125359,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *860 - '400': *846 - '401': *844 - '403': *847 - '409': *854 - '429': *848 - '500': *849 + enterpriseOwner: *861 + '400': *847 + '401': *845 + '403': *848 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125319,7 +125382,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &861 + - &862 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -125332,15 +125395,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *859 + schema: *860 examples: - default: *860 - '400': *846 - '401': *844 - '403': *847 + default: *861 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125391,30 +125454,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *861 + - *862 - *42 requestBody: required: true content: application/json: - schema: *862 + schema: *863 examples: - user: *863 + user: *864 responses: '200': description: User was updated content: application/scim+json: - schema: *859 + schema: *860 examples: - user: *860 - '400': *846 - '401': *844 - '403': *847 + user: *861 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125455,13 +125518,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *861 + - *862 - *42 requestBody: required: true content: application/json: - schema: *864 + schema: *865 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -125501,18 +125564,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *859 - examples: - userMultiValuedProperties: *860 - userSingleValuedProperties: *860 - disableUser: *860 - '400': *846 - '401': *844 - '403': *847 + schema: *860 + examples: + userMultiValuedProperties: *861 + userSingleValuedProperties: *861 + disableUser: *861 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125532,17 +125595,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *861 + - *862 - *42 responses: '204': description: User was deleted, no content - '400': *846 - '401': *844 - '403': *847 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125629,7 +125692,7 @@ paths: example: 1 Resources: type: array - items: &865 + items: &866 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -125860,22 +125923,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *38 - '404': &866 + '404': &867 description: Resource not found content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '403': &867 + schema: *844 + '403': &868 description: Forbidden content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '400': *846 - '429': *848 + schema: *844 + '400': *847 + '429': *849 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -125901,9 +125964,9 @@ paths: description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: &868 + default: &869 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -125926,17 +125989,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *38 - '404': *866 - '403': *867 - '500': *849 + '404': *867 + '403': *868 + '500': *850 '409': description: Conflict content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '400': *846 + schema: *844 + '400': *847 requestBody: required: true content: @@ -126034,17 +126097,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *90 - - *861 + - *862 responses: '200': description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: *868 - '404': *866 - '403': *867 + default: *869 + '404': *867 + '403': *868 '304': *38 x-github: githubCloudOnly: true @@ -126068,18 +126131,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *90 - - *861 + - *862 responses: '200': description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: *868 + default: *869 '304': *38 - '404': *866 - '403': *867 + '404': *867 + '403': *868 requestBody: required: true content: @@ -126192,19 +126255,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *90 - - *861 + - *862 responses: '200': description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: *868 + default: *869 '304': *38 - '404': *866 - '403': *867 - '400': *846 + '404': *867 + '403': *868 + '400': *847 '429': description: Response content: @@ -126295,12 +126358,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *90 - - *861 + - *862 responses: '204': description: Response - '404': *866 - '403': *867 + '404': *867 + '403': *868 '304': *38 x-github: githubCloudOnly: true @@ -126436,7 +126499,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &869 + text_matches: &870 title: Search Result Text Matches type: array items: @@ -126599,7 +126662,7 @@ paths: enum: - author-date - committer-date - - &870 + - &871 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 @@ -126670,7 +126733,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *560 + properties: *561 nullable: true comment_count: type: integer @@ -126690,7 +126753,7 @@ paths: url: type: string format: uri - verification: *689 + verification: *690 required: - author - committer @@ -126709,7 +126772,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *560 + properties: *561 nullable: true parents: type: array @@ -126727,7 +126790,7 @@ paths: type: number node_id: type: string - text_matches: *869 + text_matches: *870 required: - sha - node_id @@ -126920,7 +126983,7 @@ paths: - interactions - created - updated - - *870 + - *871 - *17 - *19 - name: advanced_search @@ -127034,11 +127097,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: type: string state_reason: @@ -127055,8 +127118,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 nullable: true comments: type: integer @@ -127070,7 +127133,7 @@ paths: type: string format: date-time nullable: true - text_matches: *869 + text_matches: *870 pull_request: type: object properties: @@ -127114,7 +127177,7 @@ paths: timeline_url: type: string format: uri - type: *404 + type: *405 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -127352,7 +127415,7 @@ paths: enum: - created - updated - - *870 + - *871 - *17 - *19 responses: @@ -127396,7 +127459,7 @@ paths: nullable: true score: type: number - text_matches: *869 + text_matches: *870 required: - id - node_id @@ -127482,7 +127545,7 @@ paths: - forks - help-wanted-issues - updated - - *870 + - *871 - *17 - *19 responses: @@ -127730,7 +127793,7 @@ paths: - admin - pull - push - text_matches: *869 + text_matches: *870 temp_clone_token: type: string allow_merge_commit: @@ -128031,7 +128094,7 @@ paths: type: string format: uri nullable: true - text_matches: *869 + text_matches: *870 related: type: array nullable: true @@ -128224,7 +128287,7 @@ paths: - followers - repositories - joined - - *870 + - *871 - *17 - *19 responses: @@ -128328,7 +128391,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *869 + text_matches: *870 blog: type: string nullable: true @@ -128407,7 +128470,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &873 + - &874 name: team_id description: The unique identifier of the team. in: path @@ -128419,9 +128482,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 x-github: githubCloudOnly: false @@ -128448,7 +128511,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *873 + - *874 requestBody: required: true content: @@ -128516,16 +128579,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '201': description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 '422': *15 '403': *29 @@ -128553,7 +128616,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *873 + - *874 responses: '204': description: Response @@ -128582,7 +128645,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *873 + - *874 - *17 - *19 responses: @@ -128592,9 +128655,9 @@ paths: application/json: schema: type: array - items: *398 + items: *399 examples: - default: *399 + default: *400 headers: Link: *48 x-github: @@ -128622,7 +128685,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *873 + - *874 - name: role description: Filters members returned by their role in the team. in: query @@ -128643,9 +128706,9 @@ paths: application/json: schema: type: array - items: *874 + items: *875 examples: - default: *875 + default: *876 headers: Link: *48 '404': *6 @@ -128673,7 +128736,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128710,7 +128773,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128750,7 +128813,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128787,16 +128850,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *873 + - *874 - *135 responses: '200': description: Response content: application/json: - schema: *509 + schema: *510 examples: - response-if-user-is-a-team-maintainer: *876 + response-if-user-is-a-team-maintainer: *877 '404': *6 x-github: githubCloudOnly: false @@ -128829,7 +128892,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *873 + - *874 - *135 requestBody: required: false @@ -128855,9 +128918,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - response-if-users-membership-with-team-is-now-pending: *877 + response-if-users-membership-with-team-is-now-pending: *878 '403': description: Forbidden if team synchronization is set up '422': @@ -128891,7 +128954,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128919,7 +128982,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *873 + - *874 - *17 - *19 responses: @@ -128931,7 +128994,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 '404': *6 @@ -128961,15 +129024,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *873 - - *510 + - *874 - *511 + - *512 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *878 + schema: *879 examples: alternative-response-with-extra-repository-information: value: @@ -129120,9 +129183,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *873 - - *510 + - *874 - *511 + - *512 requestBody: required: false content: @@ -129172,9 +129235,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *873 - - *510 + - *874 - *511 + - *512 responses: '204': description: Response @@ -129203,15 +129266,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *873 + - *874 responses: '200': description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '403': *29 '404': *6 x-github: @@ -129238,7 +129301,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *873 + - *874 requestBody: required: true content: @@ -129295,7 +129358,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: default: value: @@ -129326,7 +129389,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *873 + - *874 - *17 - *19 responses: @@ -129338,7 +129401,7 @@ paths: type: array items: *329 examples: - response-if-child-teams-exist: *879 + response-if-child-teams-exist: *880 headers: Link: *48 '404': *6 @@ -129371,7 +129434,7 @@ paths: application/json: schema: oneOf: - - &881 + - &882 title: Private User description: Private User type: object @@ -129574,7 +129637,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *880 + - *881 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -129727,7 +129790,7 @@ paths: description: Response content: application/json: - schema: *881 + schema: *882 examples: default: value: @@ -129930,9 +129993,9 @@ paths: type: integer codespaces: type: array - items: *409 + items: *410 examples: - default: *410 + default: *411 '304': *38 '500': *41 '401': *25 @@ -130071,17 +130134,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '401': *25 '403': *29 '404': *6 @@ -130125,7 +130188,7 @@ paths: type: integer secrets: type: array - items: &882 + items: &883 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -130165,7 +130228,7 @@ paths: - visibility - selected_repositories_url examples: - default: *619 + default: *620 headers: Link: *48 x-github: @@ -130241,7 +130304,7 @@ paths: description: Response content: application/json: - schema: *882 + schema: *883 examples: default: value: @@ -130531,15 +130594,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '304': *38 '500': *41 '401': *25 @@ -130565,7 +130628,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 requestBody: required: false content: @@ -130595,9 +130658,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '401': *25 '403': *29 '404': *6 @@ -130619,7 +130682,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '202': *40 '304': *38 @@ -130648,13 +130711,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '202': description: Response content: application/json: - schema: &883 + schema: &884 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -130695,7 +130758,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &884 + default: &885 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -130727,7 +130790,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *411 + - *412 - name: export_id in: path required: true @@ -130740,9 +130803,9 @@ paths: description: Response content: application/json: - schema: *883 + schema: *884 examples: - default: *884 + default: *885 '404': *6 x-github: githubCloudOnly: false @@ -130763,7 +130826,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *411 + - *412 responses: '200': description: Response @@ -130779,9 +130842,9 @@ paths: type: integer machines: type: array - items: *885 + items: *886 examples: - default: *886 + default: *887 '304': *38 '500': *41 '401': *25 @@ -130810,7 +130873,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *411 + - *412 requestBody: required: true content: @@ -130860,13 +130923,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *515 + repository: *516 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *617 - required: *618 + properties: *618 + required: *619 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -131640,15 +131703,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '304': *38 '500': *41 '400': *14 @@ -131680,15 +131743,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '500': *41 '401': *25 '403': *29 @@ -131718,9 +131781,9 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: &898 + default: &899 value: - id: 197 name: hello_docker @@ -131821,7 +131884,7 @@ paths: application/json: schema: type: array - items: &887 + items: &888 title: Email description: Email type: object @@ -131886,9 +131949,9 @@ paths: application/json: schema: type: array - items: *887 + items: *888 examples: - default: &900 + default: &901 value: - email: octocat@github.com verified: true @@ -131963,7 +132026,7 @@ paths: application/json: schema: type: array - items: *887 + items: *888 examples: default: value: @@ -132219,7 +132282,7 @@ paths: application/json: schema: type: array - items: &888 + items: &889 title: GPG Key description: A unique encryption key type: object @@ -132350,7 +132413,7 @@ paths: - subkeys - revoked examples: - default: &917 + default: &918 value: - id: 3 name: Octocat's GPG Key @@ -132435,9 +132498,9 @@ paths: description: Response content: application/json: - schema: *888 + schema: *889 examples: - default: &889 + default: &890 value: id: 3 name: Octocat's GPG Key @@ -132494,7 +132557,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &890 + - &891 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -132506,9 +132569,9 @@ paths: description: Response content: application/json: - schema: *888 + schema: *889 examples: - default: *889 + default: *890 '404': *6 '304': *38 '403': *29 @@ -132531,7 +132594,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *890 + - *891 responses: '204': description: Response @@ -132819,12 +132882,12 @@ paths: application/json: schema: anyOf: - - *396 + - *397 - type: object properties: {} additionalProperties: false examples: - default: *397 + default: *398 '204': description: Response when there are no restrictions x-github: @@ -132848,7 +132911,7 @@ paths: required: true content: application/json: - schema: *699 + schema: *700 examples: default: value: @@ -132859,7 +132922,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -132940,7 +133003,7 @@ paths: - closed - all default: open - - *407 + - *408 - name: sort description: What to sort results by. in: query @@ -132965,7 +133028,7 @@ paths: type: array items: *235 examples: - default: *408 + default: *409 headers: Link: *48 '404': *6 @@ -132998,7 +133061,7 @@ paths: application/json: schema: type: array - items: &891 + items: &892 title: Key description: Key type: object @@ -133099,9 +133162,9 @@ paths: description: Response content: application/json: - schema: *891 + schema: *892 examples: - default: &892 + default: &893 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -133134,15 +133197,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *754 + - *755 responses: '200': description: Response content: application/json: - schema: *891 + schema: *892 examples: - default: *892 + default: *893 '404': *6 '304': *38 '403': *29 @@ -133165,7 +133228,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *754 + - *755 responses: '204': description: Response @@ -133198,7 +133261,7 @@ paths: application/json: schema: type: array - items: &893 + items: &894 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -133266,7 +133329,7 @@ paths: - account - plan examples: - default: &894 + default: &895 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -133328,9 +133391,9 @@ paths: application/json: schema: type: array - items: *893 + items: *894 examples: - default: *894 + default: *895 headers: Link: *48 '304': *38 @@ -133370,7 +133433,7 @@ paths: application/json: schema: type: array - items: *412 + items: *413 examples: default: value: @@ -133484,7 +133547,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -133571,9 +133634,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *412 + schema: *413 examples: - default: &895 + default: &896 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -133620,9 +133683,9 @@ paths: processed asynchronously. content: application/json: - schema: *412 + schema: *413 examples: - default: *895 + default: *896 '403': *29 '404': *6 '422': *15 @@ -133651,7 +133714,7 @@ paths: application/json: schema: type: array - items: *414 + items: *415 examples: default: value: @@ -133904,7 +133967,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -134084,7 +134147,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *415 + - *416 - name: exclude in: query required: false @@ -134097,7 +134160,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -134291,7 +134354,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *415 + - *416 responses: '302': description: Response @@ -134317,7 +134380,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *415 + - *416 responses: '204': description: Response @@ -134346,8 +134409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *415 - - *896 + - *416 + - *897 responses: '204': description: Response @@ -134371,7 +134434,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *415 + - *416 - *17 - *19 responses: @@ -134383,7 +134446,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 '404': *6 @@ -134462,7 +134525,7 @@ paths: - docker - nuget - container - - *897 + - *898 - *19 - *17 responses: @@ -134472,10 +134535,10 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *898 - '400': *899 + default: *899 + '400': *900 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134495,16 +134558,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *422 - *423 + - *424 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: &918 + default: &919 value: id: 40201 name: octo-name @@ -134617,8 +134680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *422 - *423 + - *424 responses: '204': description: Response @@ -134648,8 +134711,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *422 - *423 + - *424 - name: token description: package token schema: @@ -134681,8 +134744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *422 - *423 + - *424 - *19 - *17 - name: state @@ -134702,7 +134765,7 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: default: value: @@ -134751,15 +134814,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -134795,9 +134858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 responses: '204': description: Response @@ -134827,9 +134890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 responses: '204': description: Response @@ -134866,9 +134929,9 @@ paths: application/json: schema: type: array - items: *887 + items: *888 examples: - default: *900 + default: *901 headers: Link: *48 '304': *38 @@ -134981,7 +135044,7 @@ paths: type: array items: *81 examples: - default: &907 + default: &908 summary: Default response value: - id: 1296269 @@ -135285,9 +135348,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -135325,9 +135388,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: *901 + default: *902 headers: Link: *48 '304': *38 @@ -135350,7 +135413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *400 + - *401 responses: '204': description: Response @@ -135373,7 +135436,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *400 + - *401 responses: '204': description: Response @@ -135406,7 +135469,7 @@ paths: application/json: schema: type: array - items: &902 + items: &903 title: Social account description: Social media account type: object @@ -135421,7 +135484,7 @@ paths: - provider - url examples: - default: &903 + default: &904 value: - provider: twitter url: https://twitter.com/github @@ -135483,9 +135546,9 @@ paths: application/json: schema: type: array - items: *902 + items: *903 examples: - default: *903 + default: *904 '422': *15 '304': *38 '404': *6 @@ -135572,7 +135635,7 @@ paths: application/json: schema: type: array - items: &904 + items: &905 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -135592,7 +135655,7 @@ paths: - title - created_at examples: - default: &932 + default: &933 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -135656,9 +135719,9 @@ paths: description: Response content: application/json: - schema: *904 + schema: *905 examples: - default: &905 + default: &906 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -135688,7 +135751,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &906 + - &907 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -135700,9 +135763,9 @@ paths: description: Response content: application/json: - schema: *904 + schema: *905 examples: - default: *905 + default: *906 '404': *6 '304': *38 '403': *29 @@ -135725,7 +135788,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *906 + - *907 responses: '204': description: Response @@ -135754,7 +135817,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &933 + - &934 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 @@ -135779,11 +135842,11 @@ paths: type: array items: *81 examples: - default-response: *907 + default-response: *908 application/vnd.github.v3.star+json: schema: type: array - items: &934 + items: &935 title: Starred Repository description: Starred Repository type: object @@ -135939,8 +136002,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *510 - *511 + - *512 responses: '204': description: Response if this repository is starred by you @@ -135968,8 +136031,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -135993,8 +136056,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -136029,7 +136092,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 '304': *38 @@ -136066,7 +136129,7 @@ paths: application/json: schema: type: array - items: *502 + items: *503 examples: default: value: @@ -136152,10 +136215,10 @@ paths: application/json: schema: oneOf: + - *882 - *881 - - *880 examples: - default-response: &911 + default-response: &912 summary: Default response value: login: octocat @@ -136190,7 +136253,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &912 + response-with-git-hub-plan-information: &913 summary: Response with GitHub plan information value: login: octocat @@ -136247,14 +136310,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &909 + - &910 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *438 + - *439 requestBody: required: true description: Details of the draft item to create in the project. @@ -136288,9 +136351,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: - draft_issue: *445 + draft_issue: *446 '304': *38 '403': *29 '401': *25 @@ -136313,7 +136376,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *908 + - *909 - *17 responses: '200': @@ -136348,8 +136411,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *909 - - *438 + - *910 + - *439 requestBody: required: true content: @@ -136385,6 +136448,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -136420,17 +136524,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *910 + schema: *911 examples: table_view: summary: Response for creating a table view - value: *449 + value: *450 board_view: summary: Response for creating a board view with filter - value: *449 + value: *450 roadmap_view: summary: Response for creating a roadmap view - value: *449 + value: *450 '304': *38 '403': *29 '401': *25 @@ -136472,11 +136576,11 @@ paths: application/json: schema: oneOf: + - *882 - *881 - - *880 examples: - default-response: *911 - response-with-git-hub-plan-information: *912 + default-response: *912 + response-with-git-hub-plan-information: *913 '404': *6 x-github: githubCloudOnly: false @@ -136526,8 +136630,8 @@ paths: required: - subject_digests examples: - default: *913 - withPredicateType: *914 + default: *914 + withPredicateType: *915 responses: '200': description: Response @@ -136580,7 +136684,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *915 + default: *916 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -136785,7 +136889,7 @@ paths: initiator: type: string examples: - default: *556 + default: *557 '201': description: Response content: @@ -137066,7 +137170,7 @@ paths: application/json: schema: *344 examples: - default: &916 + default: &917 summary: Example response for a user copilot space value: id: 42 @@ -137167,7 +137271,7 @@ paths: application/json: schema: *344 examples: - default: *916 + default: *917 '403': *29 '404': *6 x-github: @@ -137290,7 +137394,7 @@ paths: application/json: schema: *344 examples: - default: *916 + default: *917 '403': *29 '404': *6 '422': *15 @@ -138056,9 +138160,9 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *898 + default: *899 '403': *29 '401': *25 x-github: @@ -138442,9 +138546,9 @@ paths: application/json: schema: type: array - items: *888 + items: *889 examples: - default: *917 + default: *918 headers: Link: *48 x-github: @@ -138548,7 +138652,7 @@ paths: application/json: schema: *22 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -138672,7 +138776,7 @@ paths: - docker - nuget - container - - *897 + - *898 - *135 - *19 - *17 @@ -138683,12 +138787,12 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *898 + default: *899 '403': *29 '401': *25 - '400': *899 + '400': *900 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -138708,17 +138812,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *422 - *423 + - *424 - *135 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *918 + default: *919 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -138739,8 +138843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *422 - *423 + - *424 - *135 responses: '204': @@ -138773,8 +138877,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *422 - *423 + - *424 - *135 - name: token description: package token @@ -138807,8 +138911,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *422 - *423 + - *424 - *135 responses: '200': @@ -138817,7 +138921,7 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: default: value: @@ -138875,16 +138979,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 - *135 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -138919,10 +139023,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *422 - *423 + - *424 - *135 - - *425 + - *426 responses: '204': description: Response @@ -138954,10 +139058,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *422 - *423 + - *424 - *135 - - *425 + - *426 responses: '204': description: Response @@ -138998,9 +139102,9 @@ paths: application/json: schema: type: array - items: *436 + items: *437 examples: - default: *437 + default: *438 headers: Link: *48 '304': *38 @@ -139022,16 +139126,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *438 + - *439 - *135 responses: '200': description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 headers: Link: *48 '304': *38 @@ -139053,7 +139157,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *438 + - *439 - *135 - *17 - *111 @@ -139065,9 +139169,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *919 + default: *920 headers: Link: *48 '304': *38 @@ -139089,7 +139193,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *135 - - *438 + - *439 requestBody: required: true content: @@ -139127,7 +139231,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *920 + items: *921 required: - name - data_type @@ -139143,7 +139247,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *921 + iteration_configuration: *922 required: - name - data_type @@ -139165,20 +139269,20 @@ paths: value: name: Due date data_type: date - single_select_field: *922 - iteration_field: *923 + single_select_field: *923 + iteration_field: *924 responses: '201': description: Response content: application/json: - schema: *442 + schema: *443 examples: - text_field: *924 - number_field: *925 - date_field: *926 - single_select_field: *927 - iteration_field: *928 + text_field: *925 + number_field: *926 + date_field: *927 + single_select_field: *928 + iteration_field: *929 '304': *38 '403': *29 '401': *25 @@ -139199,17 +139303,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *438 - - *929 + - *439 + - *930 - *135 responses: '200': description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *930 + default: *931 headers: Link: *48 '304': *38 @@ -139232,7 +139336,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *438 + - *439 - *135 - *111 - *112 @@ -139265,9 +139369,9 @@ paths: application/json: schema: type: array - items: *446 + items: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -139289,7 +139393,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *135 - - *438 + - *439 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -139359,22 +139463,22 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *445 + value: *446 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *445 + value: *446 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *445 + value: *446 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *445 + value: *446 '304': *38 '403': *29 '401': *25 @@ -139394,9 +139498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *438 + - *439 - *135 - - *448 + - *449 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -139416,9 +139520,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -139439,9 +139543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *438 + - *439 - *135 - - *448 + - *449 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -139511,13 +139615,13 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - text_field: *447 - number_field: *447 - date_field: *447 - single_select_field: *447 - iteration_field: *447 + text_field: *448 + number_field: *448 + date_field: *448 + single_select_field: *448 + iteration_field: *448 '401': *25 '403': *29 '404': *6 @@ -139537,9 +139641,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *438 + - *439 - *135 - - *448 + - *449 responses: '204': description: Response @@ -139561,9 +139665,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-project-view parameters: - - *438 + - *439 - *135 - - *931 + - *932 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -139589,9 +139693,9 @@ paths: application/json: schema: type: array - items: *446 + items: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -139812,7 +139916,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 x-github: @@ -139842,9 +139946,9 @@ paths: application/json: schema: type: array - items: *902 + items: *903 examples: - default: *903 + default: *904 headers: Link: *48 x-github: @@ -139874,9 +139978,9 @@ paths: application/json: schema: type: array - items: *904 + items: *905 examples: - default: *932 + default: *933 headers: Link: *48 x-github: @@ -139901,7 +140005,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *135 - - *933 + - *934 - *113 - *17 - *19 @@ -139913,11 +140017,11 @@ paths: schema: anyOf: - type: array - items: *934 + items: *935 - type: array items: *81 examples: - default-response: *907 + default-response: *908 headers: Link: *48 x-github: @@ -139948,7 +140052,7 @@ paths: type: array items: *296 examples: - default: *426 + default: *427 headers: Link: *48 x-github: @@ -140076,7 +140180,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &935 + enterprise: &936 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -140134,7 +140238,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &936 + installation: &937 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -140153,7 +140257,7 @@ x-webhooks: required: - id - node_id - organization: &937 + organization: &938 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -140213,13 +140317,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &938 + repository: &939 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &977 + properties: &978 id: description: Unique identifier of the repository example: 42 @@ -140914,7 +141018,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &978 + required: &979 - archive_url - assignees_url - blobs_url @@ -141065,10 +141169,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -141144,11 +141248,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - rule: &939 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + rule: &940 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -141371,11 +141475,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - rule: *939 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + rule: *940 sender: *4 required: - action @@ -141558,11 +141662,11 @@ x-webhooks: - everyone required: - from - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - rule: *939 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + rule: *940 sender: *4 required: - action @@ -141635,7 +141739,7 @@ x-webhooks: required: true content: application/json: - schema: &961 + schema: &962 title: Exemption request cancellation event type: object properties: @@ -141643,11 +141747,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: &940 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: &941 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -141951,7 +142055,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &941 + items: &942 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -142061,7 +142165,7 @@ x-webhooks: required: true content: application/json: - schema: &962 + schema: &963 title: Exemption request completed event type: object properties: @@ -142069,11 +142173,11 @@ x-webhooks: type: string enum: - completed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 sender: *4 required: - action @@ -142145,7 +142249,7 @@ x-webhooks: required: true content: application/json: - schema: &959 + schema: &960 title: Exemption request created event type: object properties: @@ -142153,11 +142257,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 sender: *4 required: - action @@ -142229,7 +142333,7 @@ x-webhooks: required: true content: application/json: - schema: &963 + schema: &964 title: Exemption response dismissed event type: object properties: @@ -142237,12 +142341,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 - exemption_response: *941 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 + exemption_response: *942 sender: *4 required: - action @@ -142316,7 +142420,7 @@ x-webhooks: required: true content: application/json: - schema: &960 + schema: &961 title: Exemption response submitted event type: object properties: @@ -142324,12 +142428,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 - exemption_response: *941 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 + exemption_response: *942 sender: *4 required: - action @@ -142413,7 +142517,7 @@ x-webhooks: type: string enum: - completed - check_run: &943 + check_run: &944 title: CheckRun description: A check performed on the code of a given code change type: object @@ -142504,7 +142608,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *942 + deployment: *943 details_url: example: https://example.com type: string @@ -142589,10 +142693,10 @@ x-webhooks: - output - app - pull_requests - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 sender: *4 required: - check_run @@ -142983,11 +143087,11 @@ x-webhooks: type: string enum: - created - check_run: *943 - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + check_run: *944 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 sender: *4 required: - check_run @@ -143381,11 +143485,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *943 - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + check_run: *944 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 requested_action: description: The action requested by the user. type: object @@ -143788,11 +143892,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *943 - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + check_run: *944 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 sender: *4 required: - check_run @@ -144762,10 +144866,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -145464,10 +145568,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -146160,10 +146264,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -146329,7 +146433,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -146474,20 +146578,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &944 + commit_oid: &945 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: *935 - installation: *936 - organization: *937 - ref: &945 + enterprise: *936 + installation: *937 + organization: *938 + ref: &946 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: *938 + repository: *939 sender: *4 required: - action @@ -146652,7 +146756,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -146882,12 +146986,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -146982,7 +147086,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -147153,12 +147257,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -147324,7 +147428,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -147490,12 +147594,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -147594,7 +147698,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -147769,16 +147873,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *938 + repository: *939 sender: *4 required: - action @@ -147875,7 +147979,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -148015,12 +148119,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -148186,7 +148290,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -148331,10 +148435,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -148589,10 +148693,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -148672,18 +148776,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *937 - pusher_type: &946 + organization: *938 + pusher_type: &947 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &947 + ref: &948 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -148693,7 +148797,7 @@ x-webhooks: enum: - tag - branch - repository: *938 + repository: *939 sender: *4 required: - ref @@ -148776,9 +148880,9 @@ x-webhooks: enum: - created definition: *165 - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -148863,9 +148967,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -148943,9 +149047,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *165 - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -149023,9 +149127,9 @@ x-webhooks: enum: - updated definition: *165 - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -149102,10 +149206,10 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - repository: *938 - organization: *937 + enterprise: *936 + installation: *937 + repository: *939 + organization: *938 sender: *4 new_property_values: type: array @@ -149190,18 +149294,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - pusher_type: *946 - ref: *947 + enterprise: *936 + installation: *937 + organization: *938 + pusher_type: *947 + ref: *948 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *938 + repository: *939 sender: *4 required: - ref @@ -149281,11 +149385,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149365,11 +149469,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149450,11 +149554,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149535,11 +149639,11 @@ x-webhooks: type: string enum: - created - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149618,11 +149722,11 @@ x-webhooks: type: string enum: - dismissed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149701,11 +149805,11 @@ x-webhooks: type: string enum: - fixed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149785,11 +149889,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149868,11 +149972,11 @@ x-webhooks: type: string enum: - reopened - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149949,9 +150053,9 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - key: &948 + enterprise: *936 + installation: *937 + key: &949 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -149987,8 +150091,8 @@ x-webhooks: - verified - created_at - read_only - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -150065,11 +150169,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - key: *948 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + key: *949 + organization: *938 + repository: *939 sender: *4 required: - action @@ -150625,12 +150729,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: &954 + workflow: &955 title: Workflow type: object nullable: true @@ -151371,15 +151475,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *949 - required: *950 + properties: *950 + required: *951 nullable: true pull_requests: type: array - items: *776 - repository: *938 - organization: *937 - installation: *936 + items: *777 + repository: *939 + organization: *938 + installation: *937 sender: *4 responses: '200': @@ -151450,7 +151554,7 @@ x-webhooks: type: string enum: - approved - approver: &951 + approver: &952 type: object properties: avatar_url: @@ -151493,11 +151597,11 @@ x-webhooks: type: string comment: type: string - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - reviewers: &952 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + reviewers: &953 type: array items: type: object @@ -151576,7 +151680,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &953 + workflow_job_run: &954 type: object properties: conclusion: @@ -152307,18 +152411,18 @@ x-webhooks: type: string enum: - rejected - approver: *951 + approver: *952 comment: type: string - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - reviewers: *952 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + reviewers: *953 sender: *4 since: type: string - workflow_job_run: *953 + workflow_job_run: *954 workflow_job_runs: type: array items: @@ -153022,13 +153126,13 @@ x-webhooks: type: string enum: - requested - enterprise: *935 + enterprise: *936 environment: type: string - installation: *936 - organization: *937 - repository: *938 - requestor: &964 + installation: *937 + organization: *938 + repository: *939 + requestor: &965 title: User type: object nullable: true @@ -154917,12 +155021,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Deployment Workflow Run type: object @@ -155602,7 +155706,7 @@ x-webhooks: type: string enum: - answered - answer: &957 + answer: &958 type: object properties: author_association: @@ -155759,11 +155863,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -155890,11 +155994,11 @@ x-webhooks: - from required: - category - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -155977,11 +156081,11 @@ x-webhooks: type: string enum: - closed - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156063,7 +156167,7 @@ x-webhooks: type: string enum: - created - comment: &956 + comment: &957 type: object properties: author_association: @@ -156220,11 +156324,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156307,12 +156411,12 @@ x-webhooks: type: string enum: - deleted - comment: *956 - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + comment: *957 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156407,12 +156511,12 @@ x-webhooks: - from required: - body - comment: *956 - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + comment: *957 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156496,11 +156600,11 @@ x-webhooks: type: string enum: - created - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156582,11 +156686,11 @@ x-webhooks: type: string enum: - deleted - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156686,11 +156790,11 @@ x-webhooks: type: string required: - from - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156772,10 +156876,10 @@ x-webhooks: type: string enum: - labeled - discussion: *955 - enterprise: *935 - installation: *936 - label: &958 + discussion: *956 + enterprise: *936 + installation: *937 + label: &959 title: Label type: object properties: @@ -156807,8 +156911,8 @@ x-webhooks: - color - default - description - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156891,11 +156995,11 @@ x-webhooks: type: string enum: - locked - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156977,11 +157081,11 @@ x-webhooks: type: string enum: - pinned - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157063,11 +157167,11 @@ x-webhooks: type: string enum: - reopened - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157152,16 +157256,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *955 - new_repository: *938 + new_discussion: *956 + new_repository: *939 required: - new_discussion - new_repository - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157244,10 +157348,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *955 - old_answer: *957 - organization: *937 - repository: *938 + discussion: *956 + old_answer: *958 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157329,12 +157433,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *955 - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157417,11 +157521,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157503,11 +157607,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157576,7 +157680,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157639,7 +157743,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157702,7 +157806,7 @@ x-webhooks: required: true content: application/json: - schema: *961 + schema: *962 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157765,7 +157869,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157828,7 +157932,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157894,7 +157998,7 @@ x-webhooks: required: true content: application/json: - schema: *961 + schema: *962 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157960,7 +158064,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158026,7 +158130,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158092,7 +158196,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158158,7 +158262,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158223,7 +158327,7 @@ x-webhooks: required: true content: application/json: - schema: *961 + schema: *962 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158288,7 +158392,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158353,7 +158457,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158418,7 +158522,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158484,7 +158588,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158551,7 +158655,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *935 + enterprise: *936 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -159211,9 +159315,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - forkee @@ -159359,9 +159463,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pages: description: The pages that were updated. type: array @@ -159398,7 +159502,7 @@ x-webhooks: - action - sha - html_url - repository: *938 + repository: *939 sender: *4 required: - pages @@ -159474,10 +159578,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: &965 + organization: *938 + repositories: &966 description: An array of repository objects that the installation can access. type: array @@ -159503,8 +159607,8 @@ x-webhooks: - name - full_name - private - repository: *938 - requester: *964 + repository: *939 + requester: *965 sender: *4 required: - action @@ -159579,11 +159683,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -159659,11 +159763,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -159739,10 +159843,10 @@ x-webhooks: type: string enum: - added - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories_added: &966 + organization: *938 + repositories_added: &967 description: An array of repository objects, which were added to the installation. type: array @@ -159788,15 +159892,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *938 - repository_selection: &967 + repository: *939 + repository_selection: &968 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *964 + requester: *965 sender: *4 required: - action @@ -159875,10 +159979,10 @@ x-webhooks: type: string enum: - removed - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories_added: *966 + organization: *938 + repositories_added: *967 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -159905,9 +160009,9 @@ x-webhooks: - name - full_name - private - repository: *938 - repository_selection: *967 - requester: *964 + repository: *939 + repository_selection: *968 + requester: *965 sender: *4 required: - action @@ -159986,11 +160090,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -160169,10 +160273,10 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 target_type: type: string @@ -160251,11 +160355,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -160429,15 +160533,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *737 - required: *738 + properties: *738 + required: *739 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *739 - required: *740 + properties: *740 + required: *741 nullable: true user: title: User @@ -160522,8 +160626,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -161312,8 +161416,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -161329,7 +161433,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -161662,8 +161766,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -161743,7 +161847,7 @@ x-webhooks: type: string enum: - deleted - comment: &968 + comment: &969 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -161900,15 +162004,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *737 - required: *738 + properties: *738 + required: *739 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *739 - required: *740 + properties: *740 + required: *741 nullable: true required: - url @@ -161923,8 +162027,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -162709,8 +162813,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162726,7 +162830,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -163061,8 +163165,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -163142,7 +163246,7 @@ x-webhooks: type: string enum: - edited - changes: &997 + changes: &998 description: The changes to the comment. type: object properties: @@ -163154,9 +163258,9 @@ x-webhooks: type: string required: - from - comment: *968 - enterprise: *935 - installation: *936 + comment: *969 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -163944,8 +164048,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163961,7 +164065,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -164294,8 +164398,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -164376,9 +164480,9 @@ x-webhooks: type: string enum: - pinned - comment: *968 - enterprise: *935 - installation: *936 + comment: *969 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -165168,8 +165272,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165185,7 +165289,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -165520,8 +165624,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -165601,9 +165705,9 @@ x-webhooks: type: string enum: - unpinned - comment: *968 - enterprise: *935 - installation: *936 + comment: *969 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -166393,8 +166497,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166410,7 +166514,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -166745,8 +166849,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -166835,9 +166939,9 @@ x-webhooks: type: number blocking_issue: *235 blocking_issue_repo: *81 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -166926,9 +167030,9 @@ x-webhooks: type: number blocking_issue: *235 blocking_issue_repo: *81 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -167016,9 +167120,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -167107,9 +167211,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -167189,10 +167293,10 @@ x-webhooks: type: string enum: - assigned - assignee: *964 - enterprise: *935 - installation: *936 - issue: &969 + assignee: *965 + enterprise: *936 + installation: *937 + issue: &970 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -167984,11 +168088,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168004,7 +168108,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -168105,8 +168209,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -168186,8 +168290,8 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -168984,11 +169088,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169004,7 +169108,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -169240,8 +169344,8 @@ x-webhooks: required: - state - closed_at - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -169320,8 +169424,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170109,11 +170213,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170129,7 +170233,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -170229,8 +170333,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -170309,8 +170413,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171120,11 +171224,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171140,7 +171244,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -171219,7 +171323,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &970 + milestone: &971 title: Milestone description: A collection of related issues and pull requests. type: object @@ -171357,8 +171461,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -171457,8 +171561,8 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172250,11 +172354,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172267,7 +172371,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *404 + type: *405 title: description: Title of the issue type: string @@ -172371,9 +172475,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *958 - organization: *937 - repository: *938 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -172453,9 +172557,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *935 - installation: *936 - issue: *969 + enterprise: *936 + installation: *937 + issue: *970 issue_field: type: object description: The issue field whose value was set or updated on the @@ -172609,8 +172713,8 @@ x-webhooks: - id required: - from - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -172690,9 +172794,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *935 - installation: *936 - issue: *969 + enterprise: *936 + installation: *937 + issue: *970 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -172773,8 +172877,8 @@ x-webhooks: nullable: true required: - id - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -172854,8 +172958,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173646,11 +173750,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173663,7 +173767,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *404 + type: *405 title: description: Title of the issue type: string @@ -173767,9 +173871,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *958 - organization: *937 - repository: *938 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -173849,8 +173953,8 @@ x-webhooks: type: string enum: - locked - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174665,11 +174769,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174682,7 +174786,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *404 + type: *405 title: description: Title of the issue type: string @@ -174763,8 +174867,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -174843,8 +174947,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175653,11 +175757,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175673,7 +175777,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -175751,9 +175855,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *970 - organization: *937 - repository: *938 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -176616,11 +176720,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176721,7 +176825,7 @@ x-webhooks: required: - login - id - type: *404 + type: *405 required: - id - number @@ -177201,8 +177305,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -177986,11 +178090,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -178006,7 +178110,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -178114,8 +178218,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -178195,9 +178299,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *935 - installation: *936 - issue: &971 + enterprise: *936 + installation: *937 + issue: &972 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -178983,11 +179087,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -179003,7 +179107,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -179103,8 +179207,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -179183,8 +179287,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -179997,11 +180101,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -180095,9 +180199,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *404 - organization: *937 - repository: *938 + type: *405 + organization: *938 + repository: *939 sender: *4 required: - action @@ -180966,11 +181070,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -180986,7 +181090,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -181565,11 +181669,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *935 - installation: *936 - issue: *971 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *972 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181649,12 +181753,12 @@ x-webhooks: type: string enum: - typed - enterprise: *935 - installation: *936 - issue: *969 - type: *404 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + type: *405 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181735,7 +181839,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &1000 + assignee: &1001 title: User type: object nullable: true @@ -181805,11 +181909,11 @@ x-webhooks: required: - login - id - enterprise: *935 - installation: *936 - issue: *969 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181888,12 +181992,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *935 - installation: *936 - issue: *969 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181973,8 +182077,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -182787,11 +182891,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -182807,7 +182911,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -182885,8 +182989,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -182966,11 +183070,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *935 - installation: *936 - issue: *971 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *972 + organization: *938 + repository: *939 sender: *4 required: - action @@ -183049,12 +183153,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *935 - installation: *936 - issue: *969 - type: *404 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + type: *405 + organization: *938 + repository: *939 sender: *4 required: - action @@ -183134,11 +183238,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -183216,11 +183320,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -183330,11 +183434,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -183416,9 +183520,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: &972 + enterprise: *936 + installation: *937 + marketplace_purchase: &973 title: Marketplace Purchase type: object required: @@ -183501,8 +183605,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *937 - previous_marketplace_purchase: &973 + organization: *938 + previous_marketplace_purchase: &974 title: Marketplace Purchase type: object properties: @@ -183582,7 +183686,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *938 + repository: *939 sender: *4 required: - action @@ -183662,10 +183766,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: *972 - organization: *937 + enterprise: *936 + installation: *937 + marketplace_purchase: *973 + organization: *938 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -183748,7 +183852,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *938 + repository: *939 sender: *4 required: - action @@ -183830,10 +183934,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: *972 - organization: *937 + enterprise: *936 + installation: *937 + marketplace_purchase: *973 + organization: *938 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -183915,7 +184019,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *938 + repository: *939 sender: *4 required: - action @@ -183996,8 +184100,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 marketplace_purchase: title: Marketplace Purchase type: object @@ -184079,9 +184183,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *937 - previous_marketplace_purchase: *973 - repository: *938 + organization: *938 + previous_marketplace_purchase: *974 + repository: *939 sender: *4 required: - action @@ -184161,12 +184265,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: *972 - organization: *937 - previous_marketplace_purchase: *973 - repository: *938 + enterprise: *936 + installation: *937 + marketplace_purchase: *973 + organization: *938 + previous_marketplace_purchase: *974 + repository: *939 sender: *4 required: - action @@ -184268,11 +184372,11 @@ x-webhooks: type: string required: - to - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 sender: *4 required: - action @@ -184372,11 +184476,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 sender: *4 required: - action @@ -184455,11 +184559,11 @@ x-webhooks: type: string enum: - removed - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 sender: *4 required: - action @@ -184537,11 +184641,11 @@ x-webhooks: type: string enum: - added - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 scope: description: The scope of the membership. Currently, can only be `team`. @@ -184617,7 +184721,7 @@ x-webhooks: required: - login - id - team: &974 + team: &975 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -184840,11 +184944,11 @@ x-webhooks: type: string enum: - removed - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 scope: description: The scope of the membership. Currently, can only be `team`. @@ -184921,7 +185025,7 @@ x-webhooks: required: - login - id - team: *974 + team: *975 required: - action - scope @@ -185003,8 +185107,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *936 - merge_group: &976 + installation: *937 + merge_group: &977 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -185023,15 +185127,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *975 + head_commit: *976 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185117,10 +185221,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *936 - merge_group: *976 - organization: *937 - repository: *938 + installation: *937 + merge_group: *977 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185193,7 +185297,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 + enterprise: *936 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -185302,16 +185406,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *936 - organization: *937 + installation: *937 + organization: *938 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -185392,11 +185496,11 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 - milestone: *970 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185475,9 +185579,9 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - milestone: &979 + enterprise: *936 + installation: *937 + milestone: &980 title: Milestone description: A collection of related issues and pull requests. type: object @@ -185614,8 +185718,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185694,11 +185798,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - milestone: *970 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185808,11 +185912,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - milestone: *970 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185892,11 +185996,11 @@ x-webhooks: type: string enum: - opened - enterprise: *935 - installation: *936 - milestone: *979 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *980 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185975,11 +186079,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *964 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + blocked_user: *965 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186058,11 +186162,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *964 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + blocked_user: *965 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186138,7 +186242,7 @@ x-webhooks: enum: - created definition: *160 - enterprise: *935 + enterprise: *936 sender: *4 required: - action @@ -186218,8 +186322,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 sender: *4 required: - action @@ -186292,8 +186396,8 @@ x-webhooks: enum: - updated definition: *160 - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 sender: *4 required: - action @@ -186365,9 +186469,9 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 new_property_values: type: array @@ -186455,9 +186559,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - membership: &980 + enterprise: *936 + installation: *937 + membership: &981 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -186564,8 +186668,8 @@ x-webhooks: - role - organization_url - user - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186643,11 +186747,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *935 - installation: *936 - membership: *980 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + membership: *981 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186726,8 +186830,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -186843,10 +186947,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 - user: *964 + user: *965 required: - action - invitation @@ -186924,11 +187028,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *935 - installation: *936 - membership: *980 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + membership: *981 + organization: *938 + repository: *939 sender: *4 required: - action @@ -187015,11 +187119,11 @@ x-webhooks: properties: from: type: string - enterprise: *935 - installation: *936 - membership: *980 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + membership: *981 + organization: *938 + repository: *939 sender: *4 required: - action @@ -187097,9 +187201,9 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 package: description: Information about the package. type: object @@ -187598,7 +187702,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &981 + items: &982 title: Ruby Gems metadata type: object properties: @@ -187693,7 +187797,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -187770,9 +187874,9 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 package: description: Information about the package. type: object @@ -188125,7 +188229,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *981 + items: *982 source_url: type: string format: uri @@ -188195,7 +188299,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -188371,12 +188475,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *935 + enterprise: *936 id: type: integer - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - id @@ -188453,7 +188557,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &982 + personal_access_token_request: &983 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -188599,10 +188703,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *935 - organization: *937 + enterprise: *936 + organization: *938 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188679,11 +188783,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *982 - enterprise: *935 - organization: *937 + personal_access_token_request: *983 + enterprise: *936 + organization: *938 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188759,11 +188863,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *982 - enterprise: *935 - organization: *937 + personal_access_token_request: *983 + enterprise: *936 + organization: *938 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188838,11 +188942,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *982 - organization: *937 - enterprise: *935 + personal_access_token_request: *983 + organization: *938 + enterprise: *936 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188947,7 +189051,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *983 + last_response: *984 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -188979,8 +189083,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 zen: description: Random string of GitHub zen. @@ -189225,10 +189329,10 @@ x-webhooks: - from required: - note - enterprise: *935 - installation: *936 - organization: *937 - project_card: &984 + enterprise: *936 + installation: *937 + organization: *938 + project_card: &985 title: Project Card type: object properties: @@ -189347,7 +189451,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *938 + repository: *939 sender: *4 required: - action @@ -189428,11 +189532,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - project_card: *984 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_card: *985 + repository: *939 sender: *4 required: - action @@ -189512,9 +189616,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 project_card: title: Project Card type: object @@ -189642,8 +189746,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -189737,11 +189841,11 @@ x-webhooks: - from required: - note - enterprise: *935 - installation: *936 - organization: *937 - project_card: *984 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_card: *985 + repository: *939 sender: *4 required: - action @@ -189835,9 +189939,9 @@ x-webhooks: - from required: - column_id - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 project_card: allOf: - title: Project Card @@ -190027,7 +190131,7 @@ x-webhooks: type: string required: - after_id - repository: *938 + repository: *939 sender: *4 required: - action @@ -190107,10 +190211,10 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 - organization: *937 - project: &986 + enterprise: *936 + installation: *937 + organization: *938 + project: &987 title: Project type: object properties: @@ -190234,7 +190338,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *938 + repository: *939 sender: *4 required: - action @@ -190314,10 +190418,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - project_column: &985 + enterprise: *936 + installation: *937 + organization: *938 + project_column: &986 title: Project Column type: object properties: @@ -190356,7 +190460,7 @@ x-webhooks: - name - created_at - updated_at - repository: *938 + repository: *939 sender: *4 required: - action @@ -190435,18 +190539,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - project_column: *985 + enterprise: *936 + installation: *937 + organization: *938 + project_column: *986 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -190536,11 +190640,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - project_column: *985 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_column: *986 + repository: *939 sender: *4 required: - action @@ -190620,11 +190724,11 @@ x-webhooks: type: string enum: - moved - enterprise: *935 - installation: *936 - organization: *937 - project_column: *985 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_column: *986 + repository: *939 sender: *4 required: - action @@ -190704,11 +190808,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - project: *986 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 + repository: *939 sender: *4 required: - action @@ -190788,18 +190892,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - project: *986 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -190901,11 +191005,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - project: *986 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 + repository: *939 sender: *4 required: - action @@ -190984,11 +191088,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *935 - installation: *936 - organization: *937 - project: *986 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 + repository: *939 sender: *4 required: - action @@ -191069,9 +191173,9 @@ x-webhooks: type: string enum: - closed - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -191152,9 +191256,9 @@ x-webhooks: type: string enum: - created - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -191235,9 +191339,9 @@ x-webhooks: type: string enum: - deleted - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -191354,9 +191458,9 @@ x-webhooks: type: string to: type: string - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -191439,7 +191543,7 @@ x-webhooks: type: string enum: - archived - changes: &990 + changes: &991 type: object properties: archived_at: @@ -191453,9 +191557,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *936 - organization: *937 - projects_v2_item: &987 + installation: *937 + organization: *938 + projects_v2_item: &988 title: Projects v2 Item description: An item belonging to a project type: object @@ -191473,7 +191577,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *443 + content_type: *444 creator: *4 created_at: type: string @@ -191590,9 +191694,9 @@ x-webhooks: nullable: true to: type: string - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191674,9 +191778,9 @@ x-webhooks: type: string enum: - created - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191757,9 +191861,9 @@ x-webhooks: type: string enum: - deleted - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191865,7 +191969,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &988 + - &989 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -191887,7 +191991,7 @@ x-webhooks: required: - id - name - - &989 + - &990 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -191921,8 +192025,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *988 - *989 + - *990 required: - field_value - type: object @@ -191938,9 +192042,9 @@ x-webhooks: nullable: true required: - body - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -192035,9 +192139,9 @@ x-webhooks: to: type: string nullable: true - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -192120,10 +192224,10 @@ x-webhooks: type: string enum: - restored - changes: *990 - installation: *936 - organization: *937 - projects_v2_item: *987 + changes: *991 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -192205,9 +192309,9 @@ x-webhooks: type: string enum: - reopened - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -192288,14 +192392,14 @@ x-webhooks: type: string enum: - created - installation: *936 - organization: *937 - projects_v2_status_update: &993 + installation: *937 + organization: *938 + projects_v2_status_update: &994 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *991 - required: *992 + properties: *992 + required: *993 sender: *4 required: - action @@ -192376,9 +192480,9 @@ x-webhooks: type: string enum: - deleted - installation: *936 - organization: *937 - projects_v2_status_update: *993 + installation: *937 + organization: *938 + projects_v2_status_update: *994 sender: *4 required: - action @@ -192514,9 +192618,9 @@ x-webhooks: type: string format: date nullable: true - installation: *936 - organization: *937 - projects_v2_status_update: *993 + installation: *937 + organization: *938 + projects_v2_status_update: *994 sender: *4 required: - action @@ -192587,10 +192691,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - repository @@ -192667,13 +192771,13 @@ x-webhooks: type: string enum: - assigned - assignee: *964 - enterprise: *935 - installation: *936 - number: &994 + assignee: *965 + enterprise: *936 + installation: *937 + number: &995 description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -194852,7 +194956,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -194979,7 +195083,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -195061,11 +195165,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -197237,7 +197341,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -197366,7 +197470,7 @@ x-webhooks: - draft reason: type: string - repository: *938 + repository: *939 sender: *4 required: - action @@ -197448,11 +197552,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -199624,7 +199728,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -199753,7 +199857,7 @@ x-webhooks: - draft reason: type: string - repository: *938 + repository: *939 sender: *4 required: - action @@ -199835,13 +199939,13 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: &995 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: &996 allOf: - - *776 + - *777 - type: object properties: allow_auto_merge: @@ -199903,7 +200007,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *938 + repository: *939 sender: *4 required: - action @@ -199984,12 +200088,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -200069,11 +200173,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *935 - milestone: *757 - number: *994 - organization: *937 - pull_request: &996 + enterprise: *936 + milestone: *758 + number: *995 + organization: *938 + pull_request: &997 title: Pull Request type: object properties: @@ -202232,7 +202336,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -202359,7 +202463,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -202438,11 +202542,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -204605,7 +204709,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -204747,7 +204851,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *938 + repository: *939 sender: *4 required: - action @@ -204871,12 +204975,12 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -204956,11 +205060,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -207123,7 +207227,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -207250,7 +207354,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -207330,11 +207434,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *935 - installation: *936 - label: *958 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + label: *959 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -209512,7 +209616,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -209639,7 +209743,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -209720,10 +209824,10 @@ x-webhooks: type: string enum: - locked - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -211899,7 +212003,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -212026,7 +212130,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -212106,12 +212210,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *935 - milestone: *757 - number: *994 - organization: *937 - pull_request: *996 - repository: *938 + enterprise: *936 + milestone: *758 + number: *995 + organization: *938 + pull_request: *997 + repository: *939 sender: *4 required: - action @@ -212190,12 +212294,12 @@ x-webhooks: type: string enum: - opened - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -212276,12 +212380,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -212361,12 +212465,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -212732,9 +212836,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: type: object properties: @@ -214805,7 +214909,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -214927,7 +215031,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *938 + repository: *939 sender: *4 required: - action @@ -215007,7 +215111,7 @@ x-webhooks: type: string enum: - deleted - comment: &998 + comment: &999 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -215292,9 +215396,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: type: object properties: @@ -217353,7 +217457,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -217475,7 +217579,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *938 + repository: *939 sender: *4 required: - action @@ -217555,11 +217659,11 @@ x-webhooks: type: string enum: - edited - changes: *997 - comment: *998 - enterprise: *935 - installation: *936 - organization: *937 + changes: *998 + comment: *999 + enterprise: *936 + installation: *937 + organization: *938 pull_request: type: object properties: @@ -219621,7 +219725,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -219743,7 +219847,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *938 + repository: *939 sender: *4 required: - action @@ -219824,9 +219928,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -221898,7 +222002,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -222022,7 +222126,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 + repository: *939 review: description: The review that was affected. type: object @@ -222269,9 +222373,9 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -224325,8 +224429,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 - review: &999 + repository: *939 + review: &1000 description: The review that was affected. type: object properties: @@ -224559,12 +224663,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -226743,7 +226847,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -226870,7 +226974,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_reviewer: title: User type: object @@ -226954,12 +227058,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -229145,7 +229249,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -229272,7 +229376,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_team: title: Team description: Groups of organization members that gives permissions @@ -229464,12 +229568,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -231649,7 +231753,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -231777,7 +231881,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_reviewer: title: User type: object @@ -231862,12 +231966,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -234038,7 +234142,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -234166,7 +234270,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_team: title: Team description: Groups of organization members that gives permissions @@ -234347,9 +234451,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -236423,7 +236527,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -236547,8 +236651,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 - review: *999 + repository: *939 + review: *1000 sender: *4 required: - action @@ -236628,9 +236732,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -238599,7 +238703,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -238723,7 +238827,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 + repository: *939 sender: *4 thread: type: object @@ -239110,9 +239214,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -241068,7 +241172,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -241191,7 +241295,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 + repository: *939 sender: *4 thread: type: object @@ -241575,11 +241679,11 @@ x-webhooks: type: string enum: - stacked - enterprise: *935 - installation: *936 - stack: *773 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + stack: *774 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -243757,7 +243861,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -243884,7 +243988,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -243970,10 +244074,10 @@ x-webhooks: type: string before: type: string - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -246140,7 +246244,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -246267,7 +246371,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -246349,11 +246453,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *1000 - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + assignee: *1001 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -248532,7 +248636,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -248659,7 +248763,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -248738,11 +248842,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *935 - installation: *936 - label: *958 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + label: *959 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -250911,7 +251015,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -251038,7 +251142,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -251119,10 +251223,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -253284,7 +253388,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -253410,7 +253514,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -253610,7 +253714,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *935 + enterprise: *936 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -253702,8 +253806,8 @@ x-webhooks: - url - author - committer - installation: *936 - organization: *937 + installation: *937 + organization: *938 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -254289,9 +254393,9 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 registry_package: type: object properties: @@ -254737,7 +254841,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *981 + items: *982 summary: type: string tag_name: @@ -254791,7 +254895,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -254869,9 +254973,9 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 registry_package: type: object properties: @@ -255179,7 +255283,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *981 + items: *982 summary: type: string tag_name: @@ -255228,7 +255332,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -255305,10 +255409,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - release: &1001 + enterprise: *936 + installation: *937 + organization: *938 + release: &1002 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -255626,7 +255730,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *938 + repository: *939 sender: *4 required: - action @@ -255703,11 +255807,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - release: *1001 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1002 + repository: *939 sender: *4 required: - action @@ -255824,11 +255928,11 @@ x-webhooks: type: boolean required: - to - enterprise: *935 - installation: *936 - organization: *937 - release: *1001 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1002 + repository: *939 sender: *4 required: - action @@ -255906,9 +256010,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -256230,7 +256334,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *938 + repository: *939 sender: *4 required: - action @@ -256306,10 +256410,10 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 - release: &1002 + enterprise: *936 + installation: *937 + organization: *938 + release: &1003 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -256628,7 +256732,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *938 + repository: *939 sender: *4 required: - action @@ -256704,11 +256808,11 @@ x-webhooks: type: string enum: - released - enterprise: *935 - installation: *936 - organization: *937 - release: *1001 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1002 + repository: *939 sender: *4 required: - action @@ -256784,11 +256888,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *935 - installation: *936 - organization: *937 - release: *1002 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1003 + repository: *939 sender: *4 required: - action @@ -256864,11 +256968,11 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - repository_advisory: *831 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + repository_advisory: *832 sender: *4 required: - action @@ -256944,11 +257048,11 @@ x-webhooks: type: string enum: - reported - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - repository_advisory: *831 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + repository_advisory: *832 sender: *4 required: - action @@ -257024,10 +257128,10 @@ x-webhooks: type: string enum: - archived - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257104,10 +257208,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257185,10 +257289,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257272,10 +257376,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257387,10 +257491,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257462,10 +257566,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 status: type: string @@ -257546,10 +257650,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257626,10 +257730,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257723,10 +257827,10 @@ x-webhooks: - name required: - repository - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257806,10 +257910,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 repository_ruleset: *199 sender: *4 required: @@ -257888,10 +257992,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 repository_ruleset: *199 sender: *4 required: @@ -257970,10 +258074,10 @@ x-webhooks: type: string enum: - edited - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 repository_ruleset: *199 changes: type: object @@ -258035,16 +258139,16 @@ x-webhooks: properties: added: type: array - items: *798 + items: *799 deleted: type: array - items: *798 + items: *799 updated: type: array items: type: object properties: - rule: *798 + rule: *799 changes: type: object properties: @@ -258278,10 +258382,10 @@ x-webhooks: - from required: - owner - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258359,10 +258463,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258440,7 +258544,7 @@ x-webhooks: type: string enum: - create - alert: &1003 + alert: &1004 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -258562,10 +258666,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258771,10 +258875,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258852,11 +258956,11 @@ x-webhooks: type: string enum: - reopen - alert: *1003 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1004 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259055,10 +259159,10 @@ x-webhooks: enum: - fixed - open - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259136,7 +259240,7 @@ x-webhooks: type: string enum: - assigned - alert: &1005 + alert: &1006 type: object properties: number: *136 @@ -259286,12 +259390,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *1004 + metadata: *1005 assignee: *4 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259369,11 +259473,11 @@ x-webhooks: type: string enum: - created - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259454,11 +259558,11 @@ x-webhooks: type: string enum: - created - alert: *1005 - installation: *936 - location: *1006 - organization: *937 - repository: *938 + alert: *1006 + installation: *937 + location: *1007 + organization: *938 + repository: *939 sender: *4 required: - location @@ -259696,11 +259800,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259777,11 +259881,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259858,11 +259962,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259940,11 +260044,11 @@ x-webhooks: type: string enum: - reopened - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -260022,11 +260126,11 @@ x-webhooks: type: string enum: - resolved - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -260104,12 +260208,12 @@ x-webhooks: type: string enum: - unassigned - alert: *1005 + alert: *1006 assignee: *4 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -260187,11 +260291,11 @@ x-webhooks: type: string enum: - validated - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -260317,10 +260421,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *938 - enterprise: *935 - installation: *936 - organization: *937 + repository: *939 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -260398,11 +260502,11 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - security_advisory: &1007 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + security_advisory: &1008 description: The details of the security advisory, including summary, description, and severity. type: object @@ -260585,11 +260689,11 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - security_advisory: *1007 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + security_advisory: *1008 sender: *4 required: - action @@ -260662,10 +260766,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -260849,11 +260953,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *453 - enterprise: *935 - installation: *936 - organization: *937 - repository: *515 + security_and_analysis: *454 + enterprise: *936 + installation: *937 + organization: *938 + repository: *516 sender: *4 required: - changes @@ -260931,12 +261035,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: &1008 + sponsorship: &1009 type: object properties: created_at: @@ -261237,12 +261341,12 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - sponsorship @@ -261330,12 +261434,12 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - changes @@ -261412,17 +261516,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &1009 + effective_date: &1010 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: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - sponsorship @@ -261496,7 +261600,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &1010 + changes: &1011 type: object properties: tier: @@ -261540,13 +261644,13 @@ x-webhooks: - from required: - tier - effective_date: *1009 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + effective_date: *1010 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - changes @@ -261623,13 +261727,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *1010 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + changes: *1011 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - changes @@ -261703,10 +261807,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -261789,10 +261893,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -262212,15 +262316,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *935 + enterprise: *936 id: description: The unique identifier of the status. type: integer - installation: *936 + installation: *937 name: type: string - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 sha: description: The Commit SHA. @@ -262335,9 +262439,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -262426,9 +262530,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -262517,9 +262621,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -262608,9 +262712,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -262686,12 +262790,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - team: &1011 + team: &1012 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -262914,9 +263018,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -263374,7 +263478,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -263450,9 +263554,9 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -263910,7 +264014,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -263987,9 +264091,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -264447,7 +264551,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -264591,9 +264695,9 @@ x-webhooks: - from required: - permissions - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -265051,7 +265155,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - changes @@ -265129,9 +265233,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -265589,7 +265693,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -265665,10 +265769,10 @@ x-webhooks: type: string enum: - started - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -265741,16 +265845,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *935 + enterprise: *936 inputs: type: object nullable: true additionalProperties: true - installation: *936 - organization: *937 + installation: *937 + organization: *938 ref: type: string - repository: *938 + repository: *939 sender: *4 workflow: type: string @@ -265832,10 +265936,10 @@ x-webhooks: type: string enum: - completed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: allOf: @@ -266072,7 +266176,7 @@ x-webhooks: type: string required: - conclusion - deployment: *658 + deployment: *659 required: - action - repository @@ -266151,10 +266255,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: allOf: @@ -266414,7 +266518,7 @@ x-webhooks: required: - status - steps - deployment: *658 + deployment: *659 required: - action - repository @@ -266493,10 +266597,10 @@ x-webhooks: type: string enum: - queued - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: type: object @@ -266631,7 +266735,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *658 + deployment: *659 required: - action - repository @@ -266710,10 +266814,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: type: object @@ -266849,7 +266953,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *658 + deployment: *659 required: - action - repository @@ -266929,12 +267033,12 @@ x-webhooks: type: string enum: - completed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Workflow Run type: object @@ -267933,12 +268037,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Workflow Run type: object @@ -268922,12 +269026,12 @@ x-webhooks: type: string enum: - requested - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json index ce3a14d2fe..02dcad502b 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.json @@ -50498,6 +50498,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -51828,7 +51836,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -52053,7 +52062,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -75366,7 +75376,7 @@ "/enterprises/{enterprise}/settings/billing/budgets": { "get": { "summary": "Get all budgets", - "description": "Gets all budgets for an enterprise. The authenticated user must be an enterprise admin or billing manager.\nEach page returns up to 100 budgets.", + "description": "Gets all budgets for an enterprise. The authenticated actor must have permission to view enterprise billing.\nEach page returns up to 100 budgets.", "tags": [ "billing" ], @@ -75498,6 +75508,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -75742,7 +75756,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "budgets" } @@ -180177,6 +180191,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -181507,7 +181529,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -181732,7 +181755,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -256155,6 +256179,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -409777,6 +409852,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -410687,7 +410770,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -410845,7 +410929,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -412009,7 +412094,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -413189,7 +413275,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -758435,6 +758522,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ diff --git a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml index 738decd7e5..19c9f7af5d 100644 --- a/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.2026-03-10.deref.yaml @@ -844,7 +844,7 @@ paths: - subscriptions_url - type - url - type: &493 + type: &494 type: string description: The type of credit the user is receiving. enum: @@ -1009,7 +1009,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &833 + - &834 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4229,7 +4229,7 @@ paths: schema: type: integer default: 30 - - &377 + - &378 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 @@ -4238,7 +4238,7 @@ paths: required: false schema: type: string - - &378 + - &379 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4258,7 +4258,7 @@ paths: application/json: schema: type: array - items: &379 + items: &380 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4338,7 +4338,7 @@ paths: - installation_id - repository_id examples: - default: &380 + default: &381 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4370,7 +4370,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &843 + schema: &844 title: Scim Error description: Scim Error type: object @@ -4466,7 +4466,7 @@ paths: description: Response content: application/json: - schema: &381 + schema: &382 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4580,7 +4580,7 @@ paths: - request - response examples: - default: &382 + default: &383 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5592,7 +5592,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &451 + properties: &452 id: description: Unique identifier of the repository example: 42 @@ -6028,7 +6028,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &452 + required: &453 - archive_url - assignees_url - blobs_url @@ -11785,7 +11785,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &844 + '401': &845 description: Authorization failure '404': *6 x-github: @@ -16067,7 +16067,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &585 + instances_url: &586 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -16102,7 +16102,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &586 + dismissed_reason: &587 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -16111,13 +16111,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &587 + dismissed_comment: &588 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &588 + rule: &589 type: object properties: id: @@ -16170,7 +16170,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &589 + tool: &590 type: object properties: name: *114 @@ -16180,26 +16180,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *115 - most_recent_instance: &590 + most_recent_instance: &591 type: object properties: - ref: &583 + ref: &584 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &601 + analysis_key: &602 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: &602 + environment: &603 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: &603 + category: &604 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16219,7 +16219,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: &604 + location: &605 type: object description: Describe a region within a file for the alert. properties: @@ -16240,7 +16240,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: &605 + items: &606 type: string description: A classification of the file. For example to identify it as generated. @@ -18599,7 +18599,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &417 + properties: &418 id: description: Unique identifier of the team type: integer @@ -18671,7 +18671,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &418 + required: &419 - id - node_id - url @@ -20854,7 +20854,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 - - &647 + - &648 name: has in: query description: |- @@ -20888,6 +20888,16 @@ paths: - development - runtime - &362 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &363 name: sort in: query description: |- @@ -20913,7 +20923,7 @@ paths: application/json: schema: type: array - items: &363 + items: &364 type: object description: A Dependabot alert. properties: @@ -20977,7 +20987,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &648 + security_advisory: &649 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -21194,14 +21204,14 @@ paths: nullable: true maxLength: 280 fixed_at: *146 - auto_dismissed_at: &649 + auto_dismissed_at: &650 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &650 + dismissal_request: &651 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -21263,7 +21273,7 @@ paths: - repository additionalProperties: false examples: - default: &364 + default: &365 value: - number: 2 state: dismissed @@ -21273,6 +21283,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -21459,6 +21470,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -21648,7 +21660,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21674,7 +21686,7 @@ paths: nullable: true additionalProperties: false examples: - default: &366 + default: &367 value: default_level: public accessible_repositories: @@ -21896,7 +21908,7 @@ paths: - *106 - *107 - *108 - - &368 + - &369 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -21922,7 +21934,7 @@ paths: application/json: schema: type: array - items: &370 + items: &371 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -22043,7 +22055,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &371 + default: &372 value: - id: 21 number: 42 @@ -23122,7 +23134,7 @@ paths: application/json: schema: *22 examples: - default: &394 + default: &395 value: id: 1 account: @@ -23376,7 +23388,7 @@ paths: - name - created_on examples: - default: &498 + default: &499 value: total_count: 2 network_configurations: @@ -23627,7 +23639,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *42 - - &499 + - &500 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23639,7 +23651,7 @@ paths: description: Response content: application/json: - schema: &500 + schema: &501 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23673,7 +23685,7 @@ paths: - subnet_id - region examples: - default: &501 + default: &502 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24492,7 +24504,7 @@ paths: required: true content: application/json: - schema: &450 + schema: &451 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25723,7 +25735,7 @@ paths: nullable: true anyOf: - *170 - - &456 + - &457 title: Organization ruleset conditions type: object description: |- @@ -25770,7 +25782,7 @@ paths: - *173 rules: type: array - items: &798 + items: &799 title: Repository Rule type: object description: A repository rule. @@ -25779,7 +25791,7 @@ paths: - *179 - *180 - *181 - - &795 + - &796 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -25870,7 +25882,7 @@ paths: - *192 - *193 - *194 - - &796 + - &797 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -26119,7 +26131,7 @@ paths: type: string format: date-time examples: - default: &459 + default: &460 value: - version_id: 3 actor: @@ -26172,7 +26184,7 @@ paths: description: Response content: application/json: - schema: &460 + schema: &461 allOf: - *203 - type: object @@ -26227,7 +26239,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *42 - - &461 + - &462 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -26238,7 +26250,7 @@ paths: enum: - open - resolved - - &462 + - &463 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -26248,7 +26260,7 @@ paths: required: false schema: type: string - - &463 + - &464 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -26259,7 +26271,7 @@ paths: required: false schema: type: string - - &464 + - &465 name: exclude_providers in: query description: |- @@ -26270,7 +26282,7 @@ paths: required: false schema: type: string - - &465 + - &466 name: providers in: query description: |- @@ -26281,7 +26293,7 @@ paths: required: false schema: type: string - - &466 + - &467 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -26290,7 +26302,7 @@ paths: required: false schema: type: string - - &467 + - &468 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -26309,7 +26321,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &468 + - &469 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. @@ -26325,7 +26337,7 @@ paths: - *17 - *111 - *112 - - &469 + - &470 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -26334,7 +26346,7 @@ paths: required: false schema: type: string - - &470 + - &471 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -26343,7 +26355,7 @@ paths: schema: type: boolean default: false - - &471 + - &472 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -26352,7 +26364,7 @@ paths: schema: type: boolean default: false - - &472 + - &473 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -26361,7 +26373,7 @@ paths: schema: type: boolean default: false - - &473 + - &474 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -26372,7 +26384,7 @@ paths: required: false schema: type: boolean - - &474 + - &475 name: included_metadata in: query description: |- @@ -26383,7 +26395,7 @@ paths: required: false schema: type: string - - &475 + - &476 name: owner_email_hash in: query description: |- @@ -26402,7 +26414,7 @@ paths: application/json: schema: type: array - items: &476 + items: &477 type: object properties: number: *136 @@ -26421,14 +26433,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &811 + state: &812 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: &812 + resolution: &813 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -26545,8 +26557,8 @@ paths: pull request. ' - oneOf: &813 - - &815 + oneOf: &814 + - &816 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26604,7 +26616,7 @@ paths: - blob_url - commit_sha - commit_url - - &816 + - &817 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. @@ -26659,7 +26671,7 @@ paths: - page_url - commit_sha - commit_url - - &817 + - &818 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26679,7 +26691,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &818 + - &819 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26699,7 +26711,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &819 + - &820 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26719,7 +26731,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &820 + - &821 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26733,7 +26745,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &821 + - &822 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26747,7 +26759,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &822 + - &823 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -26761,7 +26773,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &823 + - &824 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. @@ -26781,7 +26793,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &824 + - &825 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. @@ -26801,7 +26813,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &825 + - &826 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. @@ -26821,7 +26833,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &826 + - &827 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. @@ -26841,7 +26853,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &827 + - &828 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -26889,7 +26901,7 @@ paths: required: *21 nullable: true examples: - default: &477 + default: &478 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -27093,7 +27105,7 @@ paths: subcategory: custom-patterns parameters: - *42 - - &478 + - &479 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -27104,7 +27116,7 @@ paths: enum: - published - unpublished - - &479 + - &480 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -27115,7 +27127,7 @@ paths: enum: - enabled - disabled - - &480 + - &481 name: sort description: The property to sort the results by. in: query @@ -27209,7 +27221,7 @@ paths: - state - push_protection_enabled examples: - default: &481 + default: &482 value: - id: 1 name: Example Custom Pattern @@ -27272,7 +27284,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &482 + items: &483 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -27309,7 +27321,7 @@ paths: items: type: string examples: - default: &483 + default: &484 value: patterns: - name: Example Custom Pattern @@ -27335,7 +27347,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: &484 + default: &485 value: created_patterns: - id: 1 @@ -27387,7 +27399,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &485 + items: &486 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -27441,7 +27453,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &486 + items: &487 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -27464,7 +27476,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &487 + default: &488 value: patterns: - pattern_id: 2 @@ -27510,7 +27522,7 @@ paths: required: true content: application/json: - schema: &488 + schema: &489 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -27551,7 +27563,7 @@ paths: type: string custom_pattern_version: *206 examples: - default: &489 + default: &490 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -27568,7 +27580,7 @@ paths: application/json: schema: *205 examples: - default: &490 + default: &491 value: id: 1 name: Example Custom Pattern @@ -27615,7 +27627,7 @@ paths: description: Response content: application/json: - schema: &491 + schema: &492 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -27693,7 +27705,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *208 examples: - default: &492 + default: &493 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -27829,7 +27841,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *42 - - &495 + - &496 name: advanced_security_product in: query description: | @@ -27849,7 +27861,7 @@ paths: description: Success content: application/json: - schema: &496 + schema: &497 type: object properties: total_advanced_security_committers: @@ -27904,7 +27916,7 @@ paths: required: - repositories examples: - default: &497 + default: &498 value: total_advanced_security_committers: 2 total_count: 2 @@ -28144,7 +28156,7 @@ paths: get: summary: Get all budgets description: |- - Gets all budgets for an enterprise. The authenticated user must be an enterprise admin or billing manager. + Gets all budgets for an enterprise. The authenticated actor must have permission to view enterprise billing. Each page returns up to 100 budgets. tags: - billing @@ -28252,6 +28264,10 @@ paths: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -28392,7 +28408,7 @@ paths: '403': *29 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: budgets post: @@ -31749,7 +31765,7 @@ paths: properties: action: type: string - discussion: &955 + discussion: &956 title: Discussion description: A Discussion in a repository. type: object @@ -32116,7 +32132,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &708 + properties: &709 id: type: integer format: int64 @@ -32222,7 +32238,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &439 + properties: &440 url: type: string format: uri @@ -32292,7 +32308,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &440 + required: &441 - closed_issues - creator - description @@ -32371,7 +32387,7 @@ paths: timeline_url: type: string format: uri - type: &404 + type: &405 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -32487,7 +32503,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &871 + sub_issues_summary: &872 title: Sub-issues Summary type: object properties: @@ -32574,7 +32590,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &737 + properties: &738 pinned_at: type: string format: date-time @@ -32586,7 +32602,7 @@ paths: properties: *20 required: *21 nullable: true - required: &738 + required: &739 - pinned_at - pinned_by nullable: true @@ -32595,13 +32611,13 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &739 + properties: &740 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &740 + required: &741 - reason nullable: true required: &237 @@ -32614,7 +32630,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &872 + issue_dependencies_summary: &873 title: Issue Dependencies Summary type: object properties: @@ -32633,7 +32649,7 @@ paths: - total_blocking issue_field_values: type: array - items: &719 + items: &720 title: Issue Field Value description: A value assigned to an issue field type: object @@ -32725,7 +32741,7 @@ paths: - node_id - data_type - value - required: &709 + required: &710 - closed_at - comments - comments_url @@ -32762,7 +32778,7 @@ paths: action: type: string issue: *235 - comment: &704 + comment: &705 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -33426,7 +33442,7 @@ paths: type: string release: allOf: - - &788 + - &789 title: Release description: A release. type: object @@ -33497,7 +33513,7 @@ paths: author: *4 assets: type: array - items: &789 + items: &790 title: Release Asset description: Data related to a release. type: object @@ -35727,7 +35743,7 @@ paths: - closed - all default: open - - &407 + - &408 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -35778,7 +35794,7 @@ paths: type: array items: *235 examples: - default: &408 + default: &409 value: - id: 1 node_id: MDU6SXNzdWUx @@ -37177,14 +37193,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &510 + - &511 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &511 + - &512 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -37246,7 +37262,7 @@ paths: '404': *6 '403': *29 '304': *38 - '301': &516 + '301': &517 description: Moved permanently content: application/json: @@ -37268,7 +37284,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &760 + - &761 name: all description: If `true`, show notifications marked as read. in: query @@ -37276,7 +37292,7 @@ paths: schema: type: boolean default: false - - &761 + - &762 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -37286,7 +37302,7 @@ paths: type: boolean default: false - *242 - - &762 + - &763 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: @@ -37322,7 +37338,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &372 + properties: &373 id: type: integer format: int64 @@ -37606,7 +37622,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &453 + security_and_analysis: &454 nullable: true type: object properties: @@ -37734,7 +37750,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &373 + required: &374 - archive_url - assignees_url - blobs_url @@ -37822,7 +37838,7 @@ paths: - url - subscription_url examples: - default: &763 + default: &764 value: - id: '1' repository: @@ -38594,7 +38610,7 @@ paths: type: array items: *164 examples: - default: &769 + default: &770 value: - property_name: environment value: production @@ -38644,7 +38660,7 @@ paths: required: - properties examples: - default: &770 + default: &771 value: properties: - property_name: environment @@ -39448,7 +39464,7 @@ paths: type: integer repository_cache_usages: type: array - items: &523 + items: &524 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -45700,12 +45716,12 @@ paths: required: - subject_digests examples: - default: &913 + default: &914 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &914 + withPredicateType: &915 value: subject_digests: - sha256:abc123 @@ -45749,7 +45765,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &915 + default: &916 value: attestations_subject_digests: - sha256:abc: @@ -46082,7 +46098,7 @@ paths: initiator: type: string examples: - default: &556 + default: &557 value: attestations: - repository_id: 1 @@ -46917,7 +46933,7 @@ paths: be returned. in: query required: false - schema: &584 + schema: &585 type: string description: Severity of a code scanning alert. enum: @@ -47983,7 +47999,7 @@ paths: type: integer codespaces: type: array - items: &409 + items: &410 type: object title: Codespace description: A codespace. @@ -48013,7 +48029,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &617 + properties: &618 name: type: string description: The name of the machine. @@ -48055,7 +48071,7 @@ paths: - ready - in_progress nullable: true - required: &618 + required: &619 - name - display_name - operating_system @@ -48260,7 +48276,7 @@ paths: - pulls_url - recent_folders examples: - default: &410 + default: &411 value: total_count: 3 codespaces: @@ -48923,7 +48939,7 @@ paths: - updated_at - visibility examples: - default: &619 + default: &620 value: total_count: 2 secrets: @@ -48961,7 +48977,7 @@ paths: description: Response content: application/json: - schema: &620 + schema: &621 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -48990,7 +49006,7 @@ paths: - key_id - key examples: - default: &621 + default: &622 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -49022,7 +49038,7 @@ paths: application/json: schema: *343 examples: - default: &623 + default: &624 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -52899,6 +52915,7 @@ paths: type: string - *361 - *362 + - *363 - *113 - *111 - *112 @@ -52910,9 +52927,9 @@ paths: application/json: schema: type: array - items: *363 + items: *364 examples: - default: *364 + default: *365 '304': *38 '400': *14 '403': *29 @@ -52961,9 +52978,9 @@ paths: description: Response content: application/json: - schema: *365 + schema: *366 examples: - default: *366 + default: *367 '403': *29 '404': *6 x-github: @@ -53126,7 +53143,7 @@ paths: type: integer secrets: type: array - items: &367 + items: &368 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -53203,7 +53220,7 @@ paths: description: Response content: application/json: - schema: &653 + schema: &654 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -53220,7 +53237,7 @@ paths: - key_id - key examples: - default: &654 + default: &655 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -53250,7 +53267,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *368 examples: default: value: @@ -53546,7 +53563,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *90 - - &663 + - &664 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -53554,7 +53571,7 @@ paths: required: false schema: type: string - - &664 + - &665 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -53562,7 +53579,7 @@ paths: required: false schema: type: string - - &665 + - &666 name: time_period description: |- The time period to filter by. @@ -53578,7 +53595,7 @@ paths: - week - month default: month - - &666 + - &667 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -53603,7 +53620,7 @@ paths: application/json: schema: type: array - items: &667 + items: &668 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -53709,7 +53726,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &369 + items: &370 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -53759,7 +53776,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &668 + default: &669 value: - id: 21 number: 42 @@ -53851,7 +53868,7 @@ paths: - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -53861,7 +53878,7 @@ paths: application/json: schema: type: array - items: &669 + items: &670 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -53967,7 +53984,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *369 + items: *370 url: type: string format: uri @@ -53978,7 +53995,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &670 + default: &671 value: - id: 21 number: 42 @@ -54070,7 +54087,7 @@ paths: - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -54080,9 +54097,9 @@ paths: application/json: schema: type: array - items: *370 + items: *371 examples: - default: *371 + default: *372 '404': *6 '403': *29 '500': *41 @@ -54108,7 +54125,7 @@ paths: application/json: schema: type: array - items: &420 + items: &421 title: Package description: A software package type: object @@ -54158,8 +54175,8 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *372 - required: *373 + properties: *373 + required: *374 nullable: true created_at: type: string @@ -54178,7 +54195,7 @@ paths: - created_at - updated_at examples: - default: &421 + default: &422 value: - id: 197 name: hello_docker @@ -54365,7 +54382,7 @@ paths: description: Response content: application/json: - schema: &507 + schema: &508 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -54446,7 +54463,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &508 + default: &509 value: group_id: '123' group_name: Octocat admins @@ -54501,7 +54518,7 @@ paths: description: Response content: application/json: - schema: &504 + schema: &505 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -54538,7 +54555,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &505 + default: &506 value: groups: - group_id: '123' @@ -54583,7 +54600,7 @@ paths: application/json: schema: type: array - items: &398 + items: &399 title: Organization Invitation description: Organization Invitation type: object @@ -54630,7 +54647,7 @@ paths: - invitation_teams_url - node_id examples: - default: &399 + default: &400 value: - id: 1 login: monalisa @@ -54697,7 +54714,7 @@ paths: application/json: schema: type: array - items: &454 + items: &455 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -54711,7 +54728,7 @@ paths: - name - description examples: - default: &455 + default: &456 value: - name: add_assignee description: Assign or remove a user @@ -54752,7 +54769,7 @@ paths: application/json: schema: type: array - items: &374 + items: &375 title: Org Hook description: Org Hook type: object @@ -54921,9 +54938,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: &375 + default: &376 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -54968,7 +54985,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *90 - - &376 + - &377 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. @@ -54981,9 +54998,9 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: - default: *375 + default: *376 '404': *6 x-github: githubCloudOnly: false @@ -55005,7 +55022,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *90 - - *376 + - *377 requestBody: required: false content: @@ -55050,7 +55067,7 @@ paths: description: Response content: application/json: - schema: *374 + schema: *375 examples: default: value: @@ -55090,7 +55107,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *90 - - *376 + - *377 responses: '204': description: Response @@ -55116,7 +55133,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *90 - - *376 + - *377 responses: '200': description: Response @@ -55145,7 +55162,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *90 - - *376 + - *377 requestBody: required: false content: @@ -55194,10 +55211,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *90 - - *376 - - *17 - *377 + - *17 - *378 + - *379 responses: '200': description: Response @@ -55205,9 +55222,9 @@ paths: application/json: schema: type: array - items: *379 + items: *380 examples: - default: *380 + default: *381 '400': *14 '422': *15 x-github: @@ -55231,16 +55248,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *90 - - *376 + - *377 - *16 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 '400': *14 '422': *15 x-github: @@ -55264,7 +55281,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *90 - - *376 + - *377 - *16 responses: '202': *40 @@ -55291,7 +55308,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *90 - - *376 + - *377 responses: '204': description: Response @@ -55316,7 +55333,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *90 - - &387 + - &388 name: actor_type in: path description: The type of the actor @@ -55329,14 +55346,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &388 + - &389 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &383 + - &384 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`.' @@ -55344,7 +55361,7 @@ paths: required: true schema: type: string - - &384 + - &385 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) @@ -55440,12 +55457,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *90 - - *383 - *384 + - *385 - *19 - *17 - *113 - - &393 + - &394 name: sort description: The property to sort the results by. in: query @@ -55525,14 +55542,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *90 - - *383 - *384 + - *385 responses: '200': description: Response content: application/json: - schema: &385 + schema: &386 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -55548,7 +55565,7 @@ paths: type: integer format: int64 examples: - default: &386 + default: &387 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -55571,23 +55588,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *90 - - &389 + - &390 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *383 - *384 + - *385 responses: '200': description: Response content: application/json: - schema: *385 + schema: *386 examples: - default: *386 + default: *387 x-github: enabledForGitHubApps: true category: orgs @@ -55607,18 +55624,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *90 - - *383 - *384 - - *387 + - *385 - *388 + - *389 responses: '200': description: Response content: application/json: - schema: *385 + schema: *386 examples: - default: *386 + default: *387 x-github: enabledForGitHubApps: true category: orgs @@ -55638,9 +55655,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *90 - - *383 - *384 - - &390 + - *385 + - &391 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -55653,7 +55670,7 @@ paths: description: Response content: application/json: - schema: &391 + schema: &392 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -55669,7 +55686,7 @@ paths: type: integer format: int64 examples: - default: &392 + default: &393 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -55708,18 +55725,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *90 - - *389 - - *383 - - *384 - *390 + - *384 + - *385 + - *391 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *392 + default: *393 x-github: enabledForGitHubApps: true category: orgs @@ -55739,19 +55756,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *90 - - *387 - *388 - - *383 + - *389 - *384 - - *390 + - *385 + - *391 responses: '200': description: Response content: application/json: - schema: *391 + schema: *392 examples: - default: *392 + default: *393 x-github: enabledForGitHubApps: true category: orgs @@ -55771,13 +55788,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *90 - - *389 - - *383 + - *390 - *384 + - *385 - *19 - *17 - *113 - - *393 + - *394 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -55858,7 +55875,7 @@ paths: application/json: schema: *22 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -55978,12 +55995,12 @@ paths: application/json: schema: anyOf: - - &396 + - &397 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &395 + limit: &396 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -56008,7 +56025,7 @@ paths: properties: {} additionalProperties: false examples: - default: &397 + default: &398 value: limit: collaborators_only origin: organization @@ -56037,13 +56054,13 @@ paths: required: true content: application/json: - schema: &699 + schema: &700 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *395 + limit: *396 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -56067,9 +56084,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: - default: *397 + default: *398 '422': *15 x-github: githubCloudOnly: false @@ -56281,9 +56298,9 @@ paths: application/json: schema: type: array - items: *398 + items: *399 examples: - default: *399 + default: *400 headers: Link: *48 '404': *6 @@ -56361,7 +56378,7 @@ paths: description: Response content: application/json: - schema: *398 + schema: *399 examples: default: value: @@ -56418,7 +56435,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *90 - - &400 + - &401 name: invitation_id description: The unique identifier of the invitation. in: path @@ -56452,7 +56469,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *90 - - *400 + - *401 - *17 - *19 responses: @@ -56464,7 +56481,7 @@ paths: type: array items: *329 examples: - default: &419 + default: &420 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -56507,7 +56524,7 @@ paths: application/json: schema: type: array - items: &401 + items: &402 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -56760,9 +56777,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: &402 + default: &403 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -56818,7 +56835,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *90 - - &403 + - &404 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -56926,9 +56943,9 @@ paths: description: Response content: application/json: - schema: *401 + schema: *402 examples: - default: *402 + default: *403 '404': *6 '422': *7 x-github: @@ -56953,7 +56970,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *90 - - *403 + - *404 responses: '204': *129 '404': *6 @@ -56983,9 +57000,9 @@ paths: application/json: schema: type: array - items: *404 + items: *405 examples: - default: &703 + default: &704 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -57068,9 +57085,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: - default: &405 + default: &406 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -57103,7 +57120,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *90 - - &406 + - &407 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -57156,9 +57173,9 @@ paths: description: Response content: application/json: - schema: *404 + schema: *405 examples: - default: *405 + default: *406 '404': *6 '422': *7 x-github: @@ -57183,7 +57200,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *90 - - *406 + - *407 responses: '204': description: Response @@ -57246,7 +57263,7 @@ paths: - closed - all default: open - - *407 + - *408 - name: type description: Can be the name of an issue type. in: query @@ -57277,7 +57294,7 @@ paths: type: array items: *235 examples: - default: *408 + default: *409 headers: Link: *48 '404': *6 @@ -57437,9 +57454,9 @@ paths: type: integer codespaces: type: array - items: *409 + items: *410 examples: - default: *410 + default: *411 '304': *38 '500': *41 '401': *25 @@ -57466,7 +57483,7 @@ paths: parameters: - *90 - *135 - - &411 + - &412 name: codespace_name in: path required: true @@ -57501,15 +57518,15 @@ paths: parameters: - *90 - *135 - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: &616 + default: &617 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -57765,7 +57782,7 @@ paths: description: Response content: application/json: - schema: &412 + schema: &413 title: Org Membership description: Org Membership type: object @@ -57832,7 +57849,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &413 + response-if-user-has-an-active-admin-membership-with-organization: &414 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -57933,9 +57950,9 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: - response-if-user-already-had-membership-with-organization: *413 + response-if-user-already-had-membership-with-organization: *414 '422': *15 '403': *29 '451': *15 @@ -58007,7 +58024,7 @@ paths: application/json: schema: type: array - items: &414 + items: &415 title: Migration description: A migration. type: object @@ -58336,7 +58353,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -58515,7 +58532,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *90 - - &415 + - &416 name: migration_id description: The unique identifier of the migration. in: path @@ -58542,7 +58559,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -58712,7 +58729,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *90 - - *415 + - *416 responses: '302': description: Response @@ -58734,7 +58751,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *90 - - *415 + - *416 responses: '204': description: Response @@ -58758,8 +58775,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *90 - - *415 - - &895 + - *416 + - &896 name: repo_name description: repo_name parameter in: path @@ -58787,7 +58804,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *90 - - *415 + - *416 - *17 - *19 responses: @@ -58897,7 +58914,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &416 + items: &417 title: Organization Role description: Organization roles type: object @@ -59104,7 +59121,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -59334,7 +59351,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -59431,7 +59448,7 @@ paths: description: Response content: application/json: - schema: *416 + schema: *417 examples: default: value: @@ -59589,8 +59606,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *417 - required: *418 + properties: *418 + required: *419 nullable: true type: description: The ownership type of the team @@ -59622,7 +59639,7 @@ paths: - type - parent examples: - default: *419 + default: *420 headers: Link: *48 '404': @@ -59680,13 +59697,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &494 + items: &495 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *417 - required: *418 + properties: *418 + required: *419 name: nullable: true type: string @@ -59974,7 +59991,7 @@ paths: - nuget - container - *90 - - &896 + - &897 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -60010,12 +60027,12 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *421 + default: *422 '403': *29 '401': *25 - '400': &898 + '400': &899 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -60037,7 +60054,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &422 + - &423 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 @@ -60055,7 +60072,7 @@ paths: - docker - nuget - container - - &423 + - &424 name: package_name description: The name of the package. in: path @@ -60068,7 +60085,7 @@ paths: description: Response content: application/json: - schema: *420 + schema: *421 examples: default: value: @@ -60120,8 +60137,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *422 - *423 + - *424 - *90 responses: '204': @@ -60154,8 +60171,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - name: token description: package token @@ -60188,8 +60205,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *422 - *423 + - *424 - *90 - *19 - *17 @@ -60210,7 +60227,7 @@ paths: application/json: schema: type: array - items: &424 + items: &425 title: Package Version description: A version of a software package type: object @@ -60335,10 +60352,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - - &425 + - &426 name: package_version_id description: Unique identifier of the package version. in: path @@ -60350,7 +60367,7 @@ paths: description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -60386,10 +60403,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - - *425 + - *426 responses: '204': description: Response @@ -60421,10 +60438,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *422 - *423 + - *424 - *90 - - *425 + - *426 responses: '204': description: Response @@ -60454,7 +60471,7 @@ paths: - *90 - *17 - *19 - - &426 + - &427 name: sort description: The property by which to sort the results. in: query @@ -60465,7 +60482,7 @@ paths: - created_at default: created_at - *113 - - &427 + - &428 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -60476,7 +60493,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &428 + - &429 name: repository description: The name of the repository to use to filter the results. in: query @@ -60484,7 +60501,7 @@ paths: schema: type: string example: Hello-World - - &429 + - &430 name: permission description: The permission to use to filter the results. in: query @@ -60492,7 +60509,7 @@ paths: schema: type: string example: issues_read - - &430 + - &431 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) @@ -60502,7 +60519,7 @@ paths: schema: type: string format: date-time - - &431 + - &432 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) @@ -60512,7 +60529,7 @@ paths: schema: type: string format: date-time - - &432 + - &433 name: token_id description: The ID of the token in: query @@ -60825,7 +60842,7 @@ paths: type: array items: *296 examples: - default: &433 + default: &434 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -60962,14 +60979,14 @@ paths: - *90 - *17 - *19 - - *426 - - *113 - *427 + - *113 - *428 - *429 - *430 - *431 - *432 + - *433 responses: '500': *41 '422': *15 @@ -61251,7 +61268,7 @@ paths: type: array items: *296 examples: - default: *433 + default: *434 headers: Link: *48 x-github: @@ -61293,7 +61310,7 @@ paths: type: integer configurations: type: array - items: &434 + items: &435 title: Organization private registry description: Private registry configuration for an organization type: object @@ -61804,7 +61821,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &435 + org-private-registry-with-selected-visibility: &436 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -61900,9 +61917,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *434 + schema: *435 examples: - default: *435 + default: *436 '404': *6 x-github: githubCloudOnly: false @@ -62153,7 +62170,7 @@ paths: application/json: schema: type: array - items: &436 + items: &437 title: Projects v2 Project description: A projects v2 project type: object @@ -62223,7 +62240,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &991 + properties: &992 id: type: number description: The unique identifier of the status update. @@ -62271,7 +62288,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &992 + required: &993 - id - node_id - created_at @@ -62296,7 +62313,7 @@ paths: - deleted_at - deleted_by examples: - default: &437 + default: &438 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -62399,7 +62416,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &438 + - &439 name: project_number description: The project's number. in: path @@ -62412,9 +62429,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 headers: Link: *48 '304': *38 @@ -62437,7 +62454,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *90 - - *438 + - *439 requestBody: required: true description: Details of the draft item to create in the project. @@ -62471,7 +62488,7 @@ paths: description: Response content: application/json: - schema: &444 + schema: &445 title: Projects v2 Item description: An item belonging to a project type: object @@ -62485,7 +62502,7 @@ paths: content: oneOf: - *235 - - &591 + - &592 title: Pull Request Simple description: Pull Request Simple type: object @@ -62591,8 +62608,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 nullable: true active_lock_reason: type: string @@ -62674,7 +62691,7 @@ paths: _links: type: object properties: - comments: &441 + comments: &442 title: Link description: Hypermedia Link type: object @@ -62683,13 +62700,13 @@ paths: type: string required: - href - commits: *441 - statuses: *441 - html: *441 - issue: *441 - review_comments: *441 - review_comment: *441 - self: *441 + commits: *442 + statuses: *442 + html: *442 + issue: *442 + review_comments: *442 + review_comment: *442 + self: *442 required: - comments - commits @@ -62700,7 +62717,7 @@ paths: - review_comment - self author_association: *232 - auto_merge: &772 + auto_merge: &773 title: Auto merge description: The status of auto merging a pull request. type: object @@ -62725,7 +62742,7 @@ paths: - commit_title - commit_message nullable: true - stack: &773 + stack: &774 title: Pull Request Stack description: The stack information associated with a pull request. @@ -62839,7 +62856,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &443 + content_type: &444 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -62879,7 +62896,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &445 + draft_issue: &446 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -62953,7 +62970,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *438 + - *439 - *90 - *17 - *111 @@ -62965,7 +62982,7 @@ paths: application/json: schema: type: array - items: &442 + items: &443 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -63115,7 +63132,7 @@ paths: - updated_at - project_url examples: - default: &919 + default: &920 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63245,7 +63262,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *438 + - *439 - *90 requestBody: required: true @@ -63292,7 +63309,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &920 + items: &921 type: object properties: name: @@ -63329,7 +63346,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &921 + iteration_configuration: &922 type: object description: The configuration for iteration fields. properties: @@ -63379,7 +63396,7 @@ paths: value: name: Due date data_type: date - single_select_field: &922 + single_select_field: &923 summary: Create a single select field value: name: Priority @@ -63406,7 +63423,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &923 + iteration_field: &924 summary: Create an iteration field value: name: Sprint @@ -63430,9 +63447,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *442 + schema: *443 examples: - text_field: &924 + text_field: &925 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -63441,7 +63458,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: &925 + number_field: &926 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -63450,7 +63467,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: &926 + date_field: &927 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -63459,7 +63476,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: &927 + single_select_field: &928 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63493,7 +63510,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &928 + iteration_field: &929 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -63538,8 +63555,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *438 - - &929 + - *439 + - &930 name: field_id description: The unique identifier of the field. in: path @@ -63552,9 +63569,9 @@ paths: description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: &930 + default: &931 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -63610,7 +63627,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *438 + - *439 - *90 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -63643,7 +63660,7 @@ paths: application/json: schema: type: array - items: &446 + items: &447 title: Projects v2 Item description: An item belonging to a project type: object @@ -63659,7 +63676,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *443 + content_type: *444 content: type: object additionalProperties: true @@ -63702,7 +63719,7 @@ paths: - updated_at - archived_at examples: - default: &447 + default: &448 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -64400,7 +64417,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *90 - - *438 + - *439 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -64470,22 +64487,22 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *445 + value: *446 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *445 + value: *446 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *445 + value: *446 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *445 + value: *446 '304': *38 '403': *29 '401': *25 @@ -64505,9 +64522,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *438 + - *439 - *90 - - &448 + - &449 name: item_id description: The unique identifier of the project item. in: path @@ -64533,9 +64550,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -64556,9 +64573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *438 + - *439 - *90 - - *448 + - *449 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -64628,13 +64645,13 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - text_field: *447 - number_field: *447 - date_field: *447 - single_select_field: *447 - iteration_field: *447 + text_field: *448 + number_field: *448 + date_field: *448 + single_select_field: *448 + iteration_field: *448 '401': *25 '403': *29 '404': *6 @@ -64654,9 +64671,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *438 + - *439 - *90 - - *448 + - *449 responses: '204': description: Response @@ -64680,7 +64697,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *90 - - *438 + - *439 requestBody: required: true content: @@ -64716,6 +64733,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -64751,7 +64809,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &910 + schema: &911 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -64849,7 +64907,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &449 + value: &450 value: id: 1 number: 1 @@ -64895,10 +64953,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *449 + value: *450 roadmap_view: summary: Response for creating a roadmap view - value: *449 + value: *450 '304': *38 '403': *29 '401': *25 @@ -64926,9 +64984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *438 + - *439 - *90 - - &931 + - &932 name: view_number description: The number that identifies the project view. in: path @@ -64960,9 +65018,9 @@ paths: application/json: schema: type: array - items: *446 + items: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -65126,7 +65184,7 @@ paths: required: true content: application/json: - schema: *450 + schema: *451 examples: default: value: @@ -65491,7 +65549,7 @@ paths: type: array items: *296 examples: - default: *433 + default: *434 headers: Link: *48 x-github: @@ -65694,7 +65752,7 @@ paths: description: Response content: application/json: - schema: &515 + schema: &516 title: Full Repository description: Full Repository type: object @@ -65979,8 +66037,8 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *451 - required: *452 + properties: *452 + required: *453 nullable: true temp_clone_token: type: string @@ -66092,7 +66150,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &637 + properties: &638 url: type: string format: uri @@ -66108,12 +66166,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &638 + required: &639 - url - key - name - html_url - security_and_analysis: *453 + security_and_analysis: *454 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -66197,7 +66255,7 @@ paths: - network_count - subscribers_count examples: - default: &517 + default: &518 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -66723,9 +66781,9 @@ paths: application/json: schema: type: array - items: *454 + items: *455 examples: - default: *455 + default: *456 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -66750,7 +66808,7 @@ paths: - *90 - *17 - *19 - - &797 + - &798 name: targets description: | A comma-separated list of rule targets to filter by. @@ -66841,11 +66899,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *177 - conditions: *456 + conditions: *457 rules: type: array description: An array of rules within the ruleset. - items: &458 + items: &459 title: Repository Rule type: object description: A repository rule. @@ -66910,7 +66968,7 @@ paths: application/json: schema: *199 examples: - default: &457 + default: &458 value: id: 21 name: super cool ruleset @@ -66966,7 +67024,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &799 + - &800 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 @@ -66978,14 +67036,14 @@ paths: x-multi-segment: true - *326 - *108 - - &800 + - &801 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 - - &801 + - &802 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -66998,7 +67056,7 @@ paths: - bypass - all default: all - - &802 + - &803 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. @@ -67021,7 +67079,7 @@ paths: description: Response content: application/json: - schema: &803 + schema: &804 title: Rule Suites description: Response type: array @@ -67076,7 +67134,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &804 + default: &805 value: - id: 21 actor_id: 12 @@ -67120,7 +67178,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &805 + - &806 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -67136,7 +67194,7 @@ paths: description: Response content: application/json: - schema: &806 + schema: &807 title: Rule Suite description: Response type: object @@ -67235,7 +67293,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &807 + default: &808 value: id: 21 actor_id: 12 @@ -67310,7 +67368,7 @@ paths: application/json: schema: *199 examples: - default: *457 + default: *458 '404': *6 '500': *41 put: @@ -67359,11 +67417,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *177 - conditions: *456 + conditions: *457 rules: description: An array of rules within the ruleset. type: array - items: *458 + items: *459 examples: default: value: @@ -67400,7 +67458,7 @@ paths: application/json: schema: *199 examples: - default: *457 + default: *458 '404': *6 '422': *15 '500': *41 @@ -67460,7 +67518,7 @@ paths: type: array items: *203 examples: - default: *459 + default: *460 '404': *6 '500': *41 x-github: @@ -67497,7 +67555,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *461 examples: default: value: @@ -67560,7 +67618,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *461 - *462 - *463 - *464 @@ -67568,10 +67625,11 @@ paths: - *466 - *467 - *468 + - *469 - *113 - *19 - *17 - - &809 + - &810 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -67581,7 +67639,7 @@ paths: required: false schema: type: string - - &810 + - &811 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -67591,13 +67649,13 @@ paths: required: false schema: type: string - - *469 - *470 - *471 - *472 - *473 - *474 - *475 + - *476 responses: '200': description: Response @@ -67605,9 +67663,9 @@ paths: application/json: schema: type: array - items: *476 + items: *477 examples: - default: *477 + default: *478 headers: Link: *48 '404': *6 @@ -67637,9 +67695,9 @@ paths: subcategory: custom-patterns parameters: - *90 - - *478 - *479 - *480 + - *481 - *113 - *19 - *17 @@ -67652,7 +67710,7 @@ paths: type: array items: *205 examples: - default: *481 + default: *482 headers: Link: *48 '403': *29 @@ -67688,9 +67746,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *482 + items: *483 examples: - default: *483 + default: *484 responses: '201': description: All patterns created successfully. @@ -67704,7 +67762,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: *484 + default: *485 '400': *14 '403': *29 '404': *6 @@ -67728,7 +67786,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *485 + items: *486 delete: summary: Bulk delete organization custom patterns description: |- @@ -67761,7 +67819,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *486 + items: *487 post_delete_action: type: string description: |- @@ -67774,7 +67832,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *487 + default: *488 responses: '204': description: All patterns deleted successfully. @@ -67812,9 +67870,9 @@ paths: required: true content: application/json: - schema: *488 + schema: *489 examples: - default: *489 + default: *490 responses: '200': description: Pattern updated successfully. @@ -67822,7 +67880,7 @@ paths: application/json: schema: *205 examples: - default: *490 + default: *491 '400': *14 '403': *29 '404': *6 @@ -67853,9 +67911,9 @@ paths: description: Response content: application/json: - schema: *491 + schema: *492 examples: - default: *492 + default: *493 '403': *29 '404': *6 patch: @@ -68008,7 +68066,7 @@ paths: application/json: schema: type: array - items: &831 + items: &832 description: A repository security advisory. type: object properties: @@ -68210,7 +68268,7 @@ paths: login: type: string description: The username of the user credited. - type: *493 + type: *494 credits_detailed: type: array nullable: true @@ -68220,7 +68278,7 @@ paths: type: object properties: user: *4 - type: *493 + type: *494 state: type: string description: The state of the user's acceptance of the @@ -68280,7 +68338,7 @@ paths: - private_fork additionalProperties: false examples: - default: &832 + default: &833 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -68667,7 +68725,7 @@ paths: application/json: schema: type: array - items: *494 + items: *495 examples: default: value: @@ -68766,7 +68824,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *90 - - *495 + - *496 - *17 - *19 responses: @@ -68774,9 +68832,9 @@ paths: description: Success content: application/json: - schema: *496 + schema: *497 examples: - default: *497 + default: *498 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -69057,7 +69115,7 @@ paths: type: array items: *157 examples: - default: *498 + default: *499 headers: Link: *48 x-github: @@ -69286,15 +69344,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *90 - - *499 + - *500 responses: '200': description: Response content: application/json: - schema: *500 + schema: *501 examples: - default: *501 + default: *502 headers: Link: *48 x-github: @@ -69332,7 +69390,7 @@ paths: description: Response content: application/json: - schema: &512 + schema: &513 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -69378,7 +69436,7 @@ paths: type: string nullable: true examples: - default: &513 + default: &514 value: groups: - group_id: '123' @@ -69435,7 +69493,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 headers: Link: *48 '403': *29 @@ -69525,7 +69583,7 @@ paths: description: Response content: application/json: - schema: &502 + schema: &503 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -69588,8 +69646,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *417 - required: *418 + properties: *418 + required: *419 nullable: true members_count: type: integer @@ -69852,7 +69910,7 @@ paths: - repos_count - organization examples: - default: &503 + default: &504 value: id: 1 node_id: MDQ6VGVhbTE= @@ -69929,9 +69987,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 x-github: githubCloudOnly: false @@ -70020,16 +70078,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '201': description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 '422': *15 '403': *29 @@ -70059,7 +70117,7 @@ paths: responses: '204': description: Response - '422': &506 + '422': &507 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -70088,10 +70146,10 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 - '422': *506 + default: *506 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -70134,10 +70192,10 @@ paths: description: Response content: application/json: - schema: *507 + schema: *508 examples: - default: *508 - '422': *506 + default: *509 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70161,7 +70219,7 @@ paths: responses: '204': description: Response - '422': *506 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -70193,12 +70251,12 @@ paths: application/json: schema: type: array - items: *398 + items: *399 examples: - default: *399 + default: *400 headers: Link: *48 - '422': *506 + '422': *507 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70242,7 +70300,7 @@ paths: application/json: schema: type: array - items: &874 + items: &875 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -70361,7 +70419,7 @@ paths: - type - url examples: - default: &875 + default: &876 value: - login: octocat id: 1 @@ -70420,7 +70478,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &510 title: Team Membership description: Team Membership type: object @@ -70447,7 +70505,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &876 + response-if-user-is-a-team-maintainer: &877 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -70510,9 +70568,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - response-if-users-membership-with-team-is-now-pending: &877 + response-if-users-membership-with-team-is-now-pending: &878 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -70590,7 +70648,7 @@ paths: type: array items: *296 examples: - default: *433 + default: *434 headers: Link: *48 x-github: @@ -70621,14 +70679,14 @@ paths: parameters: - *90 - *227 - - *510 - *511 + - *512 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &878 + schema: &879 title: Team Repository description: A team's access to a repository. type: object @@ -71192,8 +71250,8 @@ paths: parameters: - *90 - *227 - - *510 - *511 + - *512 requestBody: required: false content: @@ -71240,8 +71298,8 @@ paths: parameters: - *90 - *227 - - *510 - *511 + - *512 responses: '204': description: Response @@ -71274,10 +71332,10 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 - '422': *506 + default: *514 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71343,7 +71401,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: default: value: @@ -71355,7 +71413,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *506 + '422': *507 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71389,7 +71447,7 @@ paths: type: array items: *329 examples: - response-if-child-teams-exist: &879 + response-if-child-teams-exist: &880 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -71542,7 +71600,7 @@ paths: resources: type: object properties: - core: &514 + core: &515 title: Rate Limit type: object properties: @@ -71559,17 +71617,17 @@ paths: - remaining - reset - used - graphql: *514 - search: *514 - code_search: *514 - source_import: *514 - integration_manifest: *514 - actions_runner_registration: *514 - scim: *514 - dependency_snapshots: *514 - dependency_sbom: *514 - code_scanning_autofix: *514 - copilot_usage_records: *514 + graphql: *515 + search: *515 + code_search: *515 + source_import: *515 + integration_manifest: *515 + actions_runner_registration: *515 + scim: *515 + dependency_snapshots: *515 + dependency_sbom: *515 + code_scanning_autofix: *515 + copilot_usage_records: *515 required: - core - search @@ -71666,14 +71724,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *515 + schema: *516 examples: default-response: summary: Default response @@ -72181,7 +72239,7 @@ paths: status: disabled '403': *29 '404': *6 - '301': *516 + '301': *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72199,8 +72257,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -72520,10 +72578,10 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 - '307': &518 + default: *518 + '307': &519 description: Temporary Redirect content: application/json: @@ -72552,8 +72610,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -72575,7 +72633,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository - '307': *518 + '307': *519 '404': *6 '409': *122 x-github: @@ -72599,11 +72657,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 - - &534 + - &535 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -72626,7 +72684,7 @@ paths: type: integer artifacts: type: array - items: &519 + items: &520 title: Artifact description: An artifact type: object @@ -72704,7 +72762,7 @@ paths: - expires_at - updated_at examples: - default: &535 + default: &536 value: total_count: 2 artifacts: @@ -72765,9 +72823,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *510 - *511 - - &520 + - *512 + - &521 name: artifact_id description: The unique identifier of the artifact. in: path @@ -72779,7 +72837,7 @@ paths: description: Response content: application/json: - schema: *519 + schema: *520 examples: default: value: @@ -72817,9 +72875,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *510 - *511 - - *520 + - *512 + - *521 responses: '204': description: Response @@ -72843,9 +72901,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *510 - *511 - - *520 + - *512 + - *521 - name: archive_format in: path required: true @@ -72855,7 +72913,7 @@ paths: '302': description: Response headers: - Location: &656 + Location: &657 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 @@ -72880,14 +72938,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &521 + schema: &522 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -72920,13 +72978,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *521 + schema: *522 examples: selected_actions: *45 responses: @@ -72955,14 +73013,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &522 + schema: &523 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -72995,13 +73053,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *522 + schema: *523 examples: selected_actions: *47 responses: @@ -73032,14 +73090,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *523 + schema: *524 examples: default: value: @@ -73065,11 +73123,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 - - &524 + - &525 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 @@ -73103,7 +73161,7 @@ paths: description: Response content: application/json: - schema: &525 + schema: &526 title: Repository actions caches description: Repository actions caches type: object @@ -73145,7 +73203,7 @@ paths: - total_count - actions_caches examples: - default: &526 + default: &527 value: total_count: 1 actions_caches: @@ -73177,23 +73235,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *510 - *511 + - *512 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *524 + - *525 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: - default: *526 + default: *527 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73213,8 +73271,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *510 - *511 + - *512 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -73243,8 +73301,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *112 responses: @@ -73326,8 +73384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *510 - *511 + - *512 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -73479,9 +73537,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *510 - *511 - - &527 + - *512 + - &528 name: job_id description: The unique identifier of the job. in: path @@ -73493,7 +73551,7 @@ paths: description: Response content: application/json: - schema: &538 + schema: &539 title: Job description: Information of a job execution in a workflow run type: object @@ -73800,9 +73858,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *510 - *511 - - *527 + - *512 + - *528 responses: '302': description: Response @@ -73830,9 +73888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *510 - *511 - - *527 + - *512 + - *528 requestBody: required: false content: @@ -73882,8 +73940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Status response @@ -73942,8 +74000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -74011,8 +74069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -74030,7 +74088,7 @@ paths: type: integer secrets: type: array - items: &540 + items: &541 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -74050,7 +74108,7 @@ paths: - created_at - updated_at examples: - default: &541 + default: &542 value: total_count: 2 secrets: @@ -74083,8 +74141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -74102,7 +74160,7 @@ paths: type: integer variables: type: array - items: &542 + items: &543 title: Actions Variable type: object properties: @@ -74132,7 +74190,7 @@ paths: - created_at - updated_at examples: - default: &543 + default: &544 value: total_count: 2 variables: @@ -74165,8 +74223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74175,7 +74233,7 @@ paths: schema: type: object properties: - enabled: &528 + enabled: &529 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *63 @@ -74210,8 +74268,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -74222,7 +74280,7 @@ paths: schema: type: object properties: - enabled: *528 + enabled: *529 allowed_actions: *63 sha_pinning_required: *64 required: @@ -74255,14 +74313,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &529 + schema: &530 type: object properties: access_level: @@ -74280,7 +74338,7 @@ paths: required: - access_level examples: - default: &530 + default: &531 value: access_level: organization x-github: @@ -74305,15 +74363,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *529 + schema: *530 examples: - default: *530 + default: *531 responses: '204': description: Response @@ -74337,8 +74395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74368,8 +74426,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Empty response for successful settings update @@ -74403,8 +74461,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74431,8 +74489,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -74466,8 +74524,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74495,8 +74553,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -74527,8 +74585,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74559,8 +74617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -74592,8 +74650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74622,8 +74680,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Success response @@ -74663,8 +74721,8 @@ paths: in: query schema: type: string - - *510 - *511 + - *512 - *17 - *19 responses: @@ -74709,8 +74767,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#get-runner-version-end-of-life-schedule-for-a-repository parameters: - - *510 - *511 + - *512 - name: version description: The runner version to look up. in: path @@ -74772,8 +74830,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -74805,8 +74863,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -74880,8 +74938,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -74917,8 +74975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -74948,8 +75006,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '200': @@ -74979,8 +75037,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '204': @@ -75007,8 +75065,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '200': *84 @@ -75033,8 +75091,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 requestBody: required: true @@ -75083,8 +75141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 requestBody: required: true @@ -75134,8 +75192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 responses: '200': *303 @@ -75165,8 +75223,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *510 - *511 + - *512 - *78 - *304 responses: @@ -75196,9 +75254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *510 - *511 - - &546 + - *512 + - &547 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. @@ -75206,7 +75264,7 @@ paths: required: false schema: type: string - - &547 + - &548 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -75214,7 +75272,7 @@ paths: required: false schema: type: string - - &548 + - &549 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -75223,7 +75281,7 @@ paths: required: false schema: type: string - - &549 + - &550 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 @@ -75250,7 +75308,7 @@ paths: - pending - *17 - *19 - - &550 + - &551 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -75259,7 +75317,7 @@ paths: schema: type: string format: date-time - - &531 + - &532 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -75268,13 +75326,13 @@ paths: schema: type: boolean default: false - - &551 + - &552 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &552 + - &553 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -75297,7 +75355,7 @@ paths: type: integer workflow_runs: type: array - items: &532 + items: &533 title: Workflow Run description: An invocation of a workflow type: object @@ -75445,7 +75503,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &576 + properties: &577 id: type: string description: SHA for the commit @@ -75496,7 +75554,7 @@ paths: - name - email nullable: true - required: &577 + required: &578 - id - tree_id - message @@ -75543,7 +75601,7 @@ paths: - workflow_url - pull_requests examples: - default: &553 + default: &554 value: total_count: 1 workflow_runs: @@ -75779,24 +75837,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *510 - *511 - - &533 + - *512 + - &534 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *531 + - *532 responses: '200': description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: &536 + default: &537 value: id: 30433642 name: Build @@ -76037,9 +76095,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '204': description: Response @@ -76062,9 +76120,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '200': description: Response @@ -76183,9 +76241,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '201': description: Response @@ -76218,12 +76276,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *510 - *511 - - *533 + - *512 + - *534 - *17 - *19 - - *534 + - *535 - *113 responses: '200': @@ -76240,9 +76298,9 @@ paths: type: integer artifacts: type: array - items: *519 + items: *520 examples: - default: *535 + default: *536 headers: Link: *48 x-github: @@ -76266,25 +76324,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *510 - *511 - - *533 - - &537 + - *512 + - *534 + - &538 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *531 + - *532 responses: '200': description: Response content: application/json: - schema: *532 + schema: *533 examples: - default: *536 + default: *537 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76307,10 +76365,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *510 - *511 - - *533 - - *537 + - *512 + - *534 + - *538 - *17 - *19 responses: @@ -76328,9 +76386,9 @@ paths: type: integer jobs: type: array - items: *538 + items: *539 examples: - default: &539 + default: &540 value: total_count: 1 jobs: @@ -76443,10 +76501,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *510 - *511 - - *533 - - *537 + - *512 + - *534 + - *538 responses: '302': description: Response @@ -76474,9 +76532,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '202': description: Response @@ -76522,9 +76580,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 - *17 - *111 - *112 @@ -76695,9 +76753,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: true content: @@ -76764,9 +76822,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '202': description: Response @@ -76799,9 +76857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 - 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 @@ -76831,9 +76889,9 @@ paths: type: integer jobs: type: array - items: *538 + items: *539 examples: - default: *539 + default: *540 headers: Link: *48 x-github: @@ -76858,9 +76916,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '302': description: Response @@ -76887,9 +76945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '204': description: Response @@ -76916,9 +76974,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '200': description: Response @@ -76978,7 +77036,7 @@ paths: items: type: object properties: - type: &671 + type: &672 type: string description: The type of reviewer. enum: @@ -77063,9 +77121,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: true content: @@ -77112,12 +77170,12 @@ paths: application/json: schema: type: array - items: &658 + items: &659 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &949 + properties: &950 url: type: string format: uri @@ -77202,7 +77260,7 @@ paths: nullable: true properties: *230 required: *231 - required: &950 + required: &951 - id - node_id - sha @@ -77218,7 +77276,7 @@ paths: - created_at - updated_at examples: - default: &659 + default: &660 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -77274,9 +77332,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: false content: @@ -77320,9 +77378,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *510 - *511 - - *533 + - *512 + - *534 requestBody: required: false content: @@ -77376,9 +77434,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *510 - *511 - - *533 + - *512 + - *534 responses: '200': description: Response @@ -77515,8 +77573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -77534,9 +77592,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -77561,8 +77619,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -77592,17 +77650,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: &554 + default: &555 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -77628,8 +77686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -77687,8 +77745,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -77714,8 +77772,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -77733,9 +77791,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -77758,8 +77816,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -77811,17 +77869,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: &555 + default: &556 value: name: USERNAME value: octocat @@ -77847,8 +77905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 requestBody: required: true @@ -77891,8 +77949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '204': @@ -77918,8 +77976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -77937,7 +77995,7 @@ paths: type: integer workflows: type: array - items: &544 + items: &545 title: Workflow description: A GitHub Actions workflow type: object @@ -78044,9 +78102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *510 - *511 - - &545 + - *512 + - &546 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -78061,7 +78119,7 @@ paths: description: Response content: application/json: - schema: *544 + schema: *545 examples: default: value: @@ -78094,9 +78152,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '204': description: Response @@ -78121,9 +78179,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '200': description: Response including the workflow run ID and URLs. @@ -78203,9 +78261,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '204': description: Response @@ -78232,19 +78290,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *510 - *511 - - *545 + - *512 - *546 - *547 - *548 - *549 + - *550 - *17 - *19 - - *550 - - *531 - *551 + - *532 - *552 + - *553 responses: '200': description: Response @@ -78260,9 +78318,9 @@ paths: type: integer workflow_runs: type: array - items: *532 + items: *533 examples: - default: *553 + default: *554 headers: Link: *48 x-github: @@ -78295,9 +78353,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *510 - *511 - - *545 + - *512 + - *546 responses: '200': description: Response @@ -78358,8 +78416,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *510 - *511 + - *512 - *113 - *17 - *111 @@ -78528,8 +78586,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -78547,9 +78605,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -78573,8 +78631,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -78592,9 +78650,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -78619,8 +78677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -78638,9 +78696,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -78665,8 +78723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -78696,17 +78754,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *554 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78728,8 +78786,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -78787,8 +78845,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -78814,8 +78872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *510 - *511 + - *512 - *315 - *19 responses: @@ -78833,9 +78891,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -78858,8 +78916,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -78911,17 +78969,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78942,8 +79000,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 requestBody: required: true @@ -78986,8 +79044,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *510 - *511 + - *512 - *309 responses: '204': @@ -79009,8 +79067,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -79047,8 +79105,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *510 - *511 + - *512 - name: assignee in: path required: true @@ -79084,8 +79142,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -79195,8 +79253,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *510 - *511 + - *512 - *17 - *111 - *112 @@ -79237,7 +79295,7 @@ paths: initiator: type: string examples: - default: *556 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79257,8 +79315,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -79266,7 +79324,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Autolink reference description: An autolink reference. type: object @@ -79320,8 +79378,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -79360,9 +79418,9 @@ paths: description: response content: application/json: - schema: *557 + schema: *558 examples: - default: &558 + default: &559 value: id: 1 key_prefix: TICKET- @@ -79393,9 +79451,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *510 - *511 - - &559 + - *512 + - &560 name: autolink_id description: The unique identifier of the autolink. in: path @@ -79407,9 +79465,9 @@ paths: description: Response content: application/json: - schema: *557 + schema: *558 examples: - default: *558 + default: *559 '404': *6 x-github: githubCloudOnly: false @@ -79429,9 +79487,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *510 - *511 - - *559 + - *512 + - *560 responses: '204': description: Response @@ -79455,8 +79513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response if Dependabot is enabled @@ -79504,8 +79562,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -79526,8 +79584,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -79547,8 +79605,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *510 - *511 + - *512 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -79586,7 +79644,7 @@ paths: - url protected: type: boolean - protection: &561 + protection: &562 title: Branch Protection description: Branch Protection type: object @@ -79628,7 +79686,7 @@ paths: required: - contexts - checks - enforce_admins: &564 + enforce_admins: &565 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -79643,7 +79701,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &566 + required_pull_request_reviews: &567 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -79719,7 +79777,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &563 + restrictions: &564 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -79996,9 +80054,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *510 - *511 - - &562 + - *512 + - &563 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest/graphql). @@ -80012,14 +80070,14 @@ paths: description: Response content: application/json: - schema: &572 + schema: &573 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &629 + commit: &630 title: Commit description: Commit type: object @@ -80053,7 +80111,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &560 + properties: &561 name: type: string example: '"Chris Wanstrath"' @@ -80069,7 +80127,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *560 + properties: *561 nullable: true message: type: string @@ -80090,7 +80148,7 @@ paths: required: - sha - url - verification: &689 + verification: &690 title: Verification type: object properties: @@ -80160,7 +80218,7 @@ paths: type: integer files: type: array - items: &641 + items: &642 title: Diff Entry description: Diff Entry type: object @@ -80244,7 +80302,7 @@ paths: - self protected: type: boolean - protection: *561 + protection: *562 protection_url: type: string format: uri @@ -80351,7 +80409,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *516 + '301': *517 '404': *6 x-github: githubCloudOnly: false @@ -80373,15 +80431,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *561 + schema: *562 examples: default: value: @@ -80575,9 +80633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -80832,7 +80890,7 @@ paths: url: type: string format: uri - required_status_checks: &569 + required_status_checks: &570 title: Status Check Policy description: Status Check Policy type: object @@ -80984,7 +81042,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *563 + restrictions: *564 required_conversation_resolution: type: object properties: @@ -81096,9 +81154,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81123,17 +81181,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: &565 + default: &566 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -81155,17 +81213,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *565 + default: *566 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81184,9 +81242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81211,17 +81269,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: &567 + default: &568 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -81317,9 +81375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -81417,9 +81475,9 @@ paths: description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: *567 + default: *568 '422': *15 x-github: githubCloudOnly: false @@ -81440,9 +81498,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81469,17 +81527,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: &568 + default: &569 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -81502,17 +81560,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *564 + schema: *565 examples: - default: *568 + default: *569 '404': *6 x-github: githubCloudOnly: false @@ -81532,9 +81590,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81559,17 +81617,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: &570 + default: &571 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -81595,9 +81653,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -81649,9 +81707,9 @@ paths: description: Response content: application/json: - schema: *569 + schema: *570 examples: - default: *570 + default: *571 '404': *6 '422': *15 x-github: @@ -81673,9 +81731,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -81699,9 +81757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -81735,9 +81793,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -81804,9 +81862,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -81870,9 +81928,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: content: application/json: @@ -81938,15 +81996,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response content: application/json: - schema: *563 + schema: *564 examples: default: value: @@ -82037,9 +82095,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '204': description: Response @@ -82062,9 +82120,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -82074,7 +82132,7 @@ paths: type: array items: *5 examples: - default: &571 + default: &572 value: - id: 1 slug: octoapp @@ -82131,9 +82189,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82167,7 +82225,7 @@ paths: type: array items: *5 examples: - default: *571 + default: *572 '422': *15 x-github: githubCloudOnly: false @@ -82188,9 +82246,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82224,7 +82282,7 @@ paths: type: array items: *5 examples: - default: *571 + default: *572 '422': *15 x-github: githubCloudOnly: false @@ -82245,9 +82303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82281,7 +82339,7 @@ paths: type: array items: *5 examples: - default: *571 + default: *572 '422': *15 x-github: githubCloudOnly: false @@ -82303,9 +82361,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -82315,7 +82373,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '404': *6 x-github: githubCloudOnly: false @@ -82335,9 +82393,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -82375,7 +82433,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -82396,9 +82454,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: false content: @@ -82436,7 +82494,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -82457,9 +82515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: content: application/json: @@ -82496,7 +82554,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 '422': *15 x-github: githubCloudOnly: false @@ -82518,9 +82576,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 responses: '200': description: Response @@ -82554,9 +82612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82614,9 +82672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82674,9 +82732,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82736,9 +82794,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 requestBody: required: true content: @@ -82760,7 +82818,7 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: default: value: @@ -82874,8 +82932,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *510 - *511 + - *512 - *106 - *107 - *108 @@ -82911,8 +82969,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *510 - *511 + - *512 - name: bypass_request_number in: path required: true @@ -82985,8 +83043,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - *106 - *107 - *108 @@ -83026,8 +83084,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - name: bypass_request_number in: path required: true @@ -83097,8 +83155,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - name: bypass_request_number in: path required: true @@ -83169,8 +83227,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *510 - *511 + - *512 - name: bypass_response_id in: path required: true @@ -83203,8 +83261,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -83483,7 +83541,7 @@ paths: description: Response content: application/json: - schema: &573 + schema: &574 title: CheckRun description: A check performed on the code of a given code change type: object @@ -83603,7 +83661,7 @@ paths: check. type: array items: *240 - deployment: &942 + deployment: &943 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -83883,9 +83941,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *510 - *511 - - &574 + - *512 + - &575 name: check_run_id description: The unique identifier of the check run. in: path @@ -83897,9 +83955,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: &575 + default: &576 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -83999,9 +84057,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *510 - *511 - - *574 + - *512 + - *575 requestBody: required: true content: @@ -84241,9 +84299,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *574 examples: - default: *575 + default: *576 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84263,9 +84321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *510 - *511 - - *574 + - *512 + - *575 - *17 - *19 responses: @@ -84360,9 +84418,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *510 - *511 - - *574 + - *512 + - *575 responses: '201': description: Response @@ -84406,8 +84464,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -84429,7 +84487,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &578 + schema: &579 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -84515,12 +84573,12 @@ paths: type: string format: date-time nullable: true - head_commit: &975 + head_commit: &976 title: Simple Commit description: A commit. type: object - properties: *576 - required: *577 + properties: *577 + required: *578 latest_check_runs_count: type: integer check_runs_url: @@ -84548,7 +84606,7 @@ paths: - check_runs_url - pull_requests examples: - default: &579 + default: &580 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -84839,9 +84897,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84860,8 +84918,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -85170,9 +85228,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *510 - *511 - - &580 + - *512 + - &581 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -85184,9 +85242,9 @@ paths: description: Response content: application/json: - schema: *578 + schema: *579 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85209,17 +85267,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *510 - *511 - - *580 - - &634 + - *512 + - *581 + - &635 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &635 + - &636 name: status description: Returns check runs with the specified `status`. in: query @@ -85258,9 +85316,9 @@ paths: type: integer check_runs: type: array - items: *573 + items: *574 examples: - default: &636 + default: &637 value: total_count: 1 check_runs: @@ -85362,9 +85420,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *510 - *511 - - *580 + - *512 + - *581 responses: '201': description: Response @@ -85393,8 +85451,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *113 - *111 @@ -85416,7 +85474,7 @@ paths: application/json: schema: type: array - items: &581 + items: &582 description: Code quality finding type: object properties: @@ -85546,7 +85604,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &582 + '403': &583 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -85573,8 +85631,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *510 - *511 + - *512 - name: finding_number in: path description: The number that identifies a finding. @@ -85586,7 +85644,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *582 examples: default: value: @@ -85615,7 +85673,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *582 + '403': *583 '404': *6 '503': *204 x-github: @@ -85637,8 +85695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -85710,7 +85768,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *582 + '403': *583 '404': *6 '503': *204 x-github: @@ -85731,8 +85789,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -85868,21 +85926,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *510 - *511 + - *512 - *333 - *334 - *19 - *17 - - &599 + - &600 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: *583 - - &600 + schema: *584 + - &601 name: pr description: The number of the pull request for the results you want to list. in: query @@ -85913,7 +85971,7 @@ paths: be returned. in: query required: false - schema: *584 + schema: *585 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -85937,7 +85995,7 @@ paths: updated_at: *144 url: *141 html_url: *142 - instances_url: *585 + instances_url: *586 state: *116 fixed_at: *146 dismissed_by: @@ -85948,11 +86006,11 @@ paths: required: *21 nullable: true dismissed_at: *145 - dismissed_reason: *586 - dismissed_comment: *587 - rule: *588 - tool: *589 - most_recent_instance: *590 + dismissed_reason: *587 + dismissed_comment: *588 + rule: *589 + tool: *590 + most_recent_instance: *591 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -86078,7 +86136,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *38 - '403': &592 + '403': &593 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -86105,9 +86163,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *510 - *511 - - &593 + - *512 + - &594 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -86121,7 +86179,7 @@ paths: description: Response content: application/json: - schema: &594 + schema: &595 type: object properties: number: *136 @@ -86129,7 +86187,7 @@ paths: updated_at: *144 url: *141 html_url: *142 - instances_url: *585 + instances_url: *586 state: *116 fixed_at: *146 dismissed_by: @@ -86140,8 +86198,8 @@ paths: required: *21 nullable: true dismissed_at: *145 - dismissed_reason: *586 - dismissed_comment: *587 + dismissed_reason: *587 + dismissed_comment: *588 rule: type: object properties: @@ -86195,8 +86253,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *589 - most_recent_instance: *590 + tool: *590 + most_recent_instance: *591 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -86210,7 +86268,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *591 + items: *592 required: - number - created_at @@ -86299,7 +86357,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *38 - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -86319,9 +86377,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 requestBody: required: true content: @@ -86336,8 +86394,8 @@ paths: enum: - open - dismissed - dismissed_reason: *586 - dismissed_comment: *587 + dismissed_reason: *587 + dismissed_comment: *588 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -86365,7 +86423,7 @@ paths: description: Response content: application/json: - schema: *594 + schema: *595 examples: default: value: @@ -86441,7 +86499,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &598 + '403': &599 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -86468,15 +86526,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 responses: '200': description: Response content: application/json: - schema: &595 + schema: &596 type: object properties: status: @@ -86502,13 +86560,13 @@ paths: - description - started_at examples: - default: &596 + default: &597 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &597 + '400': &598 description: Bad Request content: application/json: @@ -86519,7 +86577,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': *592 + '403': *593 '404': *6 '500': *41 x-github: @@ -86544,29 +86602,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 responses: '200': description: OK content: application/json: - schema: *595 + schema: *596 examples: - default: *596 + default: *597 '202': description: Accepted content: application/json: - schema: *595 + schema: *596 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *597 + '400': *598 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -86598,9 +86656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 requestBody: required: false content: @@ -86645,8 +86703,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *597 - '403': *598 + '400': *598 + '403': *599 '404': *6 '422': description: Unprocessable Entity @@ -86670,13 +86728,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 - *19 - *17 - - *599 - *600 + - *601 responses: '200': description: Response @@ -86687,10 +86745,10 @@ paths: items: type: object properties: - ref: *583 - analysis_key: *601 - environment: *602 - category: *603 + ref: *584 + analysis_key: *602 + environment: *603 + category: *604 state: type: string description: State of a code scanning alert instance. @@ -86705,7 +86763,7 @@ paths: properties: text: type: string - location: *604 + location: *605 html_url: type: string classifications: @@ -86713,7 +86771,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: *605 + items: *606 examples: default: value: @@ -86750,7 +86808,7 @@ paths: end_column: 50 classifications: - source - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -86784,25 +86842,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *510 - *511 + - *512 - *333 - *334 - *19 - *17 - - *600 + - *601 - 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: *583 + schema: *584 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &606 + schema: &607 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -86823,23 +86881,23 @@ paths: application/json: schema: type: array - items: &607 + items: &608 type: object properties: - ref: *583 - commit_sha: &615 + ref: *584 + commit_sha: &616 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: *601 + analysis_key: *602 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *603 + category: *604 error: type: string example: error reading field xyz @@ -86863,8 +86921,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *606 - tool: *589 + sarif_id: *607 + tool: *590 deletable: type: boolean warning: @@ -86925,7 +86983,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -86961,8 +87019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *510 - *511 + - *512 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -86975,7 +87033,7 @@ paths: description: Response content: application/json: - schema: *607 + schema: *608 examples: response: summary: application/json response @@ -87029,7 +87087,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *592 + '403': *593 '404': *6 '422': description: Response if analysis could not be processed @@ -87116,8 +87174,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *510 - *511 + - *512 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -87170,7 +87228,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': *598 + '403': *599 '404': *6 '503': *204 x-github: @@ -87192,8 +87250,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -87201,7 +87259,7 @@ paths: application/json: schema: type: array - items: &608 + items: &609 title: CodeQL Database description: A CodeQL database. type: object @@ -87312,7 +87370,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': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -87341,8 +87399,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *510 - *511 + - *512 - name: language in: path description: The language of the CodeQL database. @@ -87354,7 +87412,7 @@ paths: description: Response content: application/json: - schema: *608 + schema: *609 examples: default: value: @@ -87386,9 +87444,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': &645 + '302': &646 description: Found - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -87410,8 +87468,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *510 - *511 + - *512 - name: language in: path description: The language of the CodeQL database. @@ -87421,7 +87479,7 @@ paths: responses: '204': description: Response - '403': *598 + '403': *599 '404': *6 '503': *204 x-github: @@ -87449,8 +87507,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -87459,7 +87517,7 @@ paths: type: object additionalProperties: false properties: - language: &609 + language: &610 type: string description: The language targeted by the CodeQL query enum: @@ -87539,7 +87597,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &613 + schema: &614 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -87549,7 +87607,7 @@ paths: description: The ID of the variant analysis. controller_repo: *123 actor: *4 - query_language: *609 + query_language: *610 query_pack_url: type: string description: The download url for the query pack. @@ -87596,7 +87654,7 @@ paths: items: type: object properties: - repository: &610 + repository: &611 title: Repository Identifier description: Repository Identifier type: object @@ -87632,7 +87690,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &614 + analysis_status: &615 type: string description: The new status of the CodeQL variant analysis repository task. @@ -87664,7 +87722,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &611 + access_mismatch_repos: &612 type: object properties: repository_count: @@ -87678,7 +87736,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: *610 + items: *611 required: - repository_count - repositories @@ -87700,8 +87758,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *611 - over_limit_repos: *611 + no_codeql_db_repos: *612 + over_limit_repos: *612 required: - access_mismatch_repos - not_found_repos @@ -87717,7 +87775,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &612 + value: &613 summary: Default response value: id: 1 @@ -87863,10 +87921,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *612 + value: *613 repository_lists: summary: Response for a successful variant analysis submission - value: *612 + value: *613 '404': *6 '422': description: Unable to process variant analysis submission @@ -87894,8 +87952,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *510 - *511 + - *512 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -87907,9 +87965,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *614 examples: - default: *612 + default: *613 '404': *6 '503': *204 x-github: @@ -87932,7 +87990,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *510 + - *511 - name: repo in: path description: The name of the controller repository. @@ -87967,7 +88025,7 @@ paths: type: object properties: repository: *123 - analysis_status: *614 + analysis_status: *615 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -88092,8 +88150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -88176,7 +88234,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *592 + '403': *593 '404': *6 '503': *204 x-github: @@ -88197,8 +88255,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -88290,7 +88348,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *598 + '403': *599 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -88361,8 +88419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -88370,7 +88428,7 @@ paths: schema: type: object properties: - commit_sha: *615 + commit_sha: *616 ref: type: string description: |- @@ -88428,7 +88486,7 @@ paths: schema: type: object properties: - id: *606 + id: *607 url: type: string description: The REST API URL for checking the status of the upload. @@ -88442,7 +88500,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': *598 + '403': *599 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -88465,8 +88523,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *510 - *511 + - *512 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -88512,7 +88570,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': *592 + '403': *593 '404': description: Not Found if the sarif id does not match any upload '503': *204 @@ -88537,8 +88595,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -88619,8 +88677,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *510 - *511 + - *512 - 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 @@ -88740,8 +88798,8 @@ paths: parameters: - *17 - *19 - - *510 - *511 + - *512 responses: '200': description: Response @@ -88757,7 +88815,7 @@ paths: type: integer codespaces: type: array - items: *409 + items: *410 examples: default: value: @@ -89055,8 +89113,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -89119,17 +89177,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '400': *14 '401': *25 '403': *29 @@ -89158,8 +89216,8 @@ paths: parameters: - *17 - *19 - - *510 - *511 + - *512 responses: '200': description: Response @@ -89223,8 +89281,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *510 - *511 + - *512 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -89259,14 +89317,14 @@ paths: type: integer machines: type: array - items: &884 + items: &885 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *617 - required: *618 + properties: *618 + required: *619 examples: - default: &885 + default: &886 value: total_count: 2 machines: @@ -89306,8 +89364,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *510 - *511 + - *512 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -89391,8 +89449,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *510 - *511 + - *512 - 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 @@ -89458,8 +89516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -89477,7 +89535,7 @@ paths: type: integer secrets: type: array - items: &622 + items: &623 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -89497,7 +89555,7 @@ paths: - created_at - updated_at examples: - default: *619 + default: *620 headers: Link: *48 x-github: @@ -89520,16 +89578,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *620 + schema: *621 examples: - default: *621 + default: *622 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -89549,17 +89607,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *623 + default: *624 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -89579,8 +89637,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -89633,8 +89691,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -89663,8 +89721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *510 - *511 + - *512 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -89706,7 +89764,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &624 + properties: &625 login: type: string example: octocat @@ -89799,7 +89857,7 @@ paths: user_view_type: type: string example: public - required: &625 + required: &626 - avatar_url - events_url - followers_url @@ -89873,8 +89931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *510 - *511 + - *512 - *135 responses: '204': @@ -89921,8 +89979,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *510 - *511 + - *512 - *135 requestBody: required: false @@ -89949,7 +90007,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &702 + schema: &703 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -90178,8 +90236,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *510 - *511 + - *512 - *135 responses: '204': @@ -90211,8 +90269,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *510 - *511 + - *512 - *135 responses: '200': @@ -90233,8 +90291,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *624 - required: *625 + properties: *625 + required: *626 nullable: true required: - permission @@ -90289,8 +90347,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -90300,7 +90358,7 @@ paths: application/json: schema: type: array - items: &626 + items: &627 title: Commit Comment description: Commit Comment type: object @@ -90358,7 +90416,7 @@ paths: - created_at - updated_at examples: - default: &631 + default: &632 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90417,17 +90475,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *626 + schema: *627 examples: - default: &632 + default: &633 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -90484,8 +90542,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -90508,7 +90566,7 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: default: value: @@ -90559,8 +90617,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -90582,8 +90640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -90610,7 +90668,7 @@ paths: application/json: schema: type: array - items: &627 + items: &628 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -90653,7 +90711,7 @@ paths: - content - created_at examples: - default: &706 + default: &707 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -90698,8 +90756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -90732,9 +90790,9 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: &628 + default: &629 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -90763,9 +90821,9 @@ paths: description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -90787,10 +90845,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *510 - *511 + - *512 - *251 - - &707 + - &708 name: reaction_id description: The unique identifier of the reaction. in: path @@ -90845,8 +90903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *510 - *511 + - *512 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -90902,9 +90960,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: &780 + default: &781 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -90998,9 +91056,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *510 - *511 - - &630 + - *512 + - &631 name: commit_sha description: The SHA of the commit. in: path @@ -91072,9 +91130,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *510 - *511 - - *630 + - *512 + - *631 - *17 - *19 responses: @@ -91084,9 +91142,9 @@ paths: application/json: schema: type: array - items: *626 + items: *627 examples: - default: *631 + default: *632 headers: Link: *48 x-github: @@ -91114,9 +91172,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *510 - *511 - - *630 + - *512 + - *631 requestBody: required: true content: @@ -91151,9 +91209,9 @@ paths: description: Response content: application/json: - schema: *626 + schema: *627 examples: - default: *632 + default: *633 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -91181,9 +91239,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *510 - *511 - - *630 + - *512 + - *631 - *17 - *19 responses: @@ -91193,9 +91251,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: &771 + default: &772 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -91732,11 +91790,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *510 - *511 + - *512 - *19 - *17 - - &633 + - &634 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)" @@ -91751,9 +91809,9 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: &756 + default: &757 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -91841,7 +91899,7 @@ paths: schema: type: string examples: - default: &642 + default: &643 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -91854,7 +91912,7 @@ paths: schema: type: string examples: - default: &643 + default: &644 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -91907,11 +91965,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *510 - *511 - - *633 + - *512 - *634 - *635 + - *636 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -91945,9 +92003,9 @@ paths: type: integer check_runs: type: array - items: *573 + items: *574 examples: - default: *636 + default: *637 headers: Link: *48 x-github: @@ -91972,9 +92030,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *510 - *511 - - *633 + - *512 + - *634 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -91982,7 +92040,7 @@ paths: schema: type: integer example: 1 - - *634 + - *635 - *17 - *19 responses: @@ -92000,7 +92058,7 @@ paths: type: integer check_suites: type: array - items: *578 + items: *579 examples: default: value: @@ -92200,9 +92258,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *510 - *511 - - *633 + - *512 + - *634 - *17 - *19 responses: @@ -92400,9 +92458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *510 - *511 - - *633 + - *512 + - *634 - *17 - *19 responses: @@ -92412,7 +92470,7 @@ paths: application/json: schema: type: array - items: &837 + items: &838 title: Status description: The status of a commit. type: object @@ -92493,7 +92551,7 @@ paths: site_admin: false headers: Link: *48 - '301': *516 + '301': *517 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -92521,8 +92579,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -92551,20 +92609,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *637 - required: *638 + properties: *638 + required: *639 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &639 + properties: &640 url: type: string format: uri html_url: type: string format: uri - required: &640 + required: &641 - url - html_url nullable: true @@ -92578,26 +92636,26 @@ paths: contributing: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true readme: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true issue_template: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true pull_request_template: title: Community Health File type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true required: - code_of_conduct @@ -92724,8 +92782,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *510 - *511 + - *512 - *19 - *17 - name: basehead @@ -92768,8 +92826,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *629 - merge_base_commit: *629 + base_commit: *630 + merge_base_commit: *630 status: type: string enum: @@ -92789,10 +92847,10 @@ paths: example: 6 commits: type: array - items: *629 + items: *630 files: type: array - items: *641 + items: *642 required: - url - html_url @@ -93038,12 +93096,12 @@ paths: schema: type: string examples: - default: *642 + default: *643 application/vnd.github.patch: schema: type: string examples: - default: *643 + default: *644 '404': *6 '500': *41 '503': *204 @@ -93088,8 +93146,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *510 - *511 + - *512 - name: path description: path parameter in: path @@ -93249,7 +93307,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &644 + response-if-content-is-a-file-github-object: &645 summary: Response if content is a file value: type: file @@ -93381,7 +93439,7 @@ paths: - size - type - url - - &786 + - &787 title: Content File description: Content File type: object @@ -93582,7 +93640,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *644 + response-if-content-is-a-file: *645 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -93651,7 +93709,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *645 + '302': *646 '304': *38 x-github: githubCloudOnly: false @@ -93674,8 +93732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *510 - *511 + - *512 - name: path description: path parameter in: path @@ -93768,7 +93826,7 @@ paths: description: Response content: application/json: - schema: &646 + schema: &647 title: File Commit description: File Commit type: object @@ -93920,7 +93978,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: example-for-creating-a-file: value: @@ -93974,7 +94032,7 @@ paths: schema: oneOf: - *3 - - &684 + - &685 description: Repository rule violation was detected type: object properties: @@ -93995,7 +94053,7 @@ paths: items: type: object properties: - placeholder_id: &828 + placeholder_id: &829 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -94027,8 +94085,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *510 - *511 + - *512 - name: path description: path parameter in: path @@ -94089,7 +94147,7 @@ paths: description: Response content: application/json: - schema: *646 + schema: *647 examples: default: value: @@ -94144,8 +94202,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *510 - *511 + - *512 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -94274,8 +94332,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -94426,8 +94484,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *510 - *511 + - *512 - *354 - *355 - *356 @@ -94440,10 +94498,11 @@ paths: schema: type: string - *359 - - *647 + - *648 - *360 - *361 - *362 + - *363 - *113 - *111 - *112 @@ -94455,7 +94514,7 @@ paths: application/json: schema: type: array - items: &651 + items: &652 type: object description: A Dependabot alert. properties: @@ -94502,7 +94561,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *648 + security_advisory: *649 security_vulnerability: *140 url: *141 html_url: *142 @@ -94533,8 +94592,8 @@ paths: nullable: true maxLength: 280 fixed_at: *146 - auto_dismissed_at: *649 - dismissal_request: *650 + auto_dismissed_at: *650 + dismissal_request: *651 assignees: type: array description: The users assigned to this alert. @@ -94567,6 +94626,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -94688,6 +94748,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -94789,9 +94850,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *510 - *511 - - &652 + - *512 + - &653 name: alert_number in: path description: |- @@ -94806,7 +94867,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: default: value: @@ -94818,6 +94879,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -94938,9 +95000,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *510 - *511 - - *652 + - *512 + - *653 requestBody: required: true content: @@ -95013,7 +95075,7 @@ paths: description: Response content: application/json: - schema: *651 + schema: *652 examples: default: value: @@ -95025,6 +95087,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -95143,8 +95206,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -95162,7 +95225,7 @@ paths: type: integer secrets: type: array - items: &655 + items: &656 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -95215,16 +95278,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *653 + schema: *654 examples: - default: *654 + default: *655 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -95244,15 +95307,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '200': description: Response content: application/json: - schema: *655 + schema: *656 examples: default: value: @@ -95278,8 +95341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 requestBody: required: true @@ -95332,8 +95395,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *510 - *511 + - *512 - *306 responses: '204': @@ -95356,8 +95419,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *510 - *511 + - *512 - 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 @@ -95520,8 +95583,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -95759,8 +95822,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *510 - *511 + - *512 - name: sbom_uuid in: path required: true @@ -95771,7 +95834,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *656 + Location: *657 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -95792,8 +95855,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -95831,8 +95894,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -95907,7 +95970,7 @@ paths: - version - url additionalProperties: false - metadata: &657 + metadata: &658 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -95940,7 +96003,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *657 + metadata: *658 resolved: type: object description: A collection of resolved package dependencies. @@ -95953,7 +96016,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *657 + metadata: *658 relationship: type: string description: A notation of whether a dependency is requested @@ -96082,8 +96145,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *510 - *511 + - *512 - name: sha description: The SHA recorded at creation time. in: query @@ -96123,9 +96186,9 @@ paths: application/json: schema: type: array - items: *658 + items: *659 examples: - default: *659 + default: *660 headers: Link: *48 x-github: @@ -96191,8 +96254,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -96273,7 +96336,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: simple-example: summary: Simple example @@ -96346,9 +96409,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *510 - *511 - - &660 + - *512 + - &661 name: deployment_id description: deployment_id parameter in: path @@ -96360,7 +96423,7 @@ paths: description: Response content: application/json: - schema: *658 + schema: *659 examples: default: value: @@ -96425,9 +96488,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *510 - *511 - - *660 + - *512 + - *661 responses: '204': description: Response @@ -96449,9 +96512,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *510 - *511 - - *660 + - *512 + - *661 - *17 - *19 responses: @@ -96461,7 +96524,7 @@ paths: application/json: schema: type: array - items: &661 + items: &662 title: Deployment Status description: The status of a deployment. type: object @@ -96622,9 +96685,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *510 - *511 - - *660 + - *512 + - *661 requestBody: required: true content: @@ -96699,9 +96762,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: &662 + default: &663 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -96757,9 +96820,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *510 - *511 - - *660 + - *512 + - *661 - name: status_id in: path required: true @@ -96770,9 +96833,9 @@ paths: description: Response content: application/json: - schema: *661 + schema: *662 examples: - default: *662 + default: *663 '404': *6 x-github: githubCloudOnly: false @@ -96799,12 +96862,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 - - *663 + - *512 - *664 - *665 - *666 + - *667 - *17 - *19 responses: @@ -96814,9 +96877,9 @@ paths: application/json: schema: type: array - items: *667 + items: *668 examples: - default: *668 + default: *669 '404': *6 '403': *29 '500': *41 @@ -96840,8 +96903,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -96853,7 +96916,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *667 + schema: *668 examples: default: value: @@ -96909,8 +96972,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -96969,12 +97032,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 - - *663 + - *512 - *664 - *665 - *666 + - *667 - *17 - *19 responses: @@ -96984,9 +97047,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 '404': *6 '403': *29 '500': *41 @@ -97010,8 +97073,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97023,7 +97086,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -97074,8 +97137,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97113,7 +97176,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -97164,8 +97227,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97236,8 +97299,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97270,12 +97333,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -97285,9 +97348,9 @@ paths: application/json: schema: type: array - items: *370 + items: *371 examples: - default: *371 + default: *372 '404': *6 '403': *29 '500': *41 @@ -97312,8 +97375,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97325,7 +97388,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *370 + schema: *371 examples: default: value: @@ -97383,8 +97446,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *510 - *511 + - *512 - name: alert_number in: path required: true @@ -97453,8 +97516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -97511,8 +97574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -97529,7 +97592,7 @@ paths: type: integer environments: type: array - items: &672 + items: &673 title: Environment description: Details of a deployment environment type: object @@ -97581,7 +97644,7 @@ paths: type: type: string example: wait_timer - wait_timer: &674 + wait_timer: &675 type: integer example: 30 description: The amount of time to delay a job after @@ -97618,7 +97681,7 @@ paths: items: type: object properties: - type: *671 + type: *672 reviewer: anyOf: - *4 @@ -97642,7 +97705,7 @@ paths: - id - node_id - type - deployment_branch_policy: &675 + deployment_branch_policy: &676 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -97758,9 +97821,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *510 - *511 - - &673 + - *512 + - &674 name: environment_name in: path required: true @@ -97773,9 +97836,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: &676 + default: &677 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -97859,9 +97922,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *510 - *511 - - *673 + - *512 + - *674 requestBody: required: false content: @@ -97870,7 +97933,7 @@ paths: type: object nullable: true properties: - wait_timer: *674 + wait_timer: *675 prevent_self_review: type: boolean example: false @@ -97887,13 +97950,13 @@ paths: items: type: object properties: - type: *671 + type: *672 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *675 + deployment_branch_policy: *676 additionalProperties: false examples: default: @@ -97913,9 +97976,9 @@ paths: description: Response content: application/json: - schema: *672 + schema: *673 examples: - default: *676 + default: *677 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -97939,9 +98002,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *510 - *511 - - *673 + - *512 + - *674 responses: '204': description: Default response @@ -97966,9 +98029,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *17 - *19 responses: @@ -97986,7 +98049,7 @@ paths: example: 2 branch_policies: type: array - items: &677 + items: &678 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -98043,9 +98106,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 + - *512 + - *674 requestBody: required: true content: @@ -98091,9 +98154,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - example-wildcard: &678 + example-wildcard: &679 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -98135,10 +98198,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 - - &679 + - *512 + - *674 + - &680 name: branch_policy_id in: path required: true @@ -98150,9 +98213,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98171,10 +98234,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 - - *679 + - *512 + - *674 + - *680 requestBody: required: true content: @@ -98202,9 +98265,9 @@ paths: description: Response content: application/json: - schema: *677 + schema: *678 examples: - default: *678 + default: *679 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98223,10 +98286,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *510 - *511 - - *673 - - *679 + - *512 + - *674 + - *680 responses: '204': description: Response @@ -98251,9 +98314,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 responses: '200': description: List of deployment protection rules @@ -98269,7 +98332,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &680 + items: &681 title: Deployment protection rule description: Deployment protection rule type: object @@ -98288,7 +98351,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &681 + app: &682 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -98387,9 +98450,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 requestBody: content: application/json: @@ -98410,9 +98473,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *680 + schema: *681 examples: - default: &682 + default: &683 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -98447,9 +98510,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 - *19 - *17 responses: @@ -98468,7 +98531,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *681 + items: *682 examples: default: value: @@ -98503,10 +98566,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *510 - *511 - - *673 - - &683 + - *512 + - *674 + - &684 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -98518,9 +98581,9 @@ paths: description: Response content: application/json: - schema: *680 + schema: *681 examples: - default: *682 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98541,10 +98604,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *673 + - *674 + - *512 - *511 - - *510 - - *683 + - *684 responses: '204': description: Response @@ -98570,9 +98633,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *17 - *19 responses: @@ -98590,9 +98653,9 @@ paths: type: integer secrets: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -98617,9 +98680,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *510 - *511 - - *673 + - *512 + - *674 responses: '200': description: Response @@ -98649,18 +98712,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *306 responses: '200': description: Response content: application/json: - schema: *540 + schema: *541 examples: - default: *554 + default: *555 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98682,9 +98745,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *306 requestBody: required: true @@ -98742,9 +98805,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *306 responses: '204': @@ -98770,9 +98833,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *315 - *19 responses: @@ -98790,9 +98853,9 @@ paths: type: integer variables: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -98815,9 +98878,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *510 - *511 - - *673 + - *512 + - *674 requestBody: required: true content: @@ -98869,18 +98932,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *510 - *511 - - *673 + - *512 + - *674 - *309 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *555 + default: *556 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -98901,10 +98964,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *510 - *511 + - *512 - *309 - - *673 + - *674 requestBody: required: true content: @@ -98946,10 +99009,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *510 - *511 + - *512 - *309 - - *673 + - *674 responses: '204': description: Response @@ -98971,8 +99034,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -99040,8 +99103,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *510 - *511 + - *512 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -99200,8 +99263,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -99233,9 +99296,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 '400': *14 '422': *15 '403': *29 @@ -99256,8 +99319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -99317,7 +99380,7 @@ paths: schema: oneOf: - *271 - - *684 + - *685 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99342,8 +99405,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *510 - *511 + - *512 - name: file_sha in: path required: true @@ -99442,8 +99505,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -99552,7 +99615,7 @@ paths: description: Response content: application/json: - schema: &685 + schema: &686 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -99766,15 +99829,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *510 - *511 - - *630 + - *512 + - *631 responses: '200': description: Response content: application/json: - schema: *685 + schema: *686 examples: default: value: @@ -99830,9 +99893,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *510 - *511 - - &686 + - *512 + - &687 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. @@ -99849,7 +99912,7 @@ paths: application/json: schema: type: array - items: &687 + items: &688 title: Git Reference description: Git references within a repository type: object @@ -99924,17 +99987,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *510 - *511 - - *686 + - *512 + - *687 responses: '200': description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: &688 + default: &689 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -99963,8 +100026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -99993,9 +100056,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: *688 + default: *689 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -100021,9 +100084,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *510 - *511 - - *686 + - *512 + - *687 requestBody: required: true content: @@ -100052,9 +100115,9 @@ paths: description: Response content: application/json: - schema: *687 + schema: *688 examples: - default: *688 + default: *689 '422': *15 '409': *122 x-github: @@ -100072,9 +100135,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *510 - *511 - - *686 + - *512 + - *687 responses: '204': description: Response @@ -100129,8 +100192,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -100197,7 +100260,7 @@ paths: description: Response content: application/json: - schema: &690 + schema: &691 title: Git Tag description: Metadata for a Git tag type: object @@ -100248,7 +100311,7 @@ paths: - sha - type - url - verification: *689 + verification: *690 required: - sha - url @@ -100258,7 +100321,7 @@ paths: - tag - message examples: - default: &691 + default: &692 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -100331,8 +100394,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *510 - *511 + - *512 - name: tag_sha in: path required: true @@ -100343,9 +100406,9 @@ paths: description: Response content: application/json: - schema: *690 + schema: *691 examples: - default: *691 + default: *692 '404': *6 '409': *122 x-github: @@ -100369,8 +100432,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -100443,7 +100506,7 @@ paths: description: Response content: application/json: - schema: &692 + schema: &693 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -100539,8 +100602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *510 - *511 + - *512 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -100563,7 +100626,7 @@ paths: description: Response content: application/json: - schema: *692 + schema: *693 examples: default-response: summary: Default response @@ -100621,8 +100684,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -100665,8 +100728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -100676,7 +100739,7 @@ paths: application/json: schema: type: array - items: &693 + items: &694 title: Webhook description: Webhooks for repositories. type: object @@ -100730,7 +100793,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &983 + last_response: &984 title: Hook Response type: object properties: @@ -100804,8 +100867,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -100857,9 +100920,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: &694 + default: &695 value: type: Repository id: 12345678 @@ -100907,17 +100970,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '200': description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '404': *6 x-github: githubCloudOnly: false @@ -100937,9 +101000,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 requestBody: required: true content: @@ -100984,9 +101047,9 @@ paths: description: Response content: application/json: - schema: *693 + schema: *694 examples: - default: *694 + default: *695 '422': *15 '404': *6 x-github: @@ -101007,9 +101070,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '204': description: Response @@ -101033,9 +101096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '200': description: Response @@ -101062,9 +101125,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *510 - *511 - - *376 + - *512 + - *377 requestBody: required: false content: @@ -101108,12 +101171,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *510 - *511 - - *376 - - *17 + - *512 - *377 + - *17 - *378 + - *379 responses: '200': description: Response @@ -101121,9 +101184,9 @@ paths: application/json: schema: type: array - items: *379 + items: *380 examples: - default: *380 + default: *381 '400': *14 '422': *15 x-github: @@ -101142,18 +101205,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 - *16 responses: '200': description: Response content: application/json: - schema: *381 + schema: *382 examples: - default: *382 + default: *383 '400': *14 '422': *15 x-github: @@ -101172,9 +101235,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 - *16 responses: '202': *40 @@ -101197,9 +101260,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '204': description: Response @@ -101224,9 +101287,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *510 - *511 - - *376 + - *512 + - *377 responses: '204': description: Response @@ -101249,8 +101312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response if immutable releases are enabled @@ -101296,8 +101359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *510 - *511 + - *512 responses: '204': *129 '409': *122 @@ -101317,8 +101380,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *510 - *511 + - *512 responses: '204': *129 '409': *122 @@ -101375,14 +101438,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &695 + schema: &696 title: Import description: A repository import from an external source. type: object @@ -101481,7 +101544,7 @@ paths: - html_url - authors_url examples: - default: &698 + default: &699 value: vcs: subversion use_lfs: true @@ -101497,7 +101560,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': &696 + '503': &697 description: Unavailable due to service under maintenance. content: application/json: @@ -101526,8 +101589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -101575,7 +101638,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: default: value: @@ -101600,7 +101663,7 @@ paths: type: string '422': *15 '404': *6 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101628,8 +101691,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -101678,7 +101741,7 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: example-1: summary: Example 1 @@ -101726,7 +101789,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': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101749,12 +101812,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *510 - *511 + - *512 responses: '204': description: Response - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101780,9 +101843,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *510 - *511 - - &908 + - *512 + - &909 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -101796,7 +101859,7 @@ paths: application/json: schema: type: array - items: &697 + items: &698 title: Porter Author description: Porter Author type: object @@ -101850,7 +101913,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': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101875,8 +101938,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *510 - *511 + - *512 - name: author_id in: path required: true @@ -101906,7 +101969,7 @@ paths: description: Response content: application/json: - schema: *697 + schema: *698 examples: default: value: @@ -101919,7 +101982,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101943,8 +102006,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -101985,7 +102048,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102013,8 +102076,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -102041,11 +102104,11 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: - default: *698 + default: *699 '422': *15 - '503': *696 + '503': *697 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102068,8 +102131,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102077,8 +102140,8 @@ paths: application/json: schema: *22 examples: - default: *394 - '301': *516 + default: *395 + '301': *517 '404': *6 x-github: githubCloudOnly: false @@ -102098,8 +102161,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102107,12 +102170,12 @@ paths: application/json: schema: anyOf: - - *396 + - *397 - type: object properties: {} additionalProperties: false examples: - default: &700 + default: &701 value: limit: collaborators_only origin: repository @@ -102137,13 +102200,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *699 + schema: *700 examples: default: summary: Example request body @@ -102155,9 +102218,9 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: - default: *700 + default: *701 '409': description: Response x-github: @@ -102179,8 +102242,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -102207,8 +102270,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102262,13 +102325,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: &701 + schema: &702 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -102318,13 +102381,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: application/json: - schema: *701 + schema: *702 examples: default: summary: Example request body @@ -102357,8 +102420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102411,8 +102474,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -102488,8 +102551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -102499,9 +102562,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: &900 + default: &901 value: - id: 1 repository: @@ -102632,9 +102695,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *510 - *511 - - *400 + - *512 + - *401 requestBody: required: false content: @@ -102663,7 +102726,7 @@ paths: description: Response content: application/json: - schema: *702 + schema: *703 examples: default: value: @@ -102794,9 +102857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *510 - *511 - - *400 + - *512 + - *401 responses: '204': description: Response @@ -102819,8 +102882,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -102828,9 +102891,9 @@ paths: application/json: schema: type: array - items: *404 + items: *405 examples: - default: *703 + default: *704 '404': *6 x-github: githubCloudOnly: false @@ -102859,8 +102922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *510 - *511 + - *512 - 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 @@ -102922,7 +102985,7 @@ paths: required: false schema: type: string - - *407 + - *408 - name: sort description: What to sort results by. in: query @@ -102947,7 +103010,7 @@ paths: type: array items: *235 examples: - default: &717 + default: &718 value: - id: 1 node_id: MDU6SXNzdWUx @@ -103096,7 +103159,7 @@ paths: state_reason: completed headers: Link: *48 - '301': *516 + '301': *517 '422': *15 '404': *6 x-github: @@ -103125,8 +103188,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -103228,7 +103291,7 @@ paths: application/json: schema: *235 examples: - default: &714 + default: &715 value: id: 1 node_id: MDU6SXNzdWUx @@ -103394,8 +103457,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *510 - *511 + - *512 - *259 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -103416,9 +103479,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: &716 + default: &717 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -103477,17 +103540,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: &705 + default: &706 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -103543,8 +103606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -103567,9 +103630,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 '422': *15 x-github: githubCloudOnly: false @@ -103587,8 +103650,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -103617,15 +103680,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *704 + schema: *705 examples: default: value: @@ -103698,8 +103761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -103725,8 +103788,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -103753,9 +103816,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -103776,8 +103839,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -103810,16 +103873,16 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -103841,10 +103904,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *510 - *511 + - *512 - *251 - - *707 + - *708 responses: '204': description: Response @@ -103864,8 +103927,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -103875,7 +103938,7 @@ paths: application/json: schema: type: array - items: &713 + items: &714 title: Issue Event description: Issue Event type: object @@ -103918,8 +103981,8 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *708 - required: *709 + properties: *709 + required: *710 nullable: true label: title: Issue Event Label @@ -104028,7 +104091,7 @@ paths: required: - from - to - issue_type: &710 + issue_type: &711 title: Issue Type description: The type of issue. type: object @@ -104056,14 +104119,14 @@ paths: required: - id - name - prev_issue_type: *710 + prev_issue_type: *711 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &711 + properties: &712 number: type: integer description: The number of the referenced issue. @@ -104101,7 +104164,7 @@ paths: - id - node_id - name - required: &712 + required: &713 - number - title - state @@ -104113,24 +104176,24 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -104141,7 +104204,7 @@ paths: is disabled or the event type does not support intent. type: object nullable: true - properties: &718 + properties: &719 rationale: type: string description: The reasoning the agent provided for the change. @@ -104354,8 +104417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *510 - *511 + - *512 - name: event_id in: path required: true @@ -104366,7 +104429,7 @@ paths: description: Response content: application/json: - schema: *713 + schema: *714 examples: default: value: @@ -104593,9 +104656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *510 - *511 - - &715 + - *512 + - &716 name: issue_number description: The number that identifies the issue. in: path @@ -104611,7 +104674,7 @@ paths: examples: default: summary: Issue - value: *714 + value: *715 pinned_comment: summary: Issue with pinned comment value: @@ -104791,7 +104854,7 @@ paths: site_admin: false author_association: COLLABORATOR state_reason: completed - '301': *516 + '301': *517 '404': *6 '410': *33 '304': *38 @@ -104818,9 +104881,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -105167,11 +105230,11 @@ paths: - already_applied - issue_already_closed examples: - default: *714 + default: *715 '422': *15 '503': *204 '403': *29 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -105191,9 +105254,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -105243,7 +105306,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105259,9 +105322,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: content: application/json: @@ -105288,7 +105351,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -105310,9 +105373,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: assignee in: path required: true @@ -105352,9 +105415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *242 - *17 - *19 @@ -105365,9 +105428,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: *716 + default: *717 headers: Link: *48 '404': *6 @@ -105400,9 +105463,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -105424,9 +105487,9 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: - default: *705 + default: *706 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -105461,9 +105524,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -105475,10 +105538,10 @@ paths: type: array items: *235 examples: - default: *717 + default: *718 headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -105508,9 +105571,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -105534,13 +105597,13 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *516 + '301': *517 '403': *29 '410': *33 '422': *15 @@ -105573,9 +105636,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -105589,8 +105652,8 @@ paths: application/json: schema: *235 examples: - default: *714 - '301': *516 + default: *715 + '301': *517 '400': *14 '401': *25 '403': *29 @@ -105621,9 +105684,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -105635,10 +105698,10 @@ paths: type: array items: *235 examples: - default: *717 + default: *718 headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -105657,9 +105720,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -105673,7 +105736,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &724 + - &725 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -105726,7 +105789,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - label - id @@ -105738,7 +105801,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &725 + - &726 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -105791,7 +105854,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - label - id @@ -105837,7 +105900,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - id - node_id @@ -105896,7 +105959,7 @@ paths: - performed_via_github_app - assignee - assigner - - &726 + - &727 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -105947,7 +106010,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &727 + - &728 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -105998,7 +106061,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &728 + - &729 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -106052,7 +106115,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &729 + - &730 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -106099,7 +106162,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &730 + - &731 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -106146,7 +106209,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &731 + - &732 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -106206,7 +106269,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &732 + - &733 title: Locked Issue Event description: Locked Issue Event type: object @@ -106254,7 +106317,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &733 + - &734 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -106320,7 +106383,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &734 + - &735 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -106386,7 +106449,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &735 + - &736 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -106452,7 +106515,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &736 + - &737 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -106508,7 +106571,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &741 + - &742 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -106541,7 +106604,7 @@ paths: nullable: true properties: *230 required: *231 - issue_type: *710 + issue_type: *711 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -106552,7 +106615,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - issue_type - id @@ -106564,7 +106627,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &742 + - &743 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -106597,7 +106660,7 @@ paths: nullable: true properties: *230 required: *231 - prev_issue_type: *710 + prev_issue_type: *711 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -106608,7 +106671,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - prev_issue_type - id @@ -106620,7 +106683,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &743 + - &744 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -106653,8 +106716,8 @@ paths: nullable: true properties: *230 required: *231 - issue_type: *710 - prev_issue_type: *710 + issue_type: *711 + prev_issue_type: *711 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -106665,7 +106728,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - issue_type - prev_issue_type @@ -106678,7 +106741,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &744 + - &745 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -106718,8 +106781,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - sub_issue - id @@ -106731,7 +106794,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &745 + - &746 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -106771,8 +106834,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - sub_issue - id @@ -106784,7 +106847,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &746 + - &747 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -106824,8 +106887,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - parent_issue - id @@ -106837,7 +106900,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &747 + - &748 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -106877,8 +106940,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - parent_issue - id @@ -106890,7 +106953,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &748 + - &749 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -106930,8 +106993,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocked_by - id @@ -106943,7 +107006,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &749 + - &750 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -106983,8 +107046,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocked_by - id @@ -106996,7 +107059,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &750 + - &751 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -107036,8 +107099,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocking - id @@ -107049,7 +107112,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &751 + - &752 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -107089,8 +107152,8 @@ paths: events). type: object nullable: true - properties: *711 - required: *712 + properties: *712 + required: *713 required: - blocking - id @@ -107154,9 +107217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -107166,9 +107229,9 @@ paths: application/json: schema: type: array - items: *719 + items: *720 examples: - default: &720 + default: &721 value: - issue_field_id: 1 issue_field_name: DRI @@ -107208,7 +107271,7 @@ paths: color: green headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -107239,9 +107302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -107311,9 +107374,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *719 + items: *720 examples: - default: *720 + default: *721 '400': *14 '403': *29 '404': *6 @@ -107349,9 +107412,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -107416,9 +107479,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *719 + items: *720 examples: - default: *720 + default: *721 '400': *14 '403': *29 '404': *6 @@ -107449,10 +107512,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *510 - *511 - - *715 - - *403 + - *512 + - *716 + - *404 responses: '204': description: Issue field value deleted successfully @@ -107477,9 +107540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -107491,7 +107554,7 @@ paths: type: array items: *234 examples: - default: &721 + default: &722 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -107509,7 +107572,7 @@ paths: default: false headers: Link: *48 - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -107527,9 +107590,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -107609,8 +107672,8 @@ paths: type: array items: *234 examples: - default: *721 - '301': *516 + default: *722 + '301': *517 '404': *6 '410': *33 '422': *15 @@ -107629,9 +107692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -107693,8 +107756,8 @@ paths: type: array items: *234 examples: - default: *721 - '301': *516 + default: *722 + '301': *517 '404': *6 '410': *33 '422': *15 @@ -107713,13 +107776,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 responses: '204': description: Response - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -107740,9 +107803,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: name in: path required: true @@ -107766,7 +107829,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *516 + '301': *517 '404': *6 '410': *33 x-github: @@ -107788,9 +107851,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: false content: @@ -107836,9 +107899,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 responses: '204': description: Response @@ -107868,9 +107931,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 responses: '200': description: Response @@ -107878,8 +107941,8 @@ paths: application/json: schema: *235 examples: - default: *714 - '301': *516 + default: *715 + '301': *517 '404': *6 '410': *33 x-github: @@ -107898,9 +107961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -107926,9 +107989,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -107950,9 +108013,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -107984,16 +108047,16 @@ paths: description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Response content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -108015,10 +108078,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *510 - *511 - - *715 - - *707 + - *512 + - *716 + - *708 responses: '204': description: Response @@ -108047,9 +108110,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -108073,7 +108136,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -108106,9 +108169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 responses: @@ -108120,7 +108183,7 @@ paths: type: array items: *235 examples: - default: *717 + default: *718 headers: Link: *48 '404': *6 @@ -108152,9 +108215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -108183,7 +108246,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -108210,9 +108273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 requestBody: required: true content: @@ -108245,7 +108308,7 @@ paths: application/json: schema: *235 examples: - default: *714 + default: *715 '403': *29 '404': *6 '422': *7 @@ -108274,9 +108337,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-issue-suggestions parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: state in: query required: false @@ -108313,7 +108376,7 @@ paths: application/json: schema: type: array - items: &722 + items: &723 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -108465,9 +108528,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#approve-an-issue-suggestion parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: suggestion_id in: path required: true @@ -108479,9 +108542,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *723 examples: - default: &723 + default: &724 value: id: 12 issue_id: 4567 @@ -108519,9 +108582,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *510 - *511 - - *715 + - *512 + - *716 - name: suggestion_id in: path required: true @@ -108533,9 +108596,9 @@ paths: description: Response content: application/json: - schema: *722 + schema: *723 examples: - default: *723 + default: *724 '403': *29 '404': *6 '422': *15 @@ -108555,9 +108618,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *510 - *511 - - *715 + - *512 + - *716 - *17 - *19 - name: exclude @@ -108578,7 +108641,6 @@ paths: description: Timeline Event type: object anyOf: - - *724 - *725 - *726 - *727 @@ -108591,6 +108653,7 @@ paths: - *734 - *735 - *736 + - *737 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -108651,15 +108714,15 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *737 - required: *738 + properties: *738 + required: *739 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *739 - required: *740 + properties: *740 + required: *741 nullable: true required: - event @@ -108914,7 +108977,7 @@ paths: type: string comments: type: array - items: &774 + items: &775 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -109129,7 +109192,7 @@ paths: type: string comments: type: array - items: *626 + items: *627 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -109173,7 +109236,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - id - node_id @@ -109274,7 +109337,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *718 + properties: *719 required: - id - node_id @@ -109285,7 +109348,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *741 - *742 - *743 - *744 @@ -109296,6 +109358,7 @@ paths: - *749 - *750 - *751 + - *752 examples: default: value: @@ -109469,8 +109532,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -109480,7 +109543,7 @@ paths: application/json: schema: type: array - items: &752 + items: &753 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -109546,8 +109609,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -109583,9 +109646,9 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: &753 + default: &754 value: id: 1 key: ssh-rsa AAA... @@ -109619,9 +109682,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *510 - *511 - - &754 + - *512 + - &755 name: key_id description: The unique identifier of the key. in: path @@ -109633,9 +109696,9 @@ paths: description: Response content: application/json: - schema: *752 + schema: *753 examples: - default: *753 + default: *754 '404': *6 x-github: githubCloudOnly: false @@ -109653,9 +109716,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *510 - *511 - - *754 + - *512 + - *755 responses: '204': description: Response @@ -109675,8 +109738,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -109688,7 +109751,7 @@ paths: type: array items: *234 examples: - default: *721 + default: *722 headers: Link: *48 '404': *6 @@ -109709,8 +109772,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -109748,7 +109811,7 @@ paths: application/json: schema: *234 examples: - default: &755 + default: &756 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -109780,8 +109843,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *510 - *511 + - *512 - name: name in: path required: true @@ -109794,7 +109857,7 @@ paths: application/json: schema: *234 examples: - default: *755 + default: *756 '404': *6 x-github: githubCloudOnly: false @@ -109811,8 +109874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *510 - *511 + - *512 - name: name in: path required: true @@ -109877,8 +109940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *510 - *511 + - *512 - name: name in: path required: true @@ -109904,8 +109967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -109941,8 +110004,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *510 - *511 + - *512 responses: '202': *40 '403': @@ -109970,8 +110033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -109997,9 +110060,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *510 - *511 - - *599 + - *512 + - *600 responses: '200': description: Response @@ -110144,8 +110207,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110210,8 +110273,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110245,9 +110308,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *629 + schema: *630 examples: - default: *756 + default: *757 '204': description: Response when already merged '404': @@ -110272,8 +110335,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *510 - *511 + - *512 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -110314,12 +110377,12 @@ paths: application/json: schema: type: array - items: &757 + items: &758 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 examples: default: value: @@ -110375,8 +110438,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110416,9 +110479,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: &758 + default: &759 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -110477,9 +110540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *510 - *511 - - &759 + - *512 + - &760 name: milestone_number description: The number that identifies the milestone. in: path @@ -110491,9 +110554,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 '404': *6 x-github: githubCloudOnly: false @@ -110510,9 +110573,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *510 - *511 - - *759 + - *512 + - *760 requestBody: required: false content: @@ -110550,9 +110613,9 @@ paths: description: Response content: application/json: - schema: *757 + schema: *758 examples: - default: *758 + default: *759 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -110568,9 +110631,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *510 - *511 - - *759 + - *512 + - *760 responses: '204': description: Response @@ -110591,9 +110654,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *510 - *511 - - *759 + - *512 + - *760 - *17 - *19 responses: @@ -110605,7 +110668,7 @@ paths: type: array items: *234 examples: - default: *721 + default: *722 headers: Link: *48 x-github: @@ -110624,12 +110687,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *510 - *511 - - *760 + - *512 - *761 - - *242 - *762 + - *242 + - *763 - *17 - *19 responses: @@ -110641,7 +110704,7 @@ paths: type: array items: *262 examples: - default: *763 + default: *764 headers: Link: *48 x-github: @@ -110665,8 +110728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -110724,14 +110787,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: &764 + schema: &765 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -110856,7 +110919,7 @@ paths: - custom_404 - public examples: - default: &765 + default: &766 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -110897,8 +110960,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -110952,9 +111015,9 @@ paths: description: Response content: application/json: - schema: *764 + schema: *765 examples: - default: *765 + default: *766 '422': *15 '409': *122 x-github: @@ -110977,8 +111040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -111085,8 +111148,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -111112,8 +111175,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -111123,7 +111186,7 @@ paths: application/json: schema: type: array - items: &766 + items: &767 title: Page Build description: Page Build type: object @@ -111217,8 +111280,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *510 - *511 + - *512 responses: '201': description: Response @@ -111263,16 +111326,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: &767 + default: &768 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -111320,8 +111383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *510 - *511 + - *512 - name: build_id in: path required: true @@ -111332,9 +111395,9 @@ paths: description: Response content: application/json: - schema: *766 + schema: *767 examples: - default: *767 + default: *768 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111354,8 +111417,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -111460,9 +111523,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *510 - *511 - - &768 + - *512 + - &769 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -111520,9 +111583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *510 - *511 - - *768 + - *512 + - *769 responses: '204': *129 '404': *6 @@ -111549,8 +111612,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -111808,8 +111871,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Private vulnerability reporting status @@ -111846,8 +111909,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': *129 '422': *14 @@ -111868,8 +111931,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': *129 '422': *14 @@ -111891,8 +111954,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -111902,7 +111965,7 @@ paths: type: array items: *164 examples: - default: *769 + default: *770 '403': *29 '404': *6 x-github: @@ -111924,8 +111987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -111941,7 +112004,7 @@ paths: required: - properties examples: - default: *770 + default: *771 responses: '204': description: No Content when custom property values are successfully created @@ -111979,8 +112042,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *510 - *511 + - *512 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -112040,9 +112103,9 @@ paths: application/json: schema: type: array - items: *591 + items: *592 examples: - default: *771 + default: *772 headers: Link: *48 '304': *38 @@ -112074,8 +112137,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -112140,7 +112203,7 @@ paths: description: Response content: application/json: - schema: &776 + schema: &777 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -112251,8 +112314,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 nullable: true active_lock_reason: type: string @@ -112284,7 +112347,7 @@ paths: items: *4 requested_teams: type: array - items: *494 + items: *495 head: type: object properties: @@ -112322,14 +112385,14 @@ paths: _links: type: object properties: - comments: *441 - commits: *441 - statuses: *441 - html: *441 - issue: *441 - review_comments: *441 - review_comment: *441 - self: *441 + comments: *442 + commits: *442 + statuses: *442 + html: *442 + issue: *442 + review_comments: *442 + review_comment: *442 + self: *442 required: - comments - commits @@ -112340,8 +112403,8 @@ paths: - review_comment - self author_association: *232 - auto_merge: *772 - stack: *773 + auto_merge: *773 + stack: *774 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -112431,7 +112494,7 @@ paths: - merged_by - review_comments examples: - default: &777 + default: &778 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -112938,8 +113001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *510 - *511 + - *512 - name: sort in: query required: false @@ -112968,9 +113031,9 @@ paths: application/json: schema: type: array - items: *774 + items: *775 examples: - default: &779 + default: &780 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -113047,17 +113110,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *510 - *511 + - *512 - *251 responses: '200': description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: &775 + default: &776 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -113132,8 +113195,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -113156,9 +113219,9 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: - default: *775 + default: *776 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -113174,8 +113237,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *510 - *511 + - *512 - *251 responses: '204': @@ -113197,8 +113260,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *510 - *511 + - *512 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -113225,9 +113288,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -113248,8 +113311,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *510 - *511 + - *512 - *251 requestBody: required: true @@ -113282,16 +113345,16 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -113313,10 +113376,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *510 - *511 + - *512 - *251 - - *707 + - *708 responses: '204': description: Response @@ -113359,9 +113422,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *510 - *511 - - &778 + - *512 + - &779 name: pull_number description: The number that identifies the pull request. in: path @@ -113374,9 +113437,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *776 + schema: *777 examples: - default: *777 + default: *778 '304': *38 '404': *6 '406': @@ -113411,9 +113474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -113455,9 +113518,9 @@ paths: description: Response content: application/json: - schema: *776 + schema: *777 examples: - default: *777 + default: *778 '422': *15 '403': *29 x-github: @@ -113479,9 +113542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: true content: @@ -113541,17 +113604,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '401': *25 '403': *29 '404': *6 @@ -113581,9 +113644,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *259 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -113604,9 +113667,9 @@ paths: application/json: schema: type: array - items: *774 + items: *775 examples: - default: *779 + default: *780 headers: Link: *48 x-github: @@ -113639,9 +113702,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: true content: @@ -113746,7 +113809,7 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: example-for-a-multi-line-comment: value: @@ -113834,9 +113897,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *251 requestBody: required: true @@ -113859,7 +113922,7 @@ paths: description: Response content: application/json: - schema: *774 + schema: *775 examples: default: value: @@ -113945,9 +114008,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *17 - *19 responses: @@ -113957,9 +114020,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *780 + default: *781 headers: Link: *48 x-github: @@ -113989,9 +114052,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *17 - *19 responses: @@ -114001,7 +114064,7 @@ paths: application/json: schema: type: array - items: *641 + items: *642 examples: default: value: @@ -114039,9 +114102,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *510 - *511 - - *778 + - *512 + - *779 responses: '204': description: Response if pull request has been merged @@ -114064,9 +114127,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -114188,9 +114251,9 @@ paths: category: pulls subcategory: pulls parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -114242,7 +114305,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &781 + schema: &782 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -114327,7 +114390,7 @@ paths: merge queue content: application/json: - schema: *781 + schema: *782 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -114347,7 +114410,7 @@ paths: this pull request content: application/json: - schema: *781 + schema: *782 examples: response-if-a-merge-request-already-exists: value: @@ -114363,7 +114426,7 @@ paths: it is closed content: application/json: - schema: *781 + schema: *782 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -114395,9 +114458,9 @@ paths: category: pulls subcategory: pulls parameters: - - *510 - *511 - - *778 + - *512 + - *779 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -114410,7 +114473,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *781 + schema: *782 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -114458,9 +114521,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 responses: '200': description: Response @@ -114535,9 +114598,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -114574,7 +114637,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -115110,9 +115173,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: true content: @@ -115146,7 +115209,7 @@ paths: description: Response content: application/json: - schema: *591 + schema: *592 examples: default: value: @@ -115631,9 +115694,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 - *17 - *19 responses: @@ -115643,7 +115706,7 @@ paths: application/json: schema: type: array - items: &782 + items: &783 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -115794,9 +115857,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -115882,9 +115945,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: &784 + default: &785 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -115947,10 +116010,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - &783 + - *512 + - *779 + - &784 name: review_id description: The unique identifier of the review. in: path @@ -115962,9 +116025,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: &785 + default: &786 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -116023,10 +116086,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 requestBody: required: true content: @@ -116049,7 +116112,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: default: value: @@ -116111,18 +116174,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 responses: '200': description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *784 + default: *785 '422': *7 '404': *6 x-github: @@ -116149,10 +116212,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 - *17 - *19 responses: @@ -116235,9 +116298,9 @@ paths: _links: type: object properties: - self: *441 - html: *441 - pull_request: *441 + self: *442 + html: *442 + pull_request: *442 required: - self - html @@ -116387,10 +116450,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 requestBody: required: true content: @@ -116418,7 +116481,7 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: default: value: @@ -116481,10 +116544,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *510 - *511 - - *778 - - *783 + - *512 + - *779 + - *784 requestBody: required: true content: @@ -116519,9 +116582,9 @@ paths: description: Response content: application/json: - schema: *782 + schema: *783 examples: - default: *785 + default: *786 '404': *6 '422': *7 '403': *29 @@ -116543,9 +116606,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *510 - *511 - - *778 + - *512 + - *779 requestBody: required: false content: @@ -116608,8 +116671,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *510 - *511 + - *512 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -116622,9 +116685,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: &787 + default: &788 value: type: file encoding: base64 @@ -116666,8 +116729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *510 - *511 + - *512 - name: dir description: The alternate path to look for a README file in: path @@ -116687,9 +116750,9 @@ paths: description: Response content: application/json: - schema: *786 + schema: *787 examples: - default: *787 + default: *788 '404': *6 '422': *15 x-github: @@ -116711,8 +116774,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -116722,7 +116785,7 @@ paths: application/json: schema: type: array - items: *788 + items: *789 examples: default: value: @@ -116821,8 +116884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -116898,9 +116961,9 @@ paths: description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: &792 + default: &793 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -117005,9 +117068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *510 - *511 - - &790 + - *512 + - &791 name: asset_id description: The unique identifier of the asset. in: path @@ -117019,9 +117082,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: &791 + default: &792 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 @@ -117056,7 +117119,7 @@ paths: type: User site_admin: false '404': *6 - '302': *645 + '302': *646 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117072,9 +117135,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *510 - *511 - - *790 + - *512 + - *791 requestBody: required: false content: @@ -117102,9 +117165,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: *791 + default: *792 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -117120,9 +117183,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *510 - *511 - - *790 + - *512 + - *791 responses: '204': description: Response @@ -117147,8 +117210,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -117233,16 +117296,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *510 - *511 + - *512 responses: '200': description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '404': *6 x-github: githubCloudOnly: false @@ -117260,8 +117323,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *510 - *511 + - *512 - name: tag description: tag parameter in: path @@ -117274,9 +117337,9 @@ paths: description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '404': *6 x-github: githubCloudOnly: false @@ -117298,9 +117361,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *510 - *511 - - &793 + - *512 + - &794 name: release_id description: The unique identifier of the release. in: path @@ -117314,9 +117377,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '401': description: Unauthorized x-github: @@ -117340,9 +117403,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 requestBody: required: false content: @@ -117406,9 +117469,9 @@ paths: description: Response content: application/json: - schema: *788 + schema: *789 examples: - default: *792 + default: *793 '404': description: Not Found if the discussion category name is invalid content: @@ -117429,9 +117492,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 responses: '204': description: Response @@ -117452,9 +117515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *510 - *511 - - *793 + - *512 + - *794 - *17 - *19 responses: @@ -117464,7 +117527,7 @@ paths: application/json: schema: type: array - items: *789 + items: *790 examples: default: value: @@ -117546,9 +117609,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: - - *510 - *511 - - *793 + - *512 + - *794 - name: name in: query required: true @@ -117574,7 +117637,7 @@ paths: description: Response for successful upload content: application/json: - schema: *789 + schema: *790 examples: response-for-successful-upload: value: @@ -117629,9 +117692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -117655,9 +117718,9 @@ paths: application/json: schema: type: array - items: *627 + items: *628 examples: - default: *706 + default: *707 headers: Link: *48 '404': *6 @@ -117678,9 +117741,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *510 - *511 - - *793 + - *512 + - *794 requestBody: required: true content: @@ -117710,16 +117773,16 @@ paths: description: Reaction exists content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '201': description: Reaction created content: application/json: - schema: *627 + schema: *628 examples: - default: *628 + default: *629 '422': *15 x-github: githubCloudOnly: false @@ -117741,10 +117804,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *510 - *511 - - *793 - - *707 + - *512 + - *794 + - *708 responses: '204': description: Response @@ -117768,9 +117831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *510 - *511 - - *562 + - *512 + - *563 - *17 - *19 responses: @@ -117787,7 +117850,7 @@ paths: oneOf: - allOf: - *178 - - &794 + - &795 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -117808,70 +117871,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *179 - - *794 + - *795 - allOf: - *180 - - *794 + - *795 - allOf: - *181 - - *794 + - *795 - allOf: + - *796 - *795 - - *794 - allOf: - *182 - - *794 + - *795 - allOf: - *183 - - *794 + - *795 - allOf: - *184 - - *794 + - *795 - allOf: - *185 - - *794 + - *795 - allOf: - *186 - - *794 + - *795 - allOf: - *187 - - *794 + - *795 - allOf: - *188 - - *794 + - *795 - allOf: - *189 - - *794 + - *795 - allOf: - *190 - - *794 + - *795 - allOf: - *191 - - *794 + - *795 - allOf: - *192 - - *794 + - *795 - allOf: - *193 - - *794 + - *795 - allOf: - *194 - - *794 + - *795 - allOf: - - *796 - - *794 + - *797 + - *795 - allOf: - *195 - - *794 + - *795 - allOf: - *196 - - *794 + - *795 - allOf: - *197 - - *794 + - *795 - allOf: - *198 - - *794 + - *795 examples: default: value: @@ -117910,8 +117973,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - *17 - *19 - name: includes_parents @@ -117922,7 +117985,7 @@ paths: schema: type: boolean default: true - - *797 + - *798 responses: '200': description: Response @@ -117977,8 +118040,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 requestBody: description: Request body required: true @@ -118007,7 +118070,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *798 + items: *799 required: - name - enforcement @@ -118040,7 +118103,7 @@ paths: application/json: schema: *199 examples: - default: &808 + default: &809 value: id: 42 name: super cool ruleset @@ -118088,13 +118151,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *510 - *511 - - *799 - - *108 + - *512 - *800 + - *108 - *801 - *802 + - *803 - *17 - *19 responses: @@ -118102,9 +118165,9 @@ paths: description: Response content: application/json: - schema: *803 + schema: *804 examples: - default: *804 + default: *805 '404': *6 '500': *41 x-github: @@ -118125,17 +118188,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *510 - *511 - - *805 + - *512 + - *806 responses: '200': description: Response content: application/json: - schema: *806 + schema: *807 examples: - default: *807 + default: *808 '404': *6 '500': *41 x-github: @@ -118163,8 +118226,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118186,7 +118249,7 @@ paths: application/json: schema: *199 examples: - default: *808 + default: *809 '404': *6 '500': *41 put: @@ -118204,8 +118267,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118239,7 +118302,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *798 + items: *799 examples: default: value: @@ -118269,7 +118332,7 @@ paths: application/json: schema: *199 examples: - default: *808 + default: *809 '404': *6 '422': *15 '500': *41 @@ -118288,8 +118351,8 @@ paths: category: repos subcategory: rules parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118312,8 +118375,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *510 - *511 + - *512 - *17 - *19 - name: ruleset_id @@ -118331,7 +118394,7 @@ paths: type: array items: *203 examples: - default: *459 + default: *460 '404': *6 '500': *41 x-github: @@ -118350,8 +118413,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *510 - *511 + - *512 - name: ruleset_id description: The ID of the ruleset. in: path @@ -118369,7 +118432,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *461 examples: default: value: @@ -118424,9 +118487,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *510 - *511 - - *461 + - *512 - *462 - *463 - *464 @@ -118434,18 +118496,19 @@ paths: - *466 - *467 - *468 + - *469 - *113 - *19 - *17 - - *809 - *810 - - *469 + - *811 - *470 - *471 - *472 - *473 - *474 - *475 + - *476 responses: '200': description: Response @@ -118472,8 +118535,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *811 - resolution: *812 + state: *812 + resolution: *813 resolved_at: type: string format: date-time @@ -118579,7 +118642,7 @@ paths: pull request. ' - oneOf: *813 + oneOf: *814 nullable: true has_more_locations: type: boolean @@ -118743,16 +118806,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *510 - *511 - - *593 - - *472 + - *512 + - *594 + - *473 responses: '200': description: Response content: application/json: - schema: &814 + schema: &815 type: object properties: number: *136 @@ -118770,8 +118833,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *811 - resolution: *812 + state: *812 + resolution: *813 resolved_at: type: string format: date-time @@ -118877,7 +118940,7 @@ paths: pull request. ' - oneOf: *813 + oneOf: *814 nullable: true has_more_locations: type: boolean @@ -118905,7 +118968,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &1004 + metadata: &1005 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -118978,9 +119041,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 requestBody: required: true content: @@ -118988,8 +119051,8 @@ paths: schema: type: object properties: - state: *811 - resolution: *812 + state: *812 + resolution: *813 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -119033,7 +119096,7 @@ paths: description: Response content: application/json: - schema: *814 + schema: *815 examples: default: value: @@ -119135,9 +119198,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *510 - *511 - - *593 + - *512 + - *594 - *19 - *17 responses: @@ -119148,7 +119211,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &1006 + items: &1007 type: object properties: type: @@ -119174,7 +119237,6 @@ paths: example: commit details: oneOf: - - *815 - *816 - *817 - *818 @@ -119187,6 +119249,7 @@ paths: - *825 - *826 - *827 + - *828 examples: default: value: @@ -119275,11 +119338,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 - - *478 + - *512 - *479 - *480 + - *481 - *113 - *19 - *17 @@ -119292,7 +119355,7 @@ paths: type: array items: *205 examples: - default: *481 + default: *482 headers: Link: *48 '403': *29 @@ -119315,8 +119378,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -119329,9 +119392,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *482 + items: *483 examples: - default: *483 + default: *484 responses: '201': description: All patterns created successfully. @@ -119345,7 +119408,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: *484 + default: *485 '400': *14 '403': *29 '404': *6 @@ -119369,7 +119432,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *485 + items: *486 delete: summary: Bulk delete repository custom patterns description: |- @@ -119388,8 +119451,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -119403,7 +119466,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *486 + items: *487 post_delete_action: type: string description: |- @@ -119416,7 +119479,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *487 + default: *488 responses: '204': description: All patterns deleted successfully. @@ -119443,8 +119506,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *510 - *511 + - *512 - name: pattern_id in: path required: true @@ -119455,9 +119518,9 @@ paths: required: true content: application/json: - schema: *488 + schema: *489 examples: - default: *489 + default: *490 responses: '200': description: Pattern updated successfully. @@ -119465,7 +119528,7 @@ paths: application/json: schema: *205 examples: - default: *490 + default: *491 '400': *14 '403': *29 '404': *6 @@ -119487,8 +119550,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -119496,14 +119559,14 @@ paths: schema: type: object properties: - reason: &829 + reason: &830 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *828 + placeholder_id: *829 required: - reason - placeholder_id @@ -119520,7 +119583,7 @@ paths: schema: type: object properties: - reason: *829 + reason: *830 expire_at: type: string format: date-time @@ -119566,8 +119629,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *510 - *511 + - *512 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -119582,7 +119645,7 @@ paths: properties: incremental_scans: type: array - items: &830 + items: &831 description: Information on a single scan performed by secret scanning on the repository type: object @@ -119613,15 +119676,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *830 + items: *831 backfill_scans: type: array - items: *830 + items: *831 custom_pattern_backfill_scans: type: array items: allOf: - - *830 + - *831 - type: object properties: pattern_name: @@ -119634,7 +119697,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *830 + items: *831 examples: default: value: @@ -119699,8 +119762,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *510 - *511 + - *512 - *113 - name: sort description: The property to sort the results by. @@ -119744,9 +119807,9 @@ paths: application/json: schema: type: array - items: *831 + items: *832 examples: - default: *832 + default: *833 '400': *14 '404': *6 x-github: @@ -119769,8 +119832,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -119843,7 +119906,7 @@ paths: login: type: string description: The username of the user credited. - type: *493 + type: *494 required: - login - type @@ -119930,9 +119993,9 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: &834 + default: &835 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -120162,8 +120225,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -120267,7 +120330,7 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: default: value: @@ -120413,17 +120476,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *510 - *511 - - *833 + - *512 + - *834 responses: '200': description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: *834 + default: *835 '403': *29 '404': *6 x-github: @@ -120447,9 +120510,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *510 - *511 - - *833 + - *512 + - *834 requestBody: required: true content: @@ -120522,7 +120585,7 @@ paths: login: type: string description: The username of the user credited. - type: *493 + type: *494 required: - login - type @@ -120608,10 +120671,10 @@ paths: description: Response content: application/json: - schema: *831 + schema: *832 examples: - default: *834 - add_credit: *834 + default: *835 + add_credit: *835 '403': *29 '404': *6 '422': @@ -120649,9 +120712,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *510 - *511 - - *833 + - *512 + - *834 responses: '202': *40 '400': *14 @@ -120678,17 +120741,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *510 - *511 - - *833 + - *512 + - *834 responses: '202': description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 '400': *14 '422': *15 '403': *29 @@ -120709,8 +120772,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#list-pull-request-stacks parameters: - - *510 - *511 + - *512 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -120842,8 +120905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -120910,7 +120973,7 @@ paths: format: date-time pull_requests: type: array - items: &835 + items: &836 title: Pull Request Stack Pull Request type: object allOf: @@ -121136,8 +121199,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *510 - *511 + - *512 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -121186,7 +121249,7 @@ paths: format: date-time pull_requests: type: array - items: *835 + items: *836 examples: default: value: @@ -121306,8 +121369,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *510 - *511 + - *512 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -121379,7 +121442,7 @@ paths: format: date-time pull_requests: type: array - items: *835 + items: *836 examples: default: value: @@ -121583,8 +121646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *510 - *511 + - *512 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -121633,7 +121696,7 @@ paths: format: date-time pull_requests: type: array - items: *835 + items: *836 examples: default: value: @@ -121739,8 +121802,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -121839,8 +121902,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *510 - *511 + - *512 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -121849,7 +121912,7 @@ paths: application/json: schema: type: array - items: &836 + items: &837 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -121882,8 +121945,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -121959,8 +122022,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -122056,8 +122119,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *510 - *511 + - *512 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -122211,8 +122274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *510 - *511 + - *512 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -122222,7 +122285,7 @@ paths: application/json: schema: type: array - items: *836 + items: *837 examples: default: value: @@ -122255,8 +122318,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *510 - *511 + - *512 - name: sha in: path required: true @@ -122310,7 +122373,7 @@ paths: description: Response content: application/json: - schema: *837 + schema: *838 examples: default: value: @@ -122364,8 +122427,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -122397,14 +122460,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *510 - *511 + - *512 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &838 + schema: &839 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -122472,8 +122535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *510 - *511 + - *512 requestBody: required: false content: @@ -122499,7 +122562,7 @@ paths: description: Response content: application/json: - schema: *838 + schema: *839 examples: default: value: @@ -122526,8 +122589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -122547,8 +122610,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -122627,8 +122690,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *510 - *511 + - *512 - name: ref in: path required: true @@ -122664,8 +122727,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *510 - *511 + - *512 - *17 - *19 responses: @@ -122677,7 +122740,7 @@ paths: type: array items: *329 examples: - default: *419 + default: *420 headers: Link: *48 '404': *6 @@ -122697,8 +122760,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *510 - *511 + - *512 - *19 - *17 responses: @@ -122706,7 +122769,7 @@ paths: description: Response content: application/json: - schema: &839 + schema: &840 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -122718,7 +122781,7 @@ paths: required: - names examples: - default: &840 + default: &841 value: names: - octocat @@ -122741,8 +122804,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -122773,9 +122836,9 @@ paths: description: Response content: application/json: - schema: *839 + schema: *840 examples: - default: *840 + default: *841 '404': *6 '422': *7 x-github: @@ -122796,9 +122859,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *510 - *511 - - &841 + - *512 + - &842 name: per description: The time frame to display results for. in: query @@ -122827,7 +122890,7 @@ paths: example: 128 clones: type: array - items: &842 + items: &843 title: Traffic type: object properties: @@ -122914,8 +122977,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -123005,8 +123068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *510 - *511 + - *512 responses: '200': description: Response @@ -123066,9 +123129,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *510 - *511 - - *841 + - *512 + - *842 responses: '200': description: Response @@ -123087,7 +123150,7 @@ paths: example: 3782 views: type: array - items: *842 + items: *843 required: - uniques - count @@ -123164,8 +123227,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *510 - *511 + - *512 requestBody: required: true content: @@ -123438,8 +123501,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *510 - *511 + - *512 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -123462,8 +123525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -123485,8 +123548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -123512,8 +123575,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *510 - *511 + - *512 - name: ref in: path required: true @@ -123605,9 +123668,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -123758,7 +123821,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &850 + - &851 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -123767,7 +123830,7 @@ paths: schema: type: string example: members - - &855 + - &856 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -123778,7 +123841,7 @@ paths: default: 1 format: int32 example: 1 - - &856 + - &857 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -123820,7 +123883,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &845 + items: &846 allOf: - type: object required: @@ -123895,7 +123958,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &857 + meta: &858 type: object description: The metadata associated with the creation/updates to the user. @@ -123955,30 +124018,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &846 + '400': &847 description: Bad request content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '401': *844 - '403': &847 + schema: *844 + '401': *845 + '403': &848 description: Permission denied - '429': &848 + '429': &849 description: Too many requests content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '500': &849 + schema: *844 + '500': &850 description: Internal server error content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 + schema: *844 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124002,7 +124065,7 @@ paths: required: true content: application/json: - schema: &853 + schema: &854 type: object required: - schemas @@ -124062,9 +124125,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *845 + schema: *846 examples: - group: &851 + group: &852 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -124083,13 +124146,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *846 - '401': *844 - '403': *847 - '409': &854 + '400': *847 + '401': *845 + '403': *848 + '409': &855 description: Duplicate record detected - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124106,7 +124169,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &852 + - &853 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -124114,22 +124177,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *850 + - *851 - *42 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *845 + schema: *846 examples: - default: *851 - '400': *846 - '401': *844 - '403': *847 + default: *852 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124148,13 +124211,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *852 + - *853 - *42 requestBody: required: true content: application/json: - schema: *853 + schema: *854 examples: group: summary: Group @@ -124180,17 +124243,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *845 + schema: *846 examples: - group: *851 - groupWithMembers: *851 - '400': *846 - '401': *844 - '403': *847 + group: *852 + groupWithMembers: *852 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124214,13 +124277,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *852 + - *853 - *42 requestBody: required: true content: application/json: - schema: &864 + schema: &865 type: object required: - Operations @@ -124280,17 +124343,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *845 + schema: *846 examples: - updateGroup: *851 - addMembers: *851 - '400': *846 - '401': *844 - '403': *847 + updateGroup: *852 + addMembers: *852 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124306,17 +124369,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *852 + - *853 - *42 responses: '204': description: Group was deleted, no content - '400': *846 - '401': *844 - '403': *847 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124350,8 +124413,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *855 - *856 + - *857 - *42 responses: '200': @@ -124384,7 +124447,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &859 + items: &860 allOf: - type: object required: @@ -124463,7 +124526,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &858 + roles: &859 type: array description: The roles assigned to the user. items: @@ -124519,7 +124582,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *857 + meta: *858 startIndex: type: integer description: A starting index for the returned page @@ -124556,11 +124619,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *846 - '401': *844 - '403': *847 - '429': *848 - '500': *849 + '400': *847 + '401': *845 + '403': *848 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124584,7 +124647,7 @@ paths: required: true content: application/json: - schema: &862 + schema: &863 type: object required: - schemas @@ -124666,9 +124729,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *858 + roles: *859 examples: - user: &863 + user: &864 summary: User value: schemas: @@ -124715,9 +124778,9 @@ paths: description: User has been created content: application/scim+json: - schema: *859 + schema: *860 examples: - user: &860 + user: &861 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -124743,13 +124806,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *860 - '400': *846 - '401': *844 - '403': *847 - '409': *854 - '429': *848 - '500': *849 + enterpriseOwner: *861 + '400': *847 + '401': *845 + '403': *848 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124766,7 +124829,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &861 + - &862 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -124779,15 +124842,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *859 + schema: *860 examples: - default: *860 - '400': *846 - '401': *844 - '403': *847 + default: *861 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124838,30 +124901,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *861 + - *862 - *42 requestBody: required: true content: application/json: - schema: *862 + schema: *863 examples: - user: *863 + user: *864 responses: '200': description: User was updated content: application/scim+json: - schema: *859 + schema: *860 examples: - user: *860 - '400': *846 - '401': *844 - '403': *847 + user: *861 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124902,13 +124965,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *861 + - *862 - *42 requestBody: required: true content: application/json: - schema: *864 + schema: *865 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -124948,18 +125011,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *859 - examples: - userMultiValuedProperties: *860 - userSingleValuedProperties: *860 - disableUser: *860 - '400': *846 - '401': *844 - '403': *847 + schema: *860 + examples: + userMultiValuedProperties: *861 + userSingleValuedProperties: *861 + disableUser: *861 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '409': *854 - '429': *848 - '500': *849 + '409': *855 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -124979,17 +125042,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *861 + - *862 - *42 responses: '204': description: User was deleted, no content - '400': *846 - '401': *844 - '403': *847 + '400': *847 + '401': *845 + '403': *848 '404': *6 - '429': *848 - '500': *849 + '429': *849 + '500': *850 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125076,7 +125139,7 @@ paths: example: 1 Resources: type: array - items: &865 + items: &866 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -125307,22 +125370,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *38 - '404': &866 + '404': &867 description: Resource not found content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '403': &867 + schema: *844 + '403': &868 description: Forbidden content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '400': *846 - '429': *848 + schema: *844 + '400': *847 + '429': *849 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -125348,9 +125411,9 @@ paths: description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: &868 + default: &869 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -125373,17 +125436,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *38 - '404': *866 - '403': *867 - '500': *849 + '404': *867 + '403': *868 + '500': *850 '409': description: Conflict content: application/json: - schema: *843 + schema: *844 application/scim+json: - schema: *843 - '400': *846 + schema: *844 + '400': *847 requestBody: required: true content: @@ -125481,17 +125544,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *90 - - *861 + - *862 responses: '200': description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: *868 - '404': *866 - '403': *867 + default: *869 + '404': *867 + '403': *868 '304': *38 x-github: githubCloudOnly: true @@ -125515,18 +125578,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *90 - - *861 + - *862 responses: '200': description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: *868 + default: *869 '304': *38 - '404': *866 - '403': *867 + '404': *867 + '403': *868 requestBody: required: true content: @@ -125639,19 +125702,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *90 - - *861 + - *862 responses: '200': description: Response content: application/scim+json: - schema: *865 + schema: *866 examples: - default: *868 + default: *869 '304': *38 - '404': *866 - '403': *867 - '400': *846 + '404': *867 + '403': *868 + '400': *847 '429': description: Response content: @@ -125742,12 +125805,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *90 - - *861 + - *862 responses: '204': description: Response - '404': *866 - '403': *867 + '404': *867 + '403': *868 '304': *38 x-github: githubCloudOnly: true @@ -125883,7 +125946,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &869 + text_matches: &870 title: Search Result Text Matches type: array items: @@ -126046,7 +126109,7 @@ paths: enum: - author-date - committer-date - - &870 + - &871 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 @@ -126117,7 +126180,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *560 + properties: *561 nullable: true comment_count: type: integer @@ -126137,7 +126200,7 @@ paths: url: type: string format: uri - verification: *689 + verification: *690 required: - author - committer @@ -126156,7 +126219,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *560 + properties: *561 nullable: true parents: type: array @@ -126174,7 +126237,7 @@ paths: type: number node_id: type: string - text_matches: *869 + text_matches: *870 required: - sha - node_id @@ -126367,7 +126430,7 @@ paths: - interactions - created - updated - - *870 + - *871 - *17 - *19 - name: advanced_search @@ -126481,11 +126544,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: type: string state_reason: @@ -126495,8 +126558,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *439 - required: *440 + properties: *440 + required: *441 nullable: true comments: type: integer @@ -126510,7 +126573,7 @@ paths: type: string format: date-time nullable: true - text_matches: *869 + text_matches: *870 pull_request: type: object properties: @@ -126554,7 +126617,7 @@ paths: timeline_url: type: string format: uri - type: *404 + type: *405 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -126790,7 +126853,7 @@ paths: enum: - created - updated - - *870 + - *871 - *17 - *19 responses: @@ -126834,7 +126897,7 @@ paths: nullable: true score: type: number - text_matches: *869 + text_matches: *870 required: - id - node_id @@ -126920,7 +126983,7 @@ paths: - forks - help-wanted-issues - updated - - *870 + - *871 - *17 - *19 responses: @@ -127168,7 +127231,7 @@ paths: - admin - pull - push - text_matches: *869 + text_matches: *870 temp_clone_token: type: string allow_merge_commit: @@ -127469,7 +127532,7 @@ paths: type: string format: uri nullable: true - text_matches: *869 + text_matches: *870 related: type: array nullable: true @@ -127662,7 +127725,7 @@ paths: - followers - repositories - joined - - *870 + - *871 - *17 - *19 responses: @@ -127766,7 +127829,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *869 + text_matches: *870 blog: type: string nullable: true @@ -127845,7 +127908,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &873 + - &874 name: team_id description: The unique identifier of the team. in: path @@ -127857,9 +127920,9 @@ paths: description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 x-github: githubCloudOnly: false @@ -127886,7 +127949,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *873 + - *874 requestBody: required: true content: @@ -127954,16 +128017,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '201': description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 '404': *6 '422': *15 '403': *29 @@ -127991,7 +128054,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *873 + - *874 responses: '204': description: Response @@ -128020,7 +128083,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *873 + - *874 - *17 - *19 responses: @@ -128030,9 +128093,9 @@ paths: application/json: schema: type: array - items: *398 + items: *399 examples: - default: *399 + default: *400 headers: Link: *48 x-github: @@ -128060,7 +128123,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *873 + - *874 - name: role description: Filters members returned by their role in the team. in: query @@ -128081,9 +128144,9 @@ paths: application/json: schema: type: array - items: *874 + items: *875 examples: - default: *875 + default: *876 headers: Link: *48 '404': *6 @@ -128111,7 +128174,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128148,7 +128211,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128188,7 +128251,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128225,16 +128288,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *873 + - *874 - *135 responses: '200': description: Response content: application/json: - schema: *509 + schema: *510 examples: - response-if-user-is-a-team-maintainer: *876 + response-if-user-is-a-team-maintainer: *877 '404': *6 x-github: githubCloudOnly: false @@ -128267,7 +128330,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *873 + - *874 - *135 requestBody: required: false @@ -128293,9 +128356,9 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - response-if-users-membership-with-team-is-now-pending: *877 + response-if-users-membership-with-team-is-now-pending: *878 '403': description: Forbidden if team synchronization is set up '422': @@ -128329,7 +128392,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *873 + - *874 - *135 responses: '204': @@ -128357,7 +128420,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *873 + - *874 - *17 - *19 responses: @@ -128369,7 +128432,7 @@ paths: type: array items: *296 examples: - default: *433 + default: *434 headers: Link: *48 '404': *6 @@ -128399,15 +128462,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *873 - - *510 + - *874 - *511 + - *512 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *878 + schema: *879 examples: alternative-response-with-extra-repository-information: value: @@ -128557,9 +128620,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *873 - - *510 + - *874 - *511 + - *512 requestBody: required: false content: @@ -128609,9 +128672,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *873 - - *510 + - *874 - *511 + - *512 responses: '204': description: Response @@ -128640,15 +128703,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *873 + - *874 responses: '200': description: Response content: application/json: - schema: *512 + schema: *513 examples: - default: *513 + default: *514 '403': *29 '404': *6 x-github: @@ -128675,7 +128738,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *873 + - *874 requestBody: required: true content: @@ -128732,7 +128795,7 @@ paths: description: Response content: application/json: - schema: *512 + schema: *513 examples: default: value: @@ -128763,7 +128826,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *873 + - *874 - *17 - *19 responses: @@ -128775,7 +128838,7 @@ paths: type: array items: *329 examples: - response-if-child-teams-exist: *879 + response-if-child-teams-exist: *880 headers: Link: *48 '404': *6 @@ -128808,7 +128871,7 @@ paths: application/json: schema: oneOf: - - &880 + - &881 title: Private User description: Private User type: object @@ -129011,7 +129074,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - &907 + - &908 title: Public User description: Public User type: object @@ -129323,7 +129386,7 @@ paths: description: Response content: application/json: - schema: *880 + schema: *881 examples: default: value: @@ -129526,9 +129589,9 @@ paths: type: integer codespaces: type: array - items: *409 + items: *410 examples: - default: *410 + default: *411 '304': *38 '500': *41 '401': *25 @@ -129667,17 +129730,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '401': *25 '403': *29 '404': *6 @@ -129721,7 +129784,7 @@ paths: type: integer secrets: type: array - items: &881 + items: &882 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -129761,7 +129824,7 @@ paths: - visibility - selected_repositories_url examples: - default: *619 + default: *620 headers: Link: *48 x-github: @@ -129837,7 +129900,7 @@ paths: description: Response content: application/json: - schema: *881 + schema: *882 examples: default: value: @@ -130127,15 +130190,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '304': *38 '500': *41 '401': *25 @@ -130161,7 +130224,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 requestBody: required: false content: @@ -130191,9 +130254,9 @@ paths: description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '401': *25 '403': *29 '404': *6 @@ -130215,7 +130278,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '202': *40 '304': *38 @@ -130244,13 +130307,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '202': description: Response content: application/json: - schema: &882 + schema: &883 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -130291,7 +130354,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &883 + default: &884 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -130323,7 +130386,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *411 + - *412 - name: export_id in: path required: true @@ -130336,9 +130399,9 @@ paths: description: Response content: application/json: - schema: *882 + schema: *883 examples: - default: *883 + default: *884 '404': *6 x-github: githubCloudOnly: false @@ -130359,7 +130422,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *411 + - *412 responses: '200': description: Response @@ -130375,9 +130438,9 @@ paths: type: integer machines: type: array - items: *884 + items: *885 examples: - default: *885 + default: *886 '304': *38 '500': *41 '401': *25 @@ -130406,7 +130469,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *411 + - *412 requestBody: required: true content: @@ -130456,13 +130519,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *515 + repository: *516 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *617 - required: *618 + properties: *618 + required: *619 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -131236,15 +131299,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '304': *38 '500': *41 '400': *14 @@ -131276,15 +131339,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *411 + - *412 responses: '200': description: Response content: application/json: - schema: *409 + schema: *410 examples: - default: *616 + default: *617 '500': *41 '401': *25 '403': *29 @@ -131314,9 +131377,9 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: &897 + default: &898 value: - id: 197 name: hello_docker @@ -131417,7 +131480,7 @@ paths: application/json: schema: type: array - items: &886 + items: &887 title: Email description: Email type: object @@ -131482,9 +131545,9 @@ paths: application/json: schema: type: array - items: *886 + items: *887 examples: - default: &899 + default: &900 value: - email: octocat@github.com verified: true @@ -131559,7 +131622,7 @@ paths: application/json: schema: type: array - items: *886 + items: *887 examples: default: value: @@ -131815,7 +131878,7 @@ paths: application/json: schema: type: array - items: &887 + items: &888 title: GPG Key description: A unique encryption key type: object @@ -131946,7 +132009,7 @@ paths: - subkeys - revoked examples: - default: &917 + default: &918 value: - id: 3 name: Octocat's GPG Key @@ -132031,9 +132094,9 @@ paths: description: Response content: application/json: - schema: *887 + schema: *888 examples: - default: &888 + default: &889 value: id: 3 name: Octocat's GPG Key @@ -132090,7 +132153,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &889 + - &890 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -132102,9 +132165,9 @@ paths: description: Response content: application/json: - schema: *887 + schema: *888 examples: - default: *888 + default: *889 '404': *6 '304': *38 '403': *29 @@ -132127,7 +132190,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *889 + - *890 responses: '204': description: Response @@ -132415,12 +132478,12 @@ paths: application/json: schema: anyOf: - - *396 + - *397 - type: object properties: {} additionalProperties: false examples: - default: *397 + default: *398 '204': description: Response when there are no restrictions x-github: @@ -132444,7 +132507,7 @@ paths: required: true content: application/json: - schema: *699 + schema: *700 examples: default: value: @@ -132455,7 +132518,7 @@ paths: description: Response content: application/json: - schema: *396 + schema: *397 examples: default: value: @@ -132536,7 +132599,7 @@ paths: - closed - all default: open - - *407 + - *408 - name: sort description: What to sort results by. in: query @@ -132561,7 +132624,7 @@ paths: type: array items: *235 examples: - default: *408 + default: *409 headers: Link: *48 '404': *6 @@ -132594,7 +132657,7 @@ paths: application/json: schema: type: array - items: &890 + items: &891 title: Key description: Key type: object @@ -132695,9 +132758,9 @@ paths: description: Response content: application/json: - schema: *890 + schema: *891 examples: - default: &891 + default: &892 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -132730,15 +132793,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *754 + - *755 responses: '200': description: Response content: application/json: - schema: *890 + schema: *891 examples: - default: *891 + default: *892 '404': *6 '304': *38 '403': *29 @@ -132761,7 +132824,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *754 + - *755 responses: '204': description: Response @@ -132794,7 +132857,7 @@ paths: application/json: schema: type: array - items: &892 + items: &893 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -132862,7 +132925,7 @@ paths: - account - plan examples: - default: &893 + default: &894 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -132924,9 +132987,9 @@ paths: application/json: schema: type: array - items: *892 + items: *893 examples: - default: *893 + default: *894 headers: Link: *48 '304': *38 @@ -132966,7 +133029,7 @@ paths: application/json: schema: type: array - items: *412 + items: *413 examples: default: value: @@ -133080,7 +133143,7 @@ paths: description: Response content: application/json: - schema: *412 + schema: *413 examples: default: value: @@ -133167,9 +133230,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *412 + schema: *413 examples: - default: &894 + default: &895 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -133216,9 +133279,9 @@ paths: processed asynchronously. content: application/json: - schema: *412 + schema: *413 examples: - default: *894 + default: *895 '403': *29 '404': *6 '422': *15 @@ -133247,7 +133310,7 @@ paths: application/json: schema: type: array - items: *414 + items: *415 examples: default: value: @@ -133500,7 +133563,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -133680,7 +133743,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *415 + - *416 - name: exclude in: query required: false @@ -133693,7 +133756,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *415 examples: default: value: @@ -133887,7 +133950,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *415 + - *416 responses: '302': description: Response @@ -133913,7 +133976,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *415 + - *416 responses: '204': description: Response @@ -133942,8 +134005,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *415 - - *895 + - *416 + - *896 responses: '204': description: Response @@ -133967,7 +134030,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *415 + - *416 - *17 - *19 responses: @@ -134056,7 +134119,7 @@ paths: - docker - nuget - container - - *896 + - *897 - *19 - *17 responses: @@ -134066,10 +134129,10 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *897 - '400': *898 + default: *898 + '400': *899 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -134089,16 +134152,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *422 - *423 + - *424 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: &918 + default: &919 value: id: 40201 name: octo-name @@ -134211,8 +134274,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *422 - *423 + - *424 responses: '204': description: Response @@ -134242,8 +134305,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *422 - *423 + - *424 - name: token description: package token schema: @@ -134275,8 +134338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *422 - *423 + - *424 - *19 - *17 - name: state @@ -134296,7 +134359,7 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: default: value: @@ -134345,15 +134408,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -134389,9 +134452,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 responses: '204': description: Response @@ -134421,9 +134484,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 responses: '204': description: Response @@ -134460,9 +134523,9 @@ paths: application/json: schema: type: array - items: *886 + items: *887 examples: - default: *899 + default: *900 headers: Link: *48 '304': *38 @@ -134575,7 +134638,7 @@ paths: type: array items: *81 examples: - default: &906 + default: &907 summary: Default response value: - id: 1296269 @@ -134879,9 +134942,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *516 examples: - default: *517 + default: *518 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -134920,9 +134983,9 @@ paths: application/json: schema: type: array - items: *702 + items: *703 examples: - default: *900 + default: *901 headers: Link: *48 '304': *38 @@ -134945,7 +135008,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *400 + - *401 responses: '204': description: Response @@ -134969,7 +135032,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *400 + - *401 responses: '204': description: Response @@ -135002,7 +135065,7 @@ paths: application/json: schema: type: array - items: &901 + items: &902 title: Social account description: Social media account type: object @@ -135017,7 +135080,7 @@ paths: - provider - url examples: - default: &902 + default: &903 value: - provider: twitter url: https://twitter.com/github @@ -135079,9 +135142,9 @@ paths: application/json: schema: type: array - items: *901 + items: *902 examples: - default: *902 + default: *903 '422': *15 '304': *38 '404': *6 @@ -135168,7 +135231,7 @@ paths: application/json: schema: type: array - items: &903 + items: &904 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -135188,7 +135251,7 @@ paths: - title - created_at examples: - default: &932 + default: &933 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -135252,9 +135315,9 @@ paths: description: Response content: application/json: - schema: *903 + schema: *904 examples: - default: &904 + default: &905 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -135284,7 +135347,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &905 + - &906 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -135296,9 +135359,9 @@ paths: description: Response content: application/json: - schema: *903 + schema: *904 examples: - default: *904 + default: *905 '404': *6 '304': *38 '403': *29 @@ -135321,7 +135384,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *905 + - *906 responses: '204': description: Response @@ -135350,7 +135413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &933 + - &934 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 @@ -135375,11 +135438,11 @@ paths: type: array items: *81 examples: - default-response: *906 + default-response: *907 application/vnd.github.v3.star+json: schema: type: array - items: &934 + items: &935 title: Starred Repository description: Starred Repository type: object @@ -135535,8 +135598,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *510 - *511 + - *512 responses: '204': description: Response if this repository is starred by you @@ -135564,8 +135627,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -135589,8 +135652,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *510 - *511 + - *512 responses: '204': description: Response @@ -135625,7 +135688,7 @@ paths: type: array items: *296 examples: - default: *433 + default: *434 headers: Link: *48 '304': *38 @@ -135662,7 +135725,7 @@ paths: application/json: schema: type: array - items: *502 + items: *503 examples: default: value: @@ -135748,10 +135811,10 @@ paths: application/json: schema: oneOf: - - *880 - - *907 + - *881 + - *908 examples: - default-response: &911 + default-response: &912 summary: Default response value: login: octocat @@ -135786,7 +135849,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &912 + response-with-git-hub-plan-information: &913 summary: Response with GitHub plan information value: login: octocat @@ -135843,14 +135906,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &909 + - &910 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *438 + - *439 requestBody: required: true description: Details of the draft item to create in the project. @@ -135884,9 +135947,9 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: - draft_issue: *445 + draft_issue: *446 '304': *38 '403': *29 '401': *25 @@ -135909,7 +135972,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *908 + - *909 - *17 responses: '200': @@ -135944,8 +136007,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *909 - - *438 + - *910 + - *439 requestBody: required: true content: @@ -135981,6 +136044,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -136016,17 +136120,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *910 + schema: *911 examples: table_view: summary: Response for creating a table view - value: *449 + value: *450 board_view: summary: Response for creating a board view with filter - value: *449 + value: *450 roadmap_view: summary: Response for creating a roadmap view - value: *449 + value: *450 '304': *38 '403': *29 '401': *25 @@ -136068,11 +136172,11 @@ paths: application/json: schema: oneOf: - - *880 - - *907 + - *881 + - *908 examples: - default-response: *911 - response-with-git-hub-plan-information: *912 + default-response: *912 + response-with-git-hub-plan-information: *913 '404': *6 x-github: githubCloudOnly: false @@ -136122,8 +136226,8 @@ paths: required: - subject_digests examples: - default: *913 - withPredicateType: *914 + default: *914 + withPredicateType: *915 responses: '200': description: Response @@ -136162,7 +136266,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *915 + default: *916 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -136351,7 +136455,7 @@ paths: initiator: type: string examples: - default: *556 + default: *557 '201': description: Response content: @@ -136632,7 +136736,7 @@ paths: application/json: schema: *344 examples: - default: &916 + default: &917 summary: Example response for a user copilot space value: id: 42 @@ -136733,7 +136837,7 @@ paths: application/json: schema: *344 examples: - default: *916 + default: *917 '403': *29 '404': *6 x-github: @@ -136856,7 +136960,7 @@ paths: application/json: schema: *344 examples: - default: *916 + default: *917 '403': *29 '404': *6 '422': *15 @@ -137622,9 +137726,9 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *897 + default: *898 '403': *29 '401': *25 x-github: @@ -138008,9 +138112,9 @@ paths: application/json: schema: type: array - items: *887 + items: *888 examples: - default: *917 + default: *918 headers: Link: *48 x-github: @@ -138114,7 +138218,7 @@ paths: application/json: schema: *22 examples: - default: *394 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -138238,7 +138342,7 @@ paths: - docker - nuget - container - - *896 + - *897 - *135 - *19 - *17 @@ -138249,12 +138353,12 @@ paths: application/json: schema: type: array - items: *420 + items: *421 examples: - default: *897 + default: *898 '403': *29 '401': *25 - '400': *898 + '400': *899 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -138274,17 +138378,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *422 - *423 + - *424 - *135 responses: '200': description: Response content: application/json: - schema: *420 + schema: *421 examples: - default: *918 + default: *919 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -138305,8 +138409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *422 - *423 + - *424 - *135 responses: '204': @@ -138339,8 +138443,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *422 - *423 + - *424 - *135 - name: token description: package token @@ -138373,8 +138477,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *422 - *423 + - *424 - *135 responses: '200': @@ -138383,7 +138487,7 @@ paths: application/json: schema: type: array - items: *424 + items: *425 examples: default: value: @@ -138441,16 +138545,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *422 - *423 - - *425 + - *424 + - *426 - *135 responses: '200': description: Response content: application/json: - schema: *424 + schema: *425 examples: default: value: @@ -138485,10 +138589,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *422 - *423 + - *424 - *135 - - *425 + - *426 responses: '204': description: Response @@ -138520,10 +138624,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *422 - *423 + - *424 - *135 - - *425 + - *426 responses: '204': description: Response @@ -138564,9 +138668,9 @@ paths: application/json: schema: type: array - items: *436 + items: *437 examples: - default: *437 + default: *438 headers: Link: *48 '304': *38 @@ -138588,16 +138692,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *438 + - *439 - *135 responses: '200': description: Response content: application/json: - schema: *436 + schema: *437 examples: - default: *437 + default: *438 headers: Link: *48 '304': *38 @@ -138619,7 +138723,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *438 + - *439 - *135 - *17 - *111 @@ -138631,9 +138735,9 @@ paths: application/json: schema: type: array - items: *442 + items: *443 examples: - default: *919 + default: *920 headers: Link: *48 '304': *38 @@ -138655,7 +138759,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *135 - - *438 + - *439 requestBody: required: true content: @@ -138693,7 +138797,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *920 + items: *921 required: - name - data_type @@ -138709,7 +138813,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *921 + iteration_configuration: *922 required: - name - data_type @@ -138731,20 +138835,20 @@ paths: value: name: Due date data_type: date - single_select_field: *922 - iteration_field: *923 + single_select_field: *923 + iteration_field: *924 responses: '201': description: Response content: application/json: - schema: *442 + schema: *443 examples: - text_field: *924 - number_field: *925 - date_field: *926 - single_select_field: *927 - iteration_field: *928 + text_field: *925 + number_field: *926 + date_field: *927 + single_select_field: *928 + iteration_field: *929 '304': *38 '403': *29 '401': *25 @@ -138765,17 +138869,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *438 - - *929 + - *439 + - *930 - *135 responses: '200': description: Response content: application/json: - schema: *442 + schema: *443 examples: - default: *930 + default: *931 headers: Link: *48 '304': *38 @@ -138798,7 +138902,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *438 + - *439 - *135 - *111 - *112 @@ -138831,9 +138935,9 @@ paths: application/json: schema: type: array - items: *446 + items: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -138855,7 +138959,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *135 - - *438 + - *439 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -138925,22 +139029,22 @@ paths: description: Response content: application/json: - schema: *444 + schema: *445 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *445 + value: *446 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *445 + value: *446 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *445 + value: *446 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *445 + value: *446 '304': *38 '403': *29 '401': *25 @@ -138960,9 +139064,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *438 + - *439 - *135 - - *448 + - *449 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -138982,9 +139086,9 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -139005,9 +139109,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *438 + - *439 - *135 - - *448 + - *449 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -139077,13 +139181,13 @@ paths: description: Response content: application/json: - schema: *446 + schema: *447 examples: - text_field: *447 - number_field: *447 - date_field: *447 - single_select_field: *447 - iteration_field: *447 + text_field: *448 + number_field: *448 + date_field: *448 + single_select_field: *448 + iteration_field: *448 '401': *25 '403': *29 '404': *6 @@ -139103,9 +139207,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *438 + - *439 - *135 - - *448 + - *449 responses: '204': description: Response @@ -139127,9 +139231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-project-view parameters: - - *438 + - *439 - *135 - - *931 + - *932 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -139155,9 +139259,9 @@ paths: application/json: schema: type: array - items: *446 + items: *447 examples: - default: *447 + default: *448 headers: Link: *48 '304': *38 @@ -139378,7 +139482,7 @@ paths: type: array items: *296 examples: - default: *433 + default: *434 headers: Link: *48 x-github: @@ -139408,9 +139512,9 @@ paths: application/json: schema: type: array - items: *901 + items: *902 examples: - default: *902 + default: *903 headers: Link: *48 x-github: @@ -139440,9 +139544,9 @@ paths: application/json: schema: type: array - items: *903 + items: *904 examples: - default: *932 + default: *933 headers: Link: *48 x-github: @@ -139467,7 +139571,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *135 - - *933 + - *934 - *113 - *17 - *19 @@ -139479,11 +139583,11 @@ paths: schema: anyOf: - type: array - items: *934 + items: *935 - type: array items: *81 examples: - default-response: *906 + default-response: *907 headers: Link: *48 x-github: @@ -139514,7 +139618,7 @@ paths: type: array items: *296 examples: - default: *433 + default: *434 headers: Link: *48 x-github: @@ -139642,7 +139746,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &935 + enterprise: &936 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -139700,7 +139804,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &936 + installation: &937 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -139719,7 +139823,7 @@ x-webhooks: required: - id - node_id - organization: &937 + organization: &938 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -139779,13 +139883,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &938 + repository: &939 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &977 + properties: &978 id: description: Unique identifier of the repository example: 42 @@ -140469,7 +140573,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &978 + required: &979 - archive_url - assignees_url - blobs_url @@ -140620,10 +140724,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -140699,11 +140803,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - rule: &939 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + rule: &940 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -140926,11 +141030,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - rule: *939 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + rule: *940 sender: *4 required: - action @@ -141113,11 +141217,11 @@ x-webhooks: - everyone required: - from - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - rule: *939 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + rule: *940 sender: *4 required: - action @@ -141190,7 +141294,7 @@ x-webhooks: required: true content: application/json: - schema: &961 + schema: &962 title: Exemption request cancellation event type: object properties: @@ -141198,11 +141302,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: &940 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: &941 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -141506,7 +141610,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &941 + items: &942 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -141616,7 +141720,7 @@ x-webhooks: required: true content: application/json: - schema: &962 + schema: &963 title: Exemption request completed event type: object properties: @@ -141624,11 +141728,11 @@ x-webhooks: type: string enum: - completed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 sender: *4 required: - action @@ -141700,7 +141804,7 @@ x-webhooks: required: true content: application/json: - schema: &959 + schema: &960 title: Exemption request created event type: object properties: @@ -141708,11 +141812,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 sender: *4 required: - action @@ -141784,7 +141888,7 @@ x-webhooks: required: true content: application/json: - schema: &963 + schema: &964 title: Exemption response dismissed event type: object properties: @@ -141792,12 +141896,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 - exemption_response: *941 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 + exemption_response: *942 sender: *4 required: - action @@ -141871,7 +141975,7 @@ x-webhooks: required: true content: application/json: - schema: &960 + schema: &961 title: Exemption response submitted event type: object properties: @@ -141879,12 +141983,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - exemption_request: *940 - exemption_response: *941 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + exemption_request: *941 + exemption_response: *942 sender: *4 required: - action @@ -141968,7 +142072,7 @@ x-webhooks: type: string enum: - completed - check_run: &943 + check_run: &944 title: CheckRun description: A check performed on the code of a given code change type: object @@ -142059,7 +142163,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *942 + deployment: *943 details_url: example: https://example.com type: string @@ -142144,10 +142248,10 @@ x-webhooks: - output - app - pull_requests - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 sender: *4 required: - check_run @@ -142538,11 +142642,11 @@ x-webhooks: type: string enum: - created - check_run: *943 - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + check_run: *944 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 sender: *4 required: - check_run @@ -142936,11 +143040,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *943 - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + check_run: *944 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 requested_action: description: The action requested by the user. type: object @@ -143343,11 +143447,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *943 - installation: *936 - enterprise: *935 - organization: *937 - repository: *938 + check_run: *944 + installation: *937 + enterprise: *936 + organization: *938 + repository: *939 sender: *4 required: - check_run @@ -144317,10 +144421,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -145019,10 +145123,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -145715,10 +145819,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -145884,7 +145988,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -146029,20 +146133,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &944 + commit_oid: &945 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: *935 - installation: *936 - organization: *937 - ref: &945 + enterprise: *936 + installation: *937 + organization: *938 + ref: &946 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: *938 + repository: *939 sender: *4 required: - action @@ -146207,7 +146311,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -146437,12 +146541,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -146537,7 +146641,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -146708,12 +146812,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -146879,7 +146983,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -147045,12 +147149,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -147149,7 +147253,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -147324,16 +147428,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *938 + repository: *939 sender: *4 required: - action @@ -147430,7 +147534,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -147570,12 +147674,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *944 - enterprise: *935 - installation: *936 - organization: *937 - ref: *945 - repository: *938 + commit_oid: *945 + enterprise: *936 + installation: *937 + organization: *938 + ref: *946 + repository: *939 sender: *4 required: - action @@ -147741,7 +147845,7 @@ x-webhooks: required: - login - id - dismissed_comment: *587 + dismissed_comment: *588 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -147886,10 +147990,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -148144,10 +148248,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -148227,18 +148331,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *937 - pusher_type: &946 + organization: *938 + pusher_type: &947 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &947 + ref: &948 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -148248,7 +148352,7 @@ x-webhooks: enum: - tag - branch - repository: *938 + repository: *939 sender: *4 required: - ref @@ -148331,9 +148435,9 @@ x-webhooks: enum: - created definition: *165 - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -148418,9 +148522,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -148498,9 +148602,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *165 - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -148578,9 +148682,9 @@ x-webhooks: enum: - updated definition: *165 - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -148657,10 +148761,10 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - repository: *938 - organization: *937 + enterprise: *936 + installation: *937 + repository: *939 + organization: *938 sender: *4 new_property_values: type: array @@ -148745,18 +148849,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - pusher_type: *946 - ref: *947 + enterprise: *936 + installation: *937 + organization: *938 + pusher_type: *947 + ref: *948 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *938 + repository: *939 sender: *4 required: - ref @@ -148836,11 +148940,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -148920,11 +149024,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149005,11 +149109,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149090,11 +149194,11 @@ x-webhooks: type: string enum: - created - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149173,11 +149277,11 @@ x-webhooks: type: string enum: - dismissed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149256,11 +149360,11 @@ x-webhooks: type: string enum: - fixed - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149340,11 +149444,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149423,11 +149527,11 @@ x-webhooks: type: string enum: - reopened - alert: *651 - installation: *936 - organization: *937 - enterprise: *935 - repository: *938 + alert: *652 + installation: *937 + organization: *938 + enterprise: *936 + repository: *939 sender: *4 required: - action @@ -149504,9 +149608,9 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - key: &948 + enterprise: *936 + installation: *937 + key: &949 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -149542,8 +149646,8 @@ x-webhooks: - verified - created_at - read_only - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -149620,11 +149724,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - key: *948 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + key: *949 + organization: *938 + repository: *939 sender: *4 required: - action @@ -150180,12 +150284,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: &954 + workflow: &955 title: Workflow type: object nullable: true @@ -150926,15 +151030,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *949 - required: *950 + properties: *950 + required: *951 nullable: true pull_requests: type: array - items: *776 - repository: *938 - organization: *937 - installation: *936 + items: *777 + repository: *939 + organization: *938 + installation: *937 sender: *4 responses: '200': @@ -151005,7 +151109,7 @@ x-webhooks: type: string enum: - approved - approver: &951 + approver: &952 type: object properties: avatar_url: @@ -151048,11 +151152,11 @@ x-webhooks: type: string comment: type: string - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - reviewers: &952 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + reviewers: &953 type: array items: type: object @@ -151131,7 +151235,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &953 + workflow_job_run: &954 type: object properties: conclusion: @@ -151862,18 +151966,18 @@ x-webhooks: type: string enum: - rejected - approver: *951 + approver: *952 comment: type: string - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - reviewers: *952 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + reviewers: *953 sender: *4 since: type: string - workflow_job_run: *953 + workflow_job_run: *954 workflow_job_runs: type: array items: @@ -152577,13 +152681,13 @@ x-webhooks: type: string enum: - requested - enterprise: *935 + enterprise: *936 environment: type: string - installation: *936 - organization: *937 - repository: *938 - requestor: &964 + installation: *937 + organization: *938 + repository: *939 + requestor: &965 title: User type: object nullable: true @@ -154472,12 +154576,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Deployment Workflow Run type: object @@ -155157,7 +155261,7 @@ x-webhooks: type: string enum: - answered - answer: &957 + answer: &958 type: object properties: author_association: @@ -155314,11 +155418,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -155445,11 +155549,11 @@ x-webhooks: - from required: - category - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -155532,11 +155636,11 @@ x-webhooks: type: string enum: - closed - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -155618,7 +155722,7 @@ x-webhooks: type: string enum: - created - comment: &956 + comment: &957 type: object properties: author_association: @@ -155775,11 +155879,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -155862,12 +155966,12 @@ x-webhooks: type: string enum: - deleted - comment: *956 - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + comment: *957 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -155962,12 +156066,12 @@ x-webhooks: - from required: - body - comment: *956 - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + comment: *957 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156051,11 +156155,11 @@ x-webhooks: type: string enum: - created - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156137,11 +156241,11 @@ x-webhooks: type: string enum: - deleted - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156241,11 +156345,11 @@ x-webhooks: type: string required: - from - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156327,10 +156431,10 @@ x-webhooks: type: string enum: - labeled - discussion: *955 - enterprise: *935 - installation: *936 - label: &958 + discussion: *956 + enterprise: *936 + installation: *937 + label: &959 title: Label type: object properties: @@ -156362,8 +156466,8 @@ x-webhooks: - color - default - description - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156446,11 +156550,11 @@ x-webhooks: type: string enum: - locked - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156532,11 +156636,11 @@ x-webhooks: type: string enum: - pinned - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156618,11 +156722,11 @@ x-webhooks: type: string enum: - reopened - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156707,16 +156811,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *955 - new_repository: *938 + new_discussion: *956 + new_repository: *939 required: - new_discussion - new_repository - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156799,10 +156903,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *955 - old_answer: *957 - organization: *937 - repository: *938 + discussion: *956 + old_answer: *958 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156884,12 +156988,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *955 - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -156972,11 +157076,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157058,11 +157162,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *955 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + discussion: *956 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -157131,7 +157235,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157194,7 +157298,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157257,7 +157361,7 @@ x-webhooks: required: true content: application/json: - schema: *961 + schema: *962 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157320,7 +157424,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157383,7 +157487,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157449,7 +157553,7 @@ x-webhooks: required: true content: application/json: - schema: *961 + schema: *962 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157515,7 +157619,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157581,7 +157685,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157647,7 +157751,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157713,7 +157817,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157778,7 +157882,7 @@ x-webhooks: required: true content: application/json: - schema: *961 + schema: *962 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157843,7 +157947,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157908,7 +158012,7 @@ x-webhooks: required: true content: application/json: - schema: *959 + schema: *960 responses: '200': description: Return a 200 status to indicate that the data was received @@ -157973,7 +158077,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158039,7 +158143,7 @@ x-webhooks: required: true content: application/json: - schema: *960 + schema: *961 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158106,7 +158210,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *935 + enterprise: *936 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -158766,9 +158870,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - forkee @@ -158914,9 +159018,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pages: description: The pages that were updated. type: array @@ -158953,7 +159057,7 @@ x-webhooks: - action - sha - html_url - repository: *938 + repository: *939 sender: *4 required: - pages @@ -159029,10 +159133,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: &965 + organization: *938 + repositories: &966 description: An array of repository objects that the installation can access. type: array @@ -159058,8 +159162,8 @@ x-webhooks: - name - full_name - private - repository: *938 - requester: *964 + repository: *939 + requester: *965 sender: *4 required: - action @@ -159134,11 +159238,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -159214,11 +159318,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -159294,10 +159398,10 @@ x-webhooks: type: string enum: - added - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories_added: &966 + organization: *938 + repositories_added: &967 description: An array of repository objects, which were added to the installation. type: array @@ -159343,15 +159447,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *938 - repository_selection: &967 + repository: *939 + repository_selection: &968 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *964 + requester: *965 sender: *4 required: - action @@ -159430,10 +159534,10 @@ x-webhooks: type: string enum: - removed - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories_added: *966 + organization: *938 + repositories_added: *967 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -159460,9 +159564,9 @@ x-webhooks: - name - full_name - private - repository: *938 - repository_selection: *967 - requester: *964 + repository: *939 + repository_selection: *968 + requester: *965 sender: *4 required: - action @@ -159541,11 +159645,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -159724,10 +159828,10 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 target_type: type: string @@ -159806,11 +159910,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *935 + enterprise: *936 installation: *22 - organization: *937 - repositories: *965 - repository: *938 + organization: *938 + repositories: *966 + repository: *939 requester: nullable: true sender: *4 @@ -159984,15 +160088,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *737 - required: *738 + properties: *738 + required: *739 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *739 - required: *740 + properties: *740 + required: *741 nullable: true user: title: User @@ -160077,8 +160181,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -160867,8 +160971,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -160884,7 +160988,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -161217,8 +161321,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -161298,7 +161402,7 @@ x-webhooks: type: string enum: - deleted - comment: &968 + comment: &969 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -161455,15 +161559,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *737 - required: *738 + properties: *738 + required: *739 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *739 - required: *740 + properties: *740 + required: *741 nullable: true required: - url @@ -161478,8 +161582,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -162264,8 +162368,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162281,7 +162385,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -162616,8 +162720,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -162697,7 +162801,7 @@ x-webhooks: type: string enum: - edited - changes: &997 + changes: &998 description: The changes to the comment. type: object properties: @@ -162709,9 +162813,9 @@ x-webhooks: type: string required: - from - comment: *968 - enterprise: *935 - installation: *936 + comment: *969 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -163499,8 +163603,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163516,7 +163620,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -163849,8 +163953,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -163931,9 +164035,9 @@ x-webhooks: type: string enum: - pinned - comment: *968 - enterprise: *935 - installation: *936 + comment: *969 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -164723,8 +164827,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164740,7 +164844,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -165075,8 +165179,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -165156,9 +165260,9 @@ x-webhooks: type: string enum: - unpinned - comment: *968 - enterprise: *935 - installation: *936 + comment: *969 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -165948,8 +166052,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 state: description: State of the issue; either 'open' or 'closed' type: string @@ -165965,7 +166069,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -166300,8 +166404,8 @@ x-webhooks: - state - locked - assignee - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -166390,9 +166494,9 @@ x-webhooks: type: number blocking_issue: *235 blocking_issue_repo: *81 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -166481,9 +166585,9 @@ x-webhooks: type: number blocking_issue: *235 blocking_issue_repo: *81 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -166571,9 +166675,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -166662,9 +166766,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -166744,10 +166848,10 @@ x-webhooks: type: string enum: - assigned - assignee: *964 - enterprise: *935 - installation: *936 - issue: &969 + assignee: *965 + enterprise: *936 + installation: *937 + issue: &970 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -167539,11 +167643,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167559,7 +167663,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -167660,8 +167764,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -167741,8 +167845,8 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -168539,11 +168643,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168559,7 +168663,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -168795,8 +168899,8 @@ x-webhooks: required: - state - closed_at - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -168875,8 +168979,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -169664,11 +169768,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169684,7 +169788,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -169784,8 +169888,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -169864,8 +169968,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -170675,11 +170779,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -170695,7 +170799,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -170774,7 +170878,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &970 + milestone: &971 title: Milestone description: A collection of related issues and pull requests. type: object @@ -170912,8 +171016,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -171012,8 +171116,8 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171805,11 +171909,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171822,7 +171926,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *404 + type: *405 title: description: Title of the issue type: string @@ -171926,9 +172030,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *958 - organization: *937 - repository: *938 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -172008,9 +172112,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *935 - installation: *936 - issue: *969 + enterprise: *936 + installation: *937 + issue: *970 issue_field: type: object description: The issue field whose value was set or updated on the @@ -172164,8 +172268,8 @@ x-webhooks: - id required: - from - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -172245,9 +172349,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *935 - installation: *936 - issue: *969 + enterprise: *936 + installation: *937 + issue: *970 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -172328,8 +172432,8 @@ x-webhooks: nullable: true required: - id - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -172409,8 +172513,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173201,11 +173305,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173218,7 +173322,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *404 + type: *405 title: description: Title of the issue type: string @@ -173322,9 +173426,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *958 - organization: *937 - repository: *938 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -173404,8 +173508,8 @@ x-webhooks: type: string enum: - locked - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174220,11 +174324,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174237,7 +174341,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *404 + type: *405 title: description: Title of the issue type: string @@ -174318,8 +174422,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -174398,8 +174502,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175208,11 +175312,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175228,7 +175332,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -175306,9 +175410,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *970 - organization: *937 - repository: *938 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -176171,11 +176275,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176276,7 +176380,7 @@ x-webhooks: required: - login - id - type: *404 + type: *405 required: - id - number @@ -176756,8 +176860,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -177541,11 +177645,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177561,7 +177665,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -177669,8 +177773,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -177750,9 +177854,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *935 - installation: *936 - issue: &971 + enterprise: *936 + installation: *937 + issue: &972 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -178538,11 +178642,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -178558,7 +178662,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -178658,8 +178762,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -178738,8 +178842,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -179552,11 +179656,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -179650,9 +179754,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *404 - organization: *937 - repository: *938 + type: *405 + organization: *938 + repository: *939 sender: *4 required: - action @@ -180521,11 +180625,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -180541,7 +180645,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -181120,11 +181224,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *935 - installation: *936 - issue: *971 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *972 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181204,12 +181308,12 @@ x-webhooks: type: string enum: - typed - enterprise: *935 - installation: *936 - issue: *969 - type: *404 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + type: *405 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181290,7 +181394,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &1000 + assignee: &1001 title: User type: object nullable: true @@ -181360,11 +181464,11 @@ x-webhooks: required: - login - id - enterprise: *935 - installation: *936 - issue: *969 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181443,12 +181547,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *935 - installation: *936 - issue: *969 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -181528,8 +181632,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -182342,11 +182446,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *871 - issue_dependencies_summary: *872 + sub_issues_summary: *872 + issue_dependencies_summary: *873 issue_field_values: type: array - items: *719 + items: *720 state: description: State of the issue; either 'open' or 'closed' type: string @@ -182362,7 +182466,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *404 + type: *405 updated_at: type: string format: date-time @@ -182440,8 +182544,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -182521,11 +182625,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *935 - installation: *936 - issue: *971 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *972 + organization: *938 + repository: *939 sender: *4 required: - action @@ -182604,12 +182708,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *935 - installation: *936 - issue: *969 - type: *404 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + issue: *970 + type: *405 + organization: *938 + repository: *939 sender: *4 required: - action @@ -182689,11 +182793,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -182771,11 +182875,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -182885,11 +182989,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - label: *958 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + label: *959 + organization: *938 + repository: *939 sender: *4 required: - action @@ -182971,9 +183075,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: &972 + enterprise: *936 + installation: *937 + marketplace_purchase: &973 title: Marketplace Purchase type: object required: @@ -183056,8 +183160,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *937 - previous_marketplace_purchase: &973 + organization: *938 + previous_marketplace_purchase: &974 title: Marketplace Purchase type: object properties: @@ -183137,7 +183241,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *938 + repository: *939 sender: *4 required: - action @@ -183217,10 +183321,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: *972 - organization: *937 + enterprise: *936 + installation: *937 + marketplace_purchase: *973 + organization: *938 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -183303,7 +183407,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *938 + repository: *939 sender: *4 required: - action @@ -183385,10 +183489,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: *972 - organization: *937 + enterprise: *936 + installation: *937 + marketplace_purchase: *973 + organization: *938 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -183470,7 +183574,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *938 + repository: *939 sender: *4 required: - action @@ -183551,8 +183655,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 marketplace_purchase: title: Marketplace Purchase type: object @@ -183634,9 +183738,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *937 - previous_marketplace_purchase: *973 - repository: *938 + organization: *938 + previous_marketplace_purchase: *974 + repository: *939 sender: *4 required: - action @@ -183716,12 +183820,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *935 - installation: *936 - marketplace_purchase: *972 - organization: *937 - previous_marketplace_purchase: *973 - repository: *938 + enterprise: *936 + installation: *937 + marketplace_purchase: *973 + organization: *938 + previous_marketplace_purchase: *974 + repository: *939 sender: *4 required: - action @@ -183823,11 +183927,11 @@ x-webhooks: type: string required: - to - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 sender: *4 required: - action @@ -183927,11 +184031,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 sender: *4 required: - action @@ -184010,11 +184114,11 @@ x-webhooks: type: string enum: - removed - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 sender: *4 required: - action @@ -184092,11 +184196,11 @@ x-webhooks: type: string enum: - added - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 scope: description: The scope of the membership. Currently, can only be `team`. @@ -184172,7 +184276,7 @@ x-webhooks: required: - login - id - team: &974 + team: &975 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -184395,11 +184499,11 @@ x-webhooks: type: string enum: - removed - enterprise: *935 - installation: *936 - member: *964 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + member: *965 + organization: *938 + repository: *939 scope: description: The scope of the membership. Currently, can only be `team`. @@ -184476,7 +184580,7 @@ x-webhooks: required: - login - id - team: *974 + team: *975 required: - action - scope @@ -184558,8 +184662,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *936 - merge_group: &976 + installation: *937 + merge_group: &977 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -184578,15 +184682,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *975 + head_commit: *976 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -184672,10 +184776,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *936 - merge_group: *976 - organization: *937 - repository: *938 + installation: *937 + merge_group: *977 + organization: *938 + repository: *939 sender: *4 required: - action @@ -184748,7 +184852,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 + enterprise: *936 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -184857,16 +184961,16 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *936 - organization: *937 + installation: *937 + organization: *938 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -184947,11 +185051,11 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 - milestone: *970 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185030,9 +185134,9 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - milestone: &979 + enterprise: *936 + installation: *937 + milestone: &980 title: Milestone description: A collection of related issues and pull requests. type: object @@ -185169,8 +185273,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185249,11 +185353,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - milestone: *970 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185363,11 +185467,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - milestone: *970 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *971 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185447,11 +185551,11 @@ x-webhooks: type: string enum: - opened - enterprise: *935 - installation: *936 - milestone: *979 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + milestone: *980 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185530,11 +185634,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *964 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + blocked_user: *965 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185613,11 +185717,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *964 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + blocked_user: *965 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -185693,7 +185797,7 @@ x-webhooks: enum: - created definition: *160 - enterprise: *935 + enterprise: *936 sender: *4 required: - action @@ -185773,8 +185877,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 sender: *4 required: - action @@ -185847,8 +185951,8 @@ x-webhooks: enum: - updated definition: *160 - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 sender: *4 required: - action @@ -185920,9 +186024,9 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 new_property_values: type: array @@ -186010,9 +186114,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - membership: &980 + enterprise: *936 + installation: *937 + membership: &981 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -186119,8 +186223,8 @@ x-webhooks: - role - organization_url - user - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186198,11 +186302,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *935 - installation: *936 - membership: *980 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + membership: *981 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186281,8 +186385,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -186398,10 +186502,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 - user: *964 + user: *965 required: - action - invitation @@ -186479,11 +186583,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *935 - installation: *936 - membership: *980 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + membership: *981 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186570,11 +186674,11 @@ x-webhooks: properties: from: type: string - enterprise: *935 - installation: *936 - membership: *980 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + membership: *981 + organization: *938 + repository: *939 sender: *4 required: - action @@ -186652,9 +186756,9 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 package: description: Information about the package. type: object @@ -187153,7 +187257,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &981 + items: &982 title: Ruby Gems metadata type: object properties: @@ -187248,7 +187352,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -187325,9 +187429,9 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 package: description: Information about the package. type: object @@ -187680,7 +187784,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *981 + items: *982 source_url: type: string format: uri @@ -187750,7 +187854,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -187926,12 +188030,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *935 + enterprise: *936 id: type: integer - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - id @@ -188008,7 +188112,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &982 + personal_access_token_request: &983 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -188154,10 +188258,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *935 - organization: *937 + enterprise: *936 + organization: *938 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188234,11 +188338,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *982 - enterprise: *935 - organization: *937 + personal_access_token_request: *983 + enterprise: *936 + organization: *938 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188314,11 +188418,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *982 - enterprise: *935 - organization: *937 + personal_access_token_request: *983 + enterprise: *936 + organization: *938 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188393,11 +188497,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *982 - organization: *937 - enterprise: *935 + personal_access_token_request: *983 + organization: *938 + enterprise: *936 sender: *4 - installation: *936 + installation: *937 required: - action - personal_access_token_request @@ -188502,7 +188606,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *983 + last_response: *984 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -188534,8 +188638,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 zen: description: Random string of GitHub zen. @@ -188780,10 +188884,10 @@ x-webhooks: - from required: - note - enterprise: *935 - installation: *936 - organization: *937 - project_card: &984 + enterprise: *936 + installation: *937 + organization: *938 + project_card: &985 title: Project Card type: object properties: @@ -188902,7 +189006,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *938 + repository: *939 sender: *4 required: - action @@ -188983,11 +189087,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - project_card: *984 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_card: *985 + repository: *939 sender: *4 required: - action @@ -189067,9 +189171,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 project_card: title: Project Card type: object @@ -189197,8 +189301,8 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -189292,11 +189396,11 @@ x-webhooks: - from required: - note - enterprise: *935 - installation: *936 - organization: *937 - project_card: *984 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_card: *985 + repository: *939 sender: *4 required: - action @@ -189390,9 +189494,9 @@ x-webhooks: - from required: - column_id - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 project_card: allOf: - title: Project Card @@ -189582,7 +189686,7 @@ x-webhooks: type: string required: - after_id - repository: *938 + repository: *939 sender: *4 required: - action @@ -189662,10 +189766,10 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 - organization: *937 - project: &986 + enterprise: *936 + installation: *937 + organization: *938 + project: &987 title: Project type: object properties: @@ -189789,7 +189893,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *938 + repository: *939 sender: *4 required: - action @@ -189869,10 +189973,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - project_column: &985 + enterprise: *936 + installation: *937 + organization: *938 + project_column: &986 title: Project Column type: object properties: @@ -189911,7 +190015,7 @@ x-webhooks: - name - created_at - updated_at - repository: *938 + repository: *939 sender: *4 required: - action @@ -189990,18 +190094,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - project_column: *985 + enterprise: *936 + installation: *937 + organization: *938 + project_column: *986 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -190091,11 +190195,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - project_column: *985 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_column: *986 + repository: *939 sender: *4 required: - action @@ -190175,11 +190279,11 @@ x-webhooks: type: string enum: - moved - enterprise: *935 - installation: *936 - organization: *937 - project_column: *985 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project_column: *986 + repository: *939 sender: *4 required: - action @@ -190259,11 +190363,11 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - project: *986 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 + repository: *939 sender: *4 required: - action @@ -190343,18 +190447,18 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - project: *986 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *977 - required: *978 + properties: *978 + required: *979 nullable: true sender: *4 required: @@ -190456,11 +190560,11 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - project: *986 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 + repository: *939 sender: *4 required: - action @@ -190539,11 +190643,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *935 - installation: *936 - organization: *937 - project: *986 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + project: *987 + repository: *939 sender: *4 required: - action @@ -190624,9 +190728,9 @@ x-webhooks: type: string enum: - closed - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -190707,9 +190811,9 @@ x-webhooks: type: string enum: - created - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -190790,9 +190894,9 @@ x-webhooks: type: string enum: - deleted - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -190909,9 +191013,9 @@ x-webhooks: type: string to: type: string - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -190994,7 +191098,7 @@ x-webhooks: type: string enum: - archived - changes: &990 + changes: &991 type: object properties: archived_at: @@ -191008,9 +191112,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *936 - organization: *937 - projects_v2_item: &987 + installation: *937 + organization: *938 + projects_v2_item: &988 title: Projects v2 Item description: An item belonging to a project type: object @@ -191028,7 +191132,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *443 + content_type: *444 creator: *4 created_at: type: string @@ -191145,9 +191249,9 @@ x-webhooks: nullable: true to: type: string - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191229,9 +191333,9 @@ x-webhooks: type: string enum: - created - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191312,9 +191416,9 @@ x-webhooks: type: string enum: - deleted - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191420,7 +191524,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &988 + - &989 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -191442,7 +191546,7 @@ x-webhooks: required: - id - name - - &989 + - &990 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -191476,8 +191580,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *988 - *989 + - *990 required: - field_value - type: object @@ -191493,9 +191597,9 @@ x-webhooks: nullable: true required: - body - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191590,9 +191694,9 @@ x-webhooks: to: type: string nullable: true - installation: *936 - organization: *937 - projects_v2_item: *987 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191675,10 +191779,10 @@ x-webhooks: type: string enum: - restored - changes: *990 - installation: *936 - organization: *937 - projects_v2_item: *987 + changes: *991 + installation: *937 + organization: *938 + projects_v2_item: *988 sender: *4 required: - action @@ -191760,9 +191864,9 @@ x-webhooks: type: string enum: - reopened - installation: *936 - organization: *937 - projects_v2: *436 + installation: *937 + organization: *938 + projects_v2: *437 sender: *4 required: - action @@ -191843,14 +191947,14 @@ x-webhooks: type: string enum: - created - installation: *936 - organization: *937 - projects_v2_status_update: &993 + installation: *937 + organization: *938 + projects_v2_status_update: &994 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *991 - required: *992 + properties: *992 + required: *993 sender: *4 required: - action @@ -191931,9 +192035,9 @@ x-webhooks: type: string enum: - deleted - installation: *936 - organization: *937 - projects_v2_status_update: *993 + installation: *937 + organization: *938 + projects_v2_status_update: *994 sender: *4 required: - action @@ -192069,9 +192173,9 @@ x-webhooks: type: string format: date nullable: true - installation: *936 - organization: *937 - projects_v2_status_update: *993 + installation: *937 + organization: *938 + projects_v2_status_update: *994 sender: *4 required: - action @@ -192142,10 +192246,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - repository @@ -192222,13 +192326,13 @@ x-webhooks: type: string enum: - assigned - assignee: *964 - enterprise: *935 - installation: *936 - number: &994 + assignee: *965 + enterprise: *936 + installation: *937 + number: &995 description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -194390,7 +194494,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -194516,7 +194620,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -194598,11 +194702,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -196757,7 +196861,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -196885,7 +196989,7 @@ x-webhooks: - draft reason: type: string - repository: *938 + repository: *939 sender: *4 required: - action @@ -196967,11 +197071,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -199126,7 +199230,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -199254,7 +199358,7 @@ x-webhooks: - draft reason: type: string - repository: *938 + repository: *939 sender: *4 required: - action @@ -199336,13 +199440,13 @@ x-webhooks: type: string enum: - closed - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: &995 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: &996 allOf: - - *776 + - *777 - type: object properties: allow_auto_merge: @@ -199404,7 +199508,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *938 + repository: *939 sender: *4 required: - action @@ -199485,12 +199589,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -199570,11 +199674,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *935 - milestone: *757 - number: *994 - organization: *937 - pull_request: &996 + enterprise: *936 + milestone: *758 + number: *995 + organization: *938 + pull_request: &997 title: Pull Request type: object properties: @@ -201730,7 +201834,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -201856,7 +201960,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -201935,11 +202039,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -204099,7 +204203,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -204240,7 +204344,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *938 + repository: *939 sender: *4 required: - action @@ -204364,12 +204468,12 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -204449,11 +204553,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -206613,7 +206717,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -206739,7 +206843,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -206819,11 +206923,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *935 - installation: *936 - label: *958 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + label: *959 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -208984,7 +209088,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -209110,7 +209214,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -209191,10 +209295,10 @@ x-webhooks: type: string enum: - locked - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -211353,7 +211457,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -211479,7 +211583,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -211559,12 +211663,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *935 - milestone: *757 - number: *994 - organization: *937 - pull_request: *996 - repository: *938 + enterprise: *936 + milestone: *758 + number: *995 + organization: *938 + pull_request: *997 + repository: *939 sender: *4 required: - action @@ -211643,12 +211747,12 @@ x-webhooks: type: string enum: - opened - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -211729,12 +211833,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -211814,12 +211918,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *935 - installation: *936 - number: *994 - organization: *937 - pull_request: *995 - repository: *938 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 + pull_request: *996 + repository: *939 sender: *4 required: - action @@ -212185,9 +212289,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: type: object properties: @@ -214241,7 +214345,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -214362,7 +214466,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *938 + repository: *939 sender: *4 required: - action @@ -214442,7 +214546,7 @@ x-webhooks: type: string enum: - deleted - comment: &998 + comment: &999 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -214727,9 +214831,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: type: object properties: @@ -216771,7 +216875,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -216892,7 +216996,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *938 + repository: *939 sender: *4 required: - action @@ -216972,11 +217076,11 @@ x-webhooks: type: string enum: - edited - changes: *997 - comment: *998 - enterprise: *935 - installation: *936 - organization: *937 + changes: *998 + comment: *999 + enterprise: *936 + installation: *937 + organization: *938 pull_request: type: object properties: @@ -219021,7 +219125,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -219142,7 +219246,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *938 + repository: *939 sender: *4 required: - action @@ -219223,9 +219327,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -221280,7 +221384,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -221403,7 +221507,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 + repository: *939 review: description: The review that was affected. type: object @@ -221650,9 +221754,9 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -223702,8 +223806,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 - review: &999 + repository: *939 + review: &1000 description: The review that was affected. type: object properties: @@ -223936,12 +224040,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -226103,7 +226207,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -226229,7 +226333,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_reviewer: title: User type: object @@ -226313,12 +226417,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -228487,7 +228591,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -228613,7 +228717,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_team: title: Team description: Groups of organization members that gives permissions @@ -228805,12 +228909,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -230973,7 +231077,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -231100,7 +231204,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_reviewer: title: User type: object @@ -231185,12 +231289,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *935 - installation: *936 + enterprise: *936 + installation: *937 number: description: The pull request number. type: integer - organization: *937 + organization: *938 pull_request: title: Pull Request type: object @@ -233344,7 +233448,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. @@ -233471,7 +233575,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 requested_team: title: Team description: Groups of organization members that gives permissions @@ -233652,9 +233756,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -235711,7 +235815,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -235834,8 +235938,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 - review: *999 + repository: *939 + review: *1000 sender: *4 required: - action @@ -235915,9 +236019,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -237883,7 +237987,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -238006,7 +238110,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 + repository: *939 sender: *4 thread: type: object @@ -238393,9 +238497,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 pull_request: title: Simple Pull Request type: object @@ -240348,7 +240452,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: type: string enum: @@ -240470,7 +240574,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *938 + repository: *939 sender: *4 thread: type: object @@ -240854,11 +240958,11 @@ x-webhooks: type: string enum: - stacked - enterprise: *935 - installation: *936 - stack: *773 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + stack: *774 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -243019,7 +243123,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -243145,7 +243249,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -243231,10 +243335,10 @@ x-webhooks: type: string before: type: string - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -245384,7 +245488,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -245510,7 +245614,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -245592,11 +245696,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *1000 - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + assignee: *1001 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -247758,7 +247862,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -247884,7 +247988,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -247963,11 +248067,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *935 - installation: *936 - label: *958 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + label: *959 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -250119,7 +250223,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -250245,7 +250349,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -250326,10 +250430,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *935 - installation: *936 - number: *994 - organization: *937 + enterprise: *936 + installation: *937 + number: *995 + organization: *938 pull_request: title: Pull Request type: object @@ -252474,7 +252578,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *773 + stack: *774 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -252599,7 +252703,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *938 + repository: *939 sender: *4 required: - action @@ -252799,7 +252903,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *935 + enterprise: *936 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -252891,8 +252995,8 @@ x-webhooks: - url - author - committer - installation: *936 - organization: *937 + installation: *937 + organization: *938 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -253478,9 +253582,9 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 registry_package: type: object properties: @@ -253926,7 +254030,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *981 + items: *982 summary: type: string tag_name: @@ -253980,7 +254084,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -254058,9 +254162,9 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 registry_package: type: object properties: @@ -254368,7 +254472,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *981 + items: *982 summary: type: string tag_name: @@ -254417,7 +254521,7 @@ x-webhooks: - owner - package_version - registry - repository: *938 + repository: *939 sender: *4 required: - action @@ -254494,10 +254598,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - release: &1001 + enterprise: *936 + installation: *937 + organization: *938 + release: &1002 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -254815,7 +254919,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *938 + repository: *939 sender: *4 required: - action @@ -254892,11 +254996,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - release: *1001 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1002 + repository: *939 sender: *4 required: - action @@ -255013,11 +255117,11 @@ x-webhooks: type: boolean required: - to - enterprise: *935 - installation: *936 - organization: *937 - release: *1001 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1002 + repository: *939 sender: *4 required: - action @@ -255095,9 +255199,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -255419,7 +255523,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *938 + repository: *939 sender: *4 required: - action @@ -255495,10 +255599,10 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 - release: &1002 + enterprise: *936 + installation: *937 + organization: *938 + release: &1003 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -255817,7 +255921,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *938 + repository: *939 sender: *4 required: - action @@ -255893,11 +255997,11 @@ x-webhooks: type: string enum: - released - enterprise: *935 - installation: *936 - organization: *937 - release: *1001 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1002 + repository: *939 sender: *4 required: - action @@ -255973,11 +256077,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *935 - installation: *936 - organization: *937 - release: *1002 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + release: *1003 + repository: *939 sender: *4 required: - action @@ -256053,11 +256157,11 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - repository_advisory: *831 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + repository_advisory: *832 sender: *4 required: - action @@ -256133,11 +256237,11 @@ x-webhooks: type: string enum: - reported - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - repository_advisory: *831 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + repository_advisory: *832 sender: *4 required: - action @@ -256213,10 +256317,10 @@ x-webhooks: type: string enum: - archived - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256293,10 +256397,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256374,10 +256478,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256461,10 +256565,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256576,10 +256680,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256651,10 +256755,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 status: type: string @@ -256735,10 +256839,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256815,10 +256919,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256912,10 +257016,10 @@ x-webhooks: - name required: - repository - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -256995,10 +257099,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 repository_ruleset: *199 sender: *4 required: @@ -257077,10 +257181,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 repository_ruleset: *199 sender: *4 required: @@ -257159,10 +257263,10 @@ x-webhooks: type: string enum: - edited - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 repository_ruleset: *199 changes: type: object @@ -257224,16 +257328,16 @@ x-webhooks: properties: added: type: array - items: *798 + items: *799 deleted: type: array - items: *798 + items: *799 updated: type: array items: type: object properties: - rule: *798 + rule: *799 changes: type: object properties: @@ -257467,10 +257571,10 @@ x-webhooks: - from required: - owner - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257548,10 +257652,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257629,7 +257733,7 @@ x-webhooks: type: string enum: - create - alert: &1003 + alert: &1004 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -257751,10 +257855,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -257960,10 +258064,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258041,11 +258145,11 @@ x-webhooks: type: string enum: - reopen - alert: *1003 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1004 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258244,10 +258348,10 @@ x-webhooks: enum: - fixed - open - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258325,7 +258429,7 @@ x-webhooks: type: string enum: - assigned - alert: &1005 + alert: &1006 type: object properties: number: *136 @@ -258475,12 +258579,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *1004 + metadata: *1005 assignee: *4 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258558,11 +258662,11 @@ x-webhooks: type: string enum: - created - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258643,11 +258747,11 @@ x-webhooks: type: string enum: - created - alert: *1005 - installation: *936 - location: *1006 - organization: *937 - repository: *938 + alert: *1006 + installation: *937 + location: *1007 + organization: *938 + repository: *939 sender: *4 required: - location @@ -258885,11 +258989,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -258966,11 +259070,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259047,11 +259151,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259129,11 +259233,11 @@ x-webhooks: type: string enum: - reopened - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259211,11 +259315,11 @@ x-webhooks: type: string enum: - resolved - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259293,12 +259397,12 @@ x-webhooks: type: string enum: - unassigned - alert: *1005 + alert: *1006 assignee: *4 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259376,11 +259480,11 @@ x-webhooks: type: string enum: - validated - alert: *1005 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + alert: *1006 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -259506,10 +259610,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *938 - enterprise: *935 - installation: *936 - organization: *937 + repository: *939 + enterprise: *936 + installation: *937 + organization: *938 sender: *4 required: - action @@ -259587,11 +259691,11 @@ x-webhooks: type: string enum: - published - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - security_advisory: &1007 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + security_advisory: &1008 description: The details of the security advisory, including summary, description, and severity. type: object @@ -259762,11 +259866,11 @@ x-webhooks: type: string enum: - updated - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 - security_advisory: *1007 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 + security_advisory: *1008 sender: *4 required: - action @@ -259839,10 +259943,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -260014,11 +260118,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *453 - enterprise: *935 - installation: *936 - organization: *937 - repository: *515 + security_and_analysis: *454 + enterprise: *936 + installation: *937 + organization: *938 + repository: *516 sender: *4 required: - changes @@ -260096,12 +260200,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: &1008 + sponsorship: &1009 type: object properties: created_at: @@ -260402,12 +260506,12 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - sponsorship @@ -260495,12 +260599,12 @@ x-webhooks: type: string required: - from - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - changes @@ -260577,17 +260681,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &1009 + effective_date: &1010 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: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - sponsorship @@ -260661,7 +260765,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &1010 + changes: &1011 type: object properties: tier: @@ -260705,13 +260809,13 @@ x-webhooks: - from required: - tier - effective_date: *1009 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + effective_date: *1010 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - changes @@ -260788,13 +260892,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *1010 - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + changes: *1011 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - sponsorship: *1008 + sponsorship: *1009 required: - action - changes @@ -260868,10 +260972,10 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -260954,10 +261058,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -261377,15 +261481,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *935 + enterprise: *936 id: description: The unique identifier of the status. type: integer - installation: *936 + installation: *937 name: type: string - organization: *937 - repository: *938 + organization: *938 + repository: *939 sender: *4 sha: description: The Commit SHA. @@ -261500,9 +261604,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -261591,9 +261695,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -261682,9 +261786,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -261773,9 +261877,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *235 - installation: *936 - organization: *937 - repository: *938 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -261851,12 +261955,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - team: &1011 + team: &1012 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -262079,9 +262183,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -262539,7 +262643,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -262615,9 +262719,9 @@ x-webhooks: type: string enum: - created - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -263075,7 +263179,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -263152,9 +263256,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -263612,7 +263716,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -263756,9 +263860,9 @@ x-webhooks: - from required: - permissions - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -264216,7 +264320,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - changes @@ -264294,9 +264398,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *935 - installation: *936 - organization: *937 + enterprise: *936 + installation: *937 + organization: *938 repository: title: Repository description: A git repository @@ -264754,7 +264858,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1011 + team: *1012 required: - action - team @@ -264830,10 +264934,10 @@ x-webhooks: type: string enum: - started - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 required: - action @@ -264906,16 +265010,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *935 + enterprise: *936 inputs: type: object nullable: true additionalProperties: true - installation: *936 - organization: *937 + installation: *937 + organization: *938 ref: type: string - repository: *938 + repository: *939 sender: *4 workflow: type: string @@ -264997,10 +265101,10 @@ x-webhooks: type: string enum: - completed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: allOf: @@ -265237,7 +265341,7 @@ x-webhooks: type: string required: - conclusion - deployment: *658 + deployment: *659 required: - action - repository @@ -265316,10 +265420,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: allOf: @@ -265579,7 +265683,7 @@ x-webhooks: required: - status - steps - deployment: *658 + deployment: *659 required: - action - repository @@ -265658,10 +265762,10 @@ x-webhooks: type: string enum: - queued - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: type: object @@ -265796,7 +265900,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *658 + deployment: *659 required: - action - repository @@ -265875,10 +265979,10 @@ x-webhooks: type: string enum: - waiting - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 workflow_job: type: object @@ -266014,7 +266118,7 @@ x-webhooks: - workflow_name - head_branch - created_at - deployment: *658 + deployment: *659 required: - action - repository @@ -266094,12 +266198,12 @@ x-webhooks: type: string enum: - completed - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Workflow Run type: object @@ -267098,12 +267202,12 @@ x-webhooks: type: string enum: - in_progress - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Workflow Run type: object @@ -268087,12 +268191,12 @@ x-webhooks: type: string enum: - requested - enterprise: *935 - installation: *936 - organization: *937 - repository: *938 + enterprise: *936 + installation: *937 + organization: *938 + repository: *939 sender: *4 - workflow: *954 + workflow: *955 workflow_run: title: Workflow Run type: object diff --git a/descriptions/ghec/dereferenced/ghec.deref.json b/descriptions/ghec/dereferenced/ghec.deref.json index 1814304288..f68cf351ba 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.json +++ b/descriptions/ghec/dereferenced/ghec.deref.json @@ -51060,6 +51060,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -52441,7 +52449,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -52666,7 +52675,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -75979,7 +75989,7 @@ "/enterprises/{enterprise}/settings/billing/budgets": { "get": { "summary": "Get all budgets", - "description": "Gets all budgets for an enterprise. The authenticated user must be an enterprise admin or billing manager.\nEach page returns up to 100 budgets.", + "description": "Gets all budgets for an enterprise. The authenticated actor must have permission to view enterprise billing.\nEach page returns up to 100 budgets.", "tags": [ "billing" ], @@ -76111,6 +76121,10 @@ "description": "The user login when the budget is scoped to a single user (`user` scope).", "example": "octocat" }, + "consumed_amount": { + "type": "number", + "description": "The amount consumed for a user-scoped budget, or for a multi-user budget when filtering by user." + }, "budget_product_sku": { "type": "string", "description": "A single product or sku to apply the budget to." @@ -76355,7 +76369,7 @@ }, "x-github": { "githubCloudOnly": true, - "enabledForGitHubApps": false, + "enabledForGitHubApps": true, "category": "billing", "subcategory": "budgets" } @@ -186267,6 +186281,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -187648,7 +187670,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -187873,7 +187896,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -268417,6 +268441,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ @@ -425514,6 +425589,14 @@ ] } }, + { + "name": "relationship", + "in": "query", + "description": "A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned.\n\n> [!NOTE]\n> We are rolling out support for dependency relationship across ecosystems. This value will be \"unknown\" for all dependencies in unsupported ecosystems.", + "schema": { + "type": "string" + } + }, { "name": "sort", "in": "query", @@ -426475,7 +426558,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -426633,7 +426717,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -427848,7 +427933,8 @@ "name": "ansible" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-8f4m-hccc-8qph", @@ -429079,7 +429165,8 @@ "name": "django" }, "manifest_path": "path/to/requirements.txt", - "scope": "runtime" + "scope": "runtime", + "relationship": "direct" }, "security_advisory": { "ghsa_id": "GHSA-rf4j-j272-fj86", @@ -792065,6 +792152,57 @@ 456, 789 ] + }, + "sort_by": { + "type": "array", + "description": "Sorting configuration for the view. Each element is a two-element array of `[field_id, direction]` where `direction` is `\"asc\"` or `\"desc\"`. Supports multiple sort criteria applied in order.", + "items": { + "type": "array", + "minItems": 2, + "maxItems": 2, + "items": { + "oneOf": [ + { + "type": "integer" + }, + { + "type": "string" + } + ] + } + }, + "example": [ + [ + 123, + "asc" + ], + [ + 456, + "desc" + ] + ] + }, + "group_by": { + "type": "array", + "description": "The field IDs to group items by (horizontal grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 123 + ] + }, + "vertical_group_by": { + "type": "array", + "description": "The field IDs to use as columns in `board` layout (vertical grouping). Supports a single field. The field must support grouping; fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues progress`, `Tracked by`, and `Tracks` cannot be grouped on.", + "items": { + "type": "integer" + }, + "maxItems": 1, + "example": [ + 456 + ] } }, "required": [ diff --git a/descriptions/ghec/dereferenced/ghec.deref.yaml b/descriptions/ghec/dereferenced/ghec.deref.yaml index 32f90a7e1d..36585f188d 100644 --- a/descriptions/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions/ghec/dereferenced/ghec.deref.yaml @@ -896,7 +896,7 @@ paths: - subscriptions_url - type - url - type: &495 + type: &496 type: string description: The type of credit the user is receiving. enum: @@ -1089,7 +1089,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &836 + - &837 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -4318,7 +4318,7 @@ paths: schema: type: integer default: 30 - - &378 + - &379 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 @@ -4327,7 +4327,7 @@ paths: required: false schema: type: string - - &379 + - &380 name: status description: Returns webhook deliveries filtered by delivery outcome classification based on `status_code` range. A `status` of `success` returns deliveries @@ -4347,7 +4347,7 @@ paths: application/json: schema: type: array - items: &380 + items: &381 title: Simple webhook delivery description: Delivery made by a webhook, without request and response information. @@ -4427,7 +4427,7 @@ paths: - installation_id - repository_id examples: - default: &381 + default: &382 value: - id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -4459,7 +4459,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &846 + schema: &847 title: Scim Error description: Scim Error type: object @@ -4555,7 +4555,7 @@ paths: description: Response content: application/json: - schema: &382 + schema: &383 title: Webhook delivery description: Delivery made by a webhook. type: object @@ -4669,7 +4669,7 @@ paths: - request - response examples: - default: &383 + default: &384 value: id: 12345678 guid: 0b989ba4-242f-11e5-81e1-c7b6966d2516 @@ -5689,7 +5689,7 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: &452 + properties: &453 id: description: Unique identifier of the repository example: 42 @@ -6140,7 +6140,7 @@ paths: type: boolean lexical_commit_sha: type: string - required: &453 + required: &454 - archive_url - assignees_url - blobs_url @@ -6214,7 +6214,7 @@ paths: - watchers_count - created_at - updated_at - x-github-breaking-changes: &454 + x-github-breaking-changes: &455 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -11987,7 +11987,7 @@ paths: value: days: 90 maximum_allowed_days: 365 - '401': &847 + '401': &848 description: Authorization failure '404': *6 x-github: @@ -16269,7 +16269,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &587 + instances_url: &588 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -16304,7 +16304,7 @@ paths: format: date-time readOnly: true nullable: true - dismissed_reason: &588 + dismissed_reason: &589 type: string description: "**Required when the state is dismissed.** The reason for dismissing or closing the alert." @@ -16313,13 +16313,13 @@ paths: - false positive - won't fix - used in tests - dismissed_comment: &589 + dismissed_comment: &590 type: string description: The dismissal comment associated with the dismissal of the alert. nullable: true maxLength: 280 - rule: &590 + rule: &591 type: object properties: id: @@ -16372,7 +16372,7 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: &591 + tool: &592 type: object properties: name: *114 @@ -16382,26 +16382,26 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *115 - most_recent_instance: &592 + most_recent_instance: &593 type: object properties: - ref: &585 + ref: &586 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &603 + analysis_key: &604 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: &604 + environment: &605 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: &605 + category: &606 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -16421,7 +16421,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: &606 + location: &607 type: object description: Describe a region within a file for the alert. properties: @@ -16442,7 +16442,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: &607 + items: &608 type: string description: A classification of the file. For example to identify it as generated. @@ -18801,7 +18801,7 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: &418 + properties: &419 id: description: Unique identifier of the team type: integer @@ -18873,7 +18873,7 @@ paths: description: Unique identifier of the enterprise to which this team belongs example: 42 - required: &419 + required: &420 - id - node_id - url @@ -21056,7 +21056,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 - - &649 + - &650 name: has in: query description: |- @@ -21090,6 +21090,16 @@ paths: - development - runtime - &362 + name: relationship + in: query + description: |- + A comma-separated list of relationships of the vulnerable dependency to your project. If specified, only alerts with these relationships will be returned. + + > [!NOTE] + > We are rolling out support for dependency relationship across ecosystems. This value will be "unknown" for all dependencies in unsupported ecosystems. + schema: + type: string + - &363 name: sort in: query description: |- @@ -21115,7 +21125,7 @@ paths: application/json: schema: type: array - items: &363 + items: &364 type: object description: A Dependabot alert. properties: @@ -21179,7 +21189,7 @@ paths: - direct - transitive - inconclusive - security_advisory: &650 + security_advisory: &651 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -21437,14 +21447,14 @@ paths: nullable: true maxLength: 280 fixed_at: *146 - auto_dismissed_at: &651 + auto_dismissed_at: &652 type: string description: 'The time that the alert was auto-dismissed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true nullable: true - dismissal_request: &652 + dismissal_request: &653 title: Dependabot alert dismissal request description: Information about an active dismissal request for this Dependabot alert. @@ -21506,7 +21516,7 @@ paths: - repository additionalProperties: false examples: - default: &364 + default: &365 value: - number: 2 state: dismissed @@ -21516,6 +21526,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -21702,6 +21713,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -21891,7 +21903,7 @@ paths: description: Response content: application/json: - schema: &365 + schema: &366 title: Dependabot Repository Access Details description: Information about repositories that Dependabot is able to access in an organization @@ -21917,7 +21929,7 @@ paths: nullable: true additionalProperties: false examples: - default: &366 + default: &367 value: default_level: public accessible_repositories: @@ -22139,7 +22151,7 @@ paths: - *106 - *107 - *108 - - &368 + - &369 name: request_status description: The status of the dismissal request to filter on. When specified, only requests with this status will be returned. @@ -22165,7 +22177,7 @@ paths: application/json: schema: type: array - items: &370 + items: &371 title: Secret scanning alert dismissal request description: A dismissal request made by a user asking to close a secret scanning alert in this repository. @@ -22286,7 +22298,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/secret-scanning/17 examples: - default: &371 + default: &372 value: - id: 21 number: 42 @@ -23365,7 +23377,7 @@ paths: application/json: schema: *22 examples: - default: &395 + default: &396 value: id: 1 account: @@ -23619,7 +23631,7 @@ paths: - name - created_on examples: - default: &500 + default: &501 value: total_count: 2 network_configurations: @@ -23870,7 +23882,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-enterprise parameters: - *42 - - &501 + - &502 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -23882,7 +23894,7 @@ paths: description: Response content: application/json: - schema: &502 + schema: &503 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -23916,7 +23928,7 @@ paths: - subnet_id - region examples: - default: &503 + default: &504 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -24735,7 +24747,7 @@ paths: required: true content: application/json: - schema: &451 + schema: &452 title: Custom Property Set Payload description: Custom property set payload type: object @@ -25966,7 +25978,7 @@ paths: nullable: true anyOf: - *170 - - &458 + - &459 title: Organization ruleset conditions type: object description: |- @@ -26013,7 +26025,7 @@ paths: - *173 rules: type: array - items: &801 + items: &802 title: Repository Rule type: object description: A repository rule. @@ -26022,7 +26034,7 @@ paths: - *179 - *180 - *181 - - &798 + - &799 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -26113,7 +26125,7 @@ paths: - *192 - *193 - *194 - - &799 + - &800 title: license_compliance_scanning description: Enforce any added or changed dependencies to comply with the organization's license policy. @@ -26362,7 +26374,7 @@ paths: type: string format: date-time examples: - default: &461 + default: &462 value: - version_id: 3 actor: @@ -26415,7 +26427,7 @@ paths: description: Response content: application/json: - schema: &462 + schema: &463 allOf: - *203 - type: object @@ -26470,7 +26482,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *42 - - &463 + - &464 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -26481,7 +26493,7 @@ paths: enum: - open - resolved - - &464 + - &465 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -26491,7 +26503,7 @@ paths: required: false schema: type: string - - &465 + - &466 name: exclude_secret_types in: query description: A comma-separated list of secret types to exclude from the results. @@ -26502,7 +26514,7 @@ paths: required: false schema: type: string - - &466 + - &467 name: exclude_providers in: query description: |- @@ -26513,7 +26525,7 @@ paths: required: false schema: type: string - - &467 + - &468 name: providers in: query description: |- @@ -26524,7 +26536,7 @@ paths: required: false schema: type: string - - &468 + - &469 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -26533,7 +26545,7 @@ paths: required: false schema: type: string - - &469 + - &470 name: assignee in: query description: Filters alerts by assignee. Use `*` to get all assigned alerts, @@ -26552,7 +26564,7 @@ paths: all-unassigned: value: none summary: Filter for all unassigned alerts - - &470 + - &471 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. @@ -26568,7 +26580,7 @@ paths: - *17 - *111 - *112 - - &471 + - &472 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -26577,7 +26589,7 @@ paths: required: false schema: type: string - - &472 + - &473 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -26586,7 +26598,7 @@ paths: schema: type: boolean default: false - - &473 + - &474 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -26595,7 +26607,7 @@ paths: schema: type: boolean default: false - - &474 + - &475 name: hide_secret in: query description: A boolean value representing whether or not to hide literal secrets @@ -26604,7 +26616,7 @@ paths: schema: type: boolean default: false - - &475 + - &476 name: is_bypassed in: query description: A boolean value (`true` or `false`) indicating whether to filter @@ -26615,7 +26627,7 @@ paths: required: false schema: type: boolean - - &476 + - &477 name: included_metadata in: query description: |- @@ -26626,7 +26638,7 @@ paths: required: false schema: type: string - - &477 + - &478 name: owner_email_hash in: query description: |- @@ -26645,7 +26657,7 @@ paths: application/json: schema: type: array - items: &478 + items: &479 type: object properties: number: *136 @@ -26664,14 +26676,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &814 + state: &815 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: &815 + resolution: &816 type: string description: "**Required when the `state` is `resolved`.** The reason for resolving the alert." @@ -26788,8 +26800,8 @@ paths: pull request. ' - oneOf: &816 - - &818 + oneOf: &817 + - &819 description: Represents a 'commit' secret scanning location type. This location type shows that a secret was detected inside a commit to a repository. @@ -26847,7 +26859,7 @@ paths: - blob_url - commit_sha - commit_url - - &819 + - &820 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. @@ -26902,7 +26914,7 @@ paths: - page_url - commit_sha - commit_url - - &820 + - &821 description: Represents an 'issue_title' secret scanning location type. This location type shows that a secret was detected in the title of an issue. @@ -26922,7 +26934,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_title_url - - &821 + - &822 description: Represents an 'issue_body' secret scanning location type. This location type shows that a secret was detected in the body of an issue. @@ -26942,7 +26954,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1 required: - issue_body_url - - &822 + - &823 description: Represents an 'issue_comment' secret scanning location type. This location type shows that a secret was detected in a comment on an issue. @@ -26962,7 +26974,7 @@ paths: example: https://github.com/octocat/Hello-World/issues/1#issuecomment-1081119451 required: - issue_comment_url - - &823 + - &824 description: Represents a 'discussion_title' secret scanning location type. This location type shows that a secret was detected in the title of a discussion. @@ -26976,7 +26988,7 @@ paths: example: https://github.com/community/community/discussions/39082 required: - discussion_title_url - - &824 + - &825 description: Represents a 'discussion_body' secret scanning location type. This location type shows that a secret was detected in the body of a discussion. @@ -26990,7 +27002,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussion-4566270 required: - discussion_body_url - - &825 + - &826 description: Represents a 'discussion_comment' secret scanning location type. This location type shows that a secret was detected in a comment on a discussion. @@ -27004,7 +27016,7 @@ paths: example: https://github.com/community/community/discussions/39082#discussioncomment-4158232 required: - discussion_comment_url - - &826 + - &827 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. @@ -27024,7 +27036,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_title_url - - &827 + - &828 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. @@ -27044,7 +27056,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846 required: - pull_request_body_url - - &828 + - &829 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. @@ -27064,7 +27076,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#issuecomment-1081119451 required: - pull_request_comment_url - - &829 + - &830 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. @@ -27084,7 +27096,7 @@ paths: example: https://github.com/octocat/Hello-World/pull/2846#pullrequestreview-80 required: - pull_request_review_url - - &830 + - &831 description: Represents a 'pull_request_review_comment' secret scanning location type. This location type shows that a secret was detected in a review comment on a pull request. @@ -27132,7 +27144,7 @@ paths: required: *21 nullable: true examples: - default: &479 + default: &480 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -27336,7 +27348,7 @@ paths: subcategory: custom-patterns parameters: - *42 - - &480 + - &481 name: state description: Filter custom patterns by state. When absent, returns patterns in all states. @@ -27347,7 +27359,7 @@ paths: enum: - published - unpublished - - &481 + - &482 name: push_protection description: Filter custom patterns by whether push protection is enabled. When absent, returns patterns regardless of push protection status. @@ -27358,7 +27370,7 @@ paths: enum: - enabled - disabled - - &482 + - &483 name: sort description: The property to sort the results by. in: query @@ -27452,7 +27464,7 @@ paths: - state - push_protection_enabled examples: - default: &483 + default: &484 value: - id: 1 name: Example Custom Pattern @@ -27515,7 +27527,7 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: &484 + items: &485 title: Secret Scanning Custom Pattern To Create description: A custom pattern to create in a bulk operation. type: object @@ -27552,7 +27564,7 @@ paths: items: type: string examples: - default: &485 + default: &486 value: patterns: - name: Example Custom Pattern @@ -27578,7 +27590,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: &486 + default: &487 value: created_patterns: - id: 1 @@ -27630,7 +27642,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: &487 + items: &488 title: Secret Scanning Custom Pattern Validation Error description: A validation error for a custom pattern in a batch operation. @@ -27684,7 +27696,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: &488 + items: &489 title: Secret Scanning Custom Pattern To Delete description: A custom pattern to delete in a bulk operation. type: object @@ -27707,7 +27719,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: &489 + default: &490 value: patterns: - pattern_id: 2 @@ -27753,7 +27765,7 @@ paths: required: true content: application/json: - schema: &490 + schema: &491 title: Secret Scanning Custom Pattern To Update description: Fields to update on a custom pattern. At least one updatable field (`pattern`, `start_delimiter`, `end_delimiter`, `must_match`, @@ -27794,7 +27806,7 @@ paths: type: string custom_pattern_version: *206 examples: - default: &491 + default: &492 value: pattern: updated_secret_[0-9A-Z]{16} start_delimiter: "[^0-9A-Za-z]" @@ -27811,7 +27823,7 @@ paths: application/json: schema: *205 examples: - default: &492 + default: &493 value: id: 1 name: Example Custom Pattern @@ -27858,7 +27870,7 @@ paths: description: Response content: application/json: - schema: &493 + schema: &494 title: Secret scanning pattern configuration description: A collection of secret scanning patterns and their settings related to push protection. @@ -27936,7 +27948,7 @@ paths: description: Overrides for custom patterns defined by the organization. items: *208 examples: - default: &494 + default: &495 value: pattern_config_version: 0ujsswThIGTUYm2K8FjOOfXtY1K provider_pattern_overrides: @@ -28072,7 +28084,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/licensing#get-github-advanced-security-active-committers-for-an-enterprise parameters: - *42 - - &497 + - &498 name: advanced_security_product in: query description: | @@ -28092,7 +28104,7 @@ paths: description: Success content: application/json: - schema: &498 + schema: &499 type: object properties: total_advanced_security_committers: @@ -28147,7 +28159,7 @@ paths: required: - repositories examples: - default: &499 + default: &500 value: total_advanced_security_committers: 2 total_count: 2 @@ -28387,7 +28399,7 @@ paths: get: summary: Get all budgets description: |- - Gets all budgets for an enterprise. The authenticated user must be an enterprise admin or billing manager. + Gets all budgets for an enterprise. The authenticated actor must have permission to view enterprise billing. Each page returns up to 100 budgets. tags: - billing @@ -28495,6 +28507,10 @@ paths: description: The user login when the budget is scoped to a single user (`user` scope). example: octocat + consumed_amount: + type: number + description: The amount consumed for a user-scoped budget, + or for a multi-user budget when filtering by user. budget_product_sku: type: string description: A single product or sku to apply the budget @@ -28635,7 +28651,7 @@ paths: '403': *29 x-github: githubCloudOnly: true - enabledForGitHubApps: false + enabledForGitHubApps: true category: billing subcategory: budgets post: @@ -31992,7 +32008,7 @@ paths: properties: action: type: string - discussion: &958 + discussion: &959 title: Discussion description: A Discussion in a repository. type: object @@ -32359,7 +32375,7 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: &710 + properties: &711 id: type: integer format: int64 @@ -32472,7 +32488,7 @@ paths: description: A collection of related issues and pull requests. type: object - properties: &440 + properties: &441 url: type: string format: uri @@ -32542,7 +32558,7 @@ paths: format: date-time example: '2012-10-09T23:39:01Z' nullable: true - required: &441 + required: &442 - closed_issues - creator - description @@ -32621,7 +32637,7 @@ paths: timeline_url: type: string format: uri - type: &405 + type: &406 title: Issue Type description: The type assigned to the issue. This is only present for issues in repositories where @@ -32737,7 +32753,7 @@ paths: - hooray - eyes - rocket - sub_issues_summary: &874 + sub_issues_summary: &875 title: Sub-issues Summary type: object properties: @@ -32824,7 +32840,7 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: &740 + properties: &741 pinned_at: type: string format: date-time @@ -32836,7 +32852,7 @@ paths: properties: *20 required: *21 nullable: true - required: &741 + required: &742 - pinned_at - pinned_by nullable: true @@ -32845,13 +32861,13 @@ paths: description: Details about why an issue comment was minimized. type: object - properties: &742 + properties: &743 reason: description: The reason the comment was minimized. type: string nullable: true example: low-quality - required: &743 + required: &744 - reason nullable: true required: &237 @@ -32864,7 +32880,7 @@ paths: - created_at - updated_at nullable: true - issue_dependencies_summary: &875 + issue_dependencies_summary: &876 title: Issue Dependencies Summary type: object properties: @@ -32883,7 +32899,7 @@ paths: - total_blocking issue_field_values: type: array - items: &722 + items: &723 title: Issue Field Value description: A value assigned to an issue field type: object @@ -32975,7 +32991,7 @@ paths: - node_id - data_type - value - required: &711 + required: &712 - assignee - closed_at - comments @@ -32996,7 +33012,7 @@ paths: - user - created_at - updated_at - x-github-breaking-changes: &712 + x-github-breaking-changes: &713 - changeset: deprecate_beta_media_type patch: properties: @@ -33056,7 +33072,7 @@ paths: action: type: string issue: *235 - comment: &706 + comment: &707 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -33720,7 +33736,7 @@ paths: type: string release: allOf: - - &791 + - &792 title: Release description: A release. type: object @@ -33791,7 +33807,7 @@ paths: author: *4 assets: type: array - items: &792 + items: &793 title: Release Asset description: Data related to a release. type: object @@ -34399,7 +34415,7 @@ paths: url: type: string format: uri - user: &883 + user: &884 title: Public User description: Public User type: object @@ -36290,7 +36306,7 @@ paths: - closed - all default: open - - &408 + - &409 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -36341,7 +36357,7 @@ paths: type: array items: *235 examples: - default: &409 + default: &410 value: - id: 1 node_id: MDU6SXNzdWUx @@ -37740,14 +37756,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &512 + - &513 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &513 + - &514 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -37809,7 +37825,7 @@ paths: '404': *6 '403': *29 '304': *38 - '301': &518 + '301': &519 description: Moved permanently content: application/json: @@ -37831,7 +37847,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &763 + - &764 name: all description: If `true`, show notifications marked as read. in: query @@ -37839,7 +37855,7 @@ paths: schema: type: boolean default: false - - &764 + - &765 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -37849,7 +37865,7 @@ paths: type: boolean default: false - *242 - - &765 + - &766 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: @@ -37885,7 +37901,7 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: &372 + properties: &373 id: type: integer format: int64 @@ -38171,7 +38187,7 @@ paths: web_commit_signoff_required: type: boolean example: false - security_and_analysis: &455 + security_and_analysis: &456 nullable: true type: object properties: @@ -38299,7 +38315,7 @@ paths: the repository. The keys are the custom property names, and the values are the corresponding custom property values. additionalProperties: true - required: &373 + required: &374 - archive_url - assignees_url - blobs_url @@ -38346,7 +38362,7 @@ paths: - teams_url - trees_url - url - x-github-breaking-changes: &374 + x-github-breaking-changes: &375 - changeset: remove_has_downloads patch: properties: @@ -38393,7 +38409,7 @@ paths: - url - subscription_url examples: - default: &766 + default: &767 value: - id: '1' repository: @@ -39258,7 +39274,7 @@ paths: type: array items: *164 examples: - default: &772 + default: &773 value: - property_name: environment value: production @@ -39308,7 +39324,7 @@ paths: required: - properties examples: - default: &773 + default: &774 value: properties: - property_name: environment @@ -40149,7 +40165,7 @@ paths: type: integer repository_cache_usages: type: array - items: &525 + items: &526 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -46401,12 +46417,12 @@ paths: required: - subject_digests examples: - default: &916 + default: &917 value: subject_digests: - sha256:abc123 - sha512:def456 - withPredicateType: &917 + withPredicateType: &918 value: subject_digests: - sha256:abc123 @@ -46464,7 +46480,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: &918 + default: &919 value: attestations_subject_digests: - sha256:abc: @@ -46829,7 +46845,7 @@ paths: initiator: type: string examples: - default: &558 + default: &559 value: attestations: - repository_id: 1 @@ -47678,7 +47694,7 @@ paths: be returned. in: query required: false - schema: &586 + schema: &587 type: string description: Severity of a code scanning alert. enum: @@ -48744,7 +48760,7 @@ paths: type: integer codespaces: type: array - items: &410 + items: &411 type: object title: Codespace description: A codespace. @@ -48774,7 +48790,7 @@ paths: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: &619 + properties: &620 name: type: string description: The name of the machine. @@ -48816,7 +48832,7 @@ paths: - ready - in_progress nullable: true - required: &620 + required: &621 - name - display_name - operating_system @@ -49021,7 +49037,7 @@ paths: - pulls_url - recent_folders examples: - default: &411 + default: &412 value: total_count: 3 codespaces: @@ -49684,7 +49700,7 @@ paths: - updated_at - visibility examples: - default: &621 + default: &622 value: total_count: 2 secrets: @@ -49722,7 +49738,7 @@ paths: description: Response content: application/json: - schema: &622 + schema: &623 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -49751,7 +49767,7 @@ paths: - key_id - key examples: - default: &623 + default: &624 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -49783,7 +49799,7 @@ paths: application/json: schema: *343 examples: - default: &625 + default: &626 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -53591,6 +53607,7 @@ paths: type: string - *361 - *362 + - *363 - *113 - *111 - *112 @@ -53602,9 +53619,9 @@ paths: application/json: schema: type: array - items: *363 + items: *364 examples: - default: *364 + default: *365 '304': *38 '400': *14 '403': *29 @@ -53653,9 +53670,9 @@ paths: description: Response content: application/json: - schema: *365 + schema: *366 examples: - default: *366 + default: *367 '403': *29 '404': *6 x-github: @@ -53818,7 +53835,7 @@ paths: type: integer secrets: type: array - items: &367 + items: &368 title: Dependabot Secret for an Organization description: Secrets for GitHub Dependabot for an organization. type: object @@ -53895,7 +53912,7 @@ paths: description: Response content: application/json: - schema: &655 + schema: &656 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -53912,7 +53929,7 @@ paths: - key_id - key examples: - default: &656 + default: &657 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -53942,7 +53959,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *368 examples: default: value: @@ -54248,7 +54265,7 @@ paths: subcategory: alert-dismissal-requests parameters: - *90 - - &665 + - &666 name: reviewer description: Filter alert dismissal requests by the handle of the GitHub user who reviewed the dismissal request. @@ -54256,7 +54273,7 @@ paths: required: false schema: type: string - - &666 + - &667 name: requester description: Filter alert dismissal requests by the handle of the GitHub user who requested the dismissal. @@ -54264,7 +54281,7 @@ paths: required: false schema: type: string - - &667 + - &668 name: time_period description: |- The time period to filter by. @@ -54280,7 +54297,7 @@ paths: - week - month default: month - - &668 + - &669 name: request_status description: Filter alert dismissal requests by status. When specified, only requests with this status will be returned. @@ -54305,7 +54322,7 @@ paths: application/json: schema: type: array - items: &669 + items: &670 title: Code scanning alert dismissal request description: Alert dismisal request made by a user asking to dismiss a code scanning alert. @@ -54411,7 +54428,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: &369 + items: &370 title: Dismissal request response description: A response made by a requester to dismiss the request. @@ -54461,7 +54478,7 @@ paths: format: uri example: https://github.com/octo-org/smile/code-scanning/alerts/1 examples: - default: &670 + default: &671 value: - id: 21 number: 42 @@ -54553,7 +54570,7 @@ paths: - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -54563,7 +54580,7 @@ paths: application/json: schema: type: array - items: &671 + items: &672 title: Dependabot alert dismissal request description: Alert dismissal request made by a user asking to dismiss a Dependabot alert. @@ -54669,7 +54686,7 @@ paths: type: array description: The responses to the dismissal request. nullable: true - items: *369 + items: *370 url: type: string format: uri @@ -54680,7 +54697,7 @@ paths: format: uri example: https://github.com/octo-org/smile/security/dependabot/1 examples: - default: &672 + default: &673 value: - id: 21 number: 42 @@ -54772,7 +54789,7 @@ paths: - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -54782,9 +54799,9 @@ paths: application/json: schema: type: array - items: *370 + items: *371 examples: - default: *371 + default: *372 '404': *6 '403': *29 '500': *41 @@ -54810,7 +54827,7 @@ paths: application/json: schema: type: array - items: &421 + items: &422 title: Package description: A software package type: object @@ -54860,9 +54877,9 @@ paths: title: Minimal Repository description: Minimal Repository type: object - properties: *372 - required: *373 - x-github-breaking-changes: *374 + properties: *373 + required: *374 + x-github-breaking-changes: *375 nullable: true created_at: type: string @@ -54881,7 +54898,7 @@ paths: - created_at - updated_at examples: - default: &422 + default: &423 value: - id: 197 name: hello_docker @@ -55068,7 +55085,7 @@ paths: description: Response content: application/json: - schema: &509 + schema: &510 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -55149,7 +55166,7 @@ paths: example: mona_lisa@github.com type: string examples: - default: &510 + default: &511 value: group_id: '123' group_name: Octocat admins @@ -55204,7 +55221,7 @@ paths: description: Response content: application/json: - schema: &506 + schema: &507 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -55241,7 +55258,7 @@ paths: example: 2019-06-03 22:27:15:000 -700 type: string examples: - default: &507 + default: &508 value: groups: - group_id: '123' @@ -55286,7 +55303,7 @@ paths: application/json: schema: type: array - items: &399 + items: &400 title: Organization Invitation description: Organization Invitation type: object @@ -55333,7 +55350,7 @@ paths: - invitation_teams_url - node_id examples: - default: &400 + default: &401 value: - id: 1 login: monalisa @@ -55400,7 +55417,7 @@ paths: application/json: schema: type: array - items: &456 + items: &457 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -55414,7 +55431,7 @@ paths: - name - description examples: - default: &457 + default: &458 value: - name: add_assignee description: Assign or remove a user @@ -55455,7 +55472,7 @@ paths: application/json: schema: type: array - items: &375 + items: &376 title: Org Hook description: Org Hook type: object @@ -55624,9 +55641,9 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: - default: &376 + default: &377 value: id: 1 url: https://api.github.com/orgs/octocat/hooks/1 @@ -55671,7 +55688,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-an-organization-webhook parameters: - *90 - - &377 + - &378 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. @@ -55684,9 +55701,9 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: - default: *376 + default: *377 '404': *6 x-github: githubCloudOnly: false @@ -55708,7 +55725,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-an-organization-webhook parameters: - *90 - - *377 + - *378 requestBody: required: false content: @@ -55753,7 +55770,7 @@ paths: description: Response content: application/json: - schema: *375 + schema: *376 examples: default: value: @@ -55793,7 +55810,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#delete-an-organization-webhook parameters: - *90 - - *377 + - *378 responses: '204': description: Response @@ -55819,7 +55836,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-configuration-for-an-organization parameters: - *90 - - *377 + - *378 responses: '200': description: Response @@ -55848,7 +55865,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#update-a-webhook-configuration-for-an-organization parameters: - *90 - - *377 + - *378 requestBody: required: false content: @@ -55897,10 +55914,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#list-deliveries-for-an-organization-webhook parameters: - *90 - - *377 - - *17 - *378 + - *17 - *379 + - *380 responses: '200': description: Response @@ -55908,9 +55925,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 '400': *14 '422': *15 x-github: @@ -55934,16 +55951,16 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#get-a-webhook-delivery-for-an-organization-webhook parameters: - *90 - - *377 + - *378 - *16 responses: '200': description: Response content: application/json: - schema: *382 + schema: *383 examples: - default: *383 + default: *384 '400': *14 '422': *15 x-github: @@ -55967,7 +55984,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#redeliver-a-delivery-for-an-organization-webhook parameters: - *90 - - *377 + - *378 - *16 responses: '202': *40 @@ -55994,7 +56011,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/webhooks#ping-an-organization-webhook parameters: - *90 - - *377 + - *378 responses: '204': description: Response @@ -56019,7 +56036,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-route-stats-by-actor parameters: - *90 - - &388 + - &389 name: actor_type in: path description: The type of the actor @@ -56032,14 +56049,14 @@ paths: - fine_grained_pat - oauth_app - github_app_user_to_server - - &389 + - &390 name: actor_id in: path description: The ID of the actor required: true schema: type: integer - - &384 + - &385 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`.' @@ -56047,7 +56064,7 @@ paths: required: true schema: type: string - - &385 + - &386 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) @@ -56143,12 +56160,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-subject-stats parameters: - *90 - - *384 - *385 + - *386 - *19 - *17 - *113 - - &394 + - &395 name: sort description: The property to sort the results by. in: query @@ -56228,14 +56245,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats parameters: - *90 - - *384 - *385 + - *386 responses: '200': description: Response content: application/json: - schema: &386 + schema: &387 title: Summary Stats description: API Insights usage summary stats for an organization type: object @@ -56251,7 +56268,7 @@ paths: type: integer format: int64 examples: - default: &387 + default: &388 value: total_request_count: 34225 rate_limited_request_count: 23 @@ -56274,23 +56291,23 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-user parameters: - *90 - - &390 + - &391 name: user_id in: path description: The ID of the user to query for stats required: true schema: type: string - - *384 - *385 + - *386 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 x-github: enabledForGitHubApps: true category: orgs @@ -56310,18 +56327,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-summary-stats-by-actor parameters: - *90 - - *384 - *385 - - *388 + - *386 - *389 + - *390 responses: '200': description: Response content: application/json: - schema: *386 + schema: *387 examples: - default: *387 + default: *388 x-github: enabledForGitHubApps: true category: orgs @@ -56341,9 +56358,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats parameters: - *90 - - *384 - *385 - - &391 + - *386 + - &392 name: timestamp_increment description: The increment of time used to breakdown the query results (5m, 10m, 1h, etc.) @@ -56356,7 +56373,7 @@ paths: description: Response content: application/json: - schema: &392 + schema: &393 title: Time Stats description: API Insights usage time stats for an organization type: array @@ -56372,7 +56389,7 @@ paths: type: integer format: int64 examples: - default: &393 + default: &394 value: - timestamp: '2024-09-11T15:00:00Z' total_request_count: 34225 @@ -56411,18 +56428,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-user parameters: - *90 - - *390 - - *384 - - *385 - *391 + - *385 + - *386 + - *392 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: *393 + default: *394 x-github: enabledForGitHubApps: true category: orgs @@ -56442,19 +56459,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-time-stats-by-actor parameters: - *90 - - *388 - *389 - - *384 + - *390 - *385 - - *391 + - *386 + - *392 responses: '200': description: Response content: application/json: - schema: *392 + schema: *393 examples: - default: *393 + default: *394 x-github: enabledForGitHubApps: true category: orgs @@ -56474,13 +56491,13 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/api-insights#get-user-stats parameters: - *90 - - *390 - - *384 + - *391 - *385 + - *386 - *19 - *17 - *113 - - *394 + - *395 - name: actor_name_substring in: query description: Providing a substring will filter results where the actor name @@ -56561,7 +56578,7 @@ paths: application/json: schema: *22 examples: - default: *395 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -56681,12 +56698,12 @@ paths: application/json: schema: anyOf: - - &397 + - &398 title: Interaction Limits description: Interaction limit settings. type: object properties: - limit: &396 + limit: &397 type: string description: The type of GitHub user that can comment, open issues, or create pull requests while the interaction limit @@ -56711,7 +56728,7 @@ paths: properties: {} additionalProperties: false examples: - default: &398 + default: &399 value: limit: collaborators_only origin: organization @@ -56740,13 +56757,13 @@ paths: required: true content: application/json: - schema: &701 + schema: &702 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration type: object properties: - limit: *396 + limit: *397 expiry: type: string description: 'The duration of the interaction restriction. Default: @@ -56770,9 +56787,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *398 + default: *399 '422': *15 x-github: githubCloudOnly: false @@ -56984,9 +57001,9 @@ paths: application/json: schema: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *48 '404': *6 @@ -57064,7 +57081,7 @@ paths: description: Response content: application/json: - schema: *399 + schema: *400 examples: default: value: @@ -57121,7 +57138,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#cancel-an-organization-invitation parameters: - *90 - - &401 + - &402 name: invitation_id description: The unique identifier of the invitation. in: path @@ -57155,7 +57172,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/members#list-organization-invitation-teams parameters: - *90 - - *401 + - *402 - *17 - *19 responses: @@ -57167,7 +57184,7 @@ paths: type: array items: *329 examples: - default: &420 + default: &421 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -57210,7 +57227,7 @@ paths: application/json: schema: type: array - items: &402 + items: &403 title: Issue Field description: A custom attribute defined at the organization level for attaching structured data to issues. @@ -57463,9 +57480,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: &403 + default: &404 value: id: 512 node_id: IF_kwDNAd3NAZr @@ -57521,7 +57538,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#update-issue-field-for-an-organization parameters: - *90 - - &404 + - &405 name: issue_field_id description: The unique identifier of the issue field. in: path @@ -57629,9 +57646,9 @@ paths: description: Response content: application/json: - schema: *402 + schema: *403 examples: - default: *403 + default: *404 '404': *6 '422': *7 x-github: @@ -57656,7 +57673,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-fields#delete-issue-field-for-an-organization parameters: - *90 - - *404 + - *405 responses: '204': *129 '404': *6 @@ -57686,9 +57703,9 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: - default: &705 + default: &706 value: - id: 410 node_id: IT_kwDNAd3NAZo @@ -57771,9 +57788,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: &406 + default: &407 value: id: 410 node_id: IT_kwDNAd3NAZo @@ -57806,7 +57823,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#update-issue-type-for-an-organization parameters: - *90 - - &407 + - &408 name: issue_type_id description: The unique identifier of the issue type. in: path @@ -57859,9 +57876,9 @@ paths: description: Response content: application/json: - schema: *405 + schema: *406 examples: - default: *406 + default: *407 '404': *6 '422': *7 x-github: @@ -57886,7 +57903,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/issue-types#delete-issue-type-for-an-organization parameters: - *90 - - *407 + - *408 responses: '204': description: Response @@ -57949,7 +57966,7 @@ paths: - closed - all default: open - - *408 + - *409 - name: type description: Can be the name of an issue type. in: query @@ -57980,7 +57997,7 @@ paths: type: array items: *235 examples: - default: *409 + default: *410 headers: Link: *48 '404': *6 @@ -58145,9 +58162,9 @@ paths: type: integer codespaces: type: array - items: *410 + items: *411 examples: - default: *411 + default: *412 '304': *38 '500': *41 '401': *25 @@ -58174,7 +58191,7 @@ paths: parameters: - *90 - *135 - - &412 + - &413 name: codespace_name in: path required: true @@ -58209,15 +58226,15 @@ paths: parameters: - *90 - *135 - - *412 + - *413 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: &618 + default: &619 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -58473,7 +58490,7 @@ paths: description: Response content: application/json: - schema: &413 + schema: &414 title: Org Membership description: Org Membership type: object @@ -58540,7 +58557,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &414 + response-if-user-has-an-active-admin-membership-with-organization: &415 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -58641,9 +58658,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: - response-if-user-already-had-membership-with-organization: *414 + response-if-user-already-had-membership-with-organization: *415 '422': *15 '403': *29 x-github: @@ -58720,7 +58737,7 @@ paths: application/json: schema: type: array - items: &415 + items: &416 title: Migration description: A migration. type: object @@ -59060,7 +59077,7 @@ paths: description: Response content: application/json: - schema: *415 + schema: *416 examples: default: value: @@ -59239,7 +59256,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#get-an-organization-migration-status parameters: - *90 - - &416 + - &417 name: migration_id description: The unique identifier of the migration. in: path @@ -59266,7 +59283,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *415 + schema: *416 examples: default: value: @@ -59436,7 +59453,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *90 - - *416 + - *417 responses: '302': description: Response @@ -59458,7 +59475,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *90 - - *416 + - *417 responses: '204': description: Response @@ -59482,8 +59499,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#unlock-an-organization-repository parameters: - *90 - - *416 - - &899 + - *417 + - &900 name: repo_name description: repo_name parameter in: path @@ -59511,7 +59528,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *90 - - *416 + - *417 - *17 - *19 responses: @@ -59523,7 +59540,7 @@ paths: type: array items: *296 examples: - default: &427 + default: &428 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -59752,7 +59769,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &417 + items: &418 title: Organization Role description: Organization roles type: object @@ -59959,7 +59976,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: default: value: @@ -60189,7 +60206,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: default: value: @@ -60286,7 +60303,7 @@ paths: description: Response content: application/json: - schema: *417 + schema: *418 examples: default: value: @@ -60444,8 +60461,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *418 - required: *419 + properties: *419 + required: *420 nullable: true type: description: The ownership type of the team @@ -60477,7 +60494,7 @@ paths: - type - parent examples: - default: *420 + default: *421 headers: Link: *48 '404': @@ -60535,13 +60552,13 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: &496 + items: &497 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *418 - required: *419 + properties: *419 + required: *420 name: nullable: true type: string @@ -60829,7 +60846,7 @@ paths: - nuget - container - *90 - - &900 + - &901 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -60865,12 +60882,12 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: - default: *422 + default: *423 '403': *29 '401': *25 - '400': &902 + '400': &903 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -60892,7 +60909,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-an-organization parameters: - - &423 + - &424 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 @@ -60910,7 +60927,7 @@ paths: - docker - nuget - container - - &424 + - &425 name: package_name description: The name of the package. in: path @@ -60923,7 +60940,7 @@ paths: description: Response content: application/json: - schema: *421 + schema: *422 examples: default: value: @@ -60975,8 +60992,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *423 - *424 + - *425 - *90 responses: '204': @@ -61009,8 +61026,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *423 - *424 + - *425 - *90 - name: token description: package token @@ -61043,8 +61060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-an-organization parameters: - - *423 - *424 + - *425 - *90 - *19 - *17 @@ -61065,7 +61082,7 @@ paths: application/json: schema: type: array - items: &425 + items: &426 title: Package Version description: A version of a software package type: object @@ -61190,10 +61207,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *423 - *424 + - *425 - *90 - - &426 + - &427 name: package_version_id description: Unique identifier of the package version. in: path @@ -61205,7 +61222,7 @@ paths: description: Response content: application/json: - schema: *425 + schema: *426 examples: default: value: @@ -61241,10 +61258,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *423 - *424 + - *425 - *90 - - *426 + - *427 responses: '204': description: Response @@ -61276,10 +61293,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *423 - *424 + - *425 - *90 - - *426 + - *427 responses: '204': description: Response @@ -61309,7 +61326,7 @@ paths: - *90 - *17 - *19 - - &428 + - &429 name: sort description: The property by which to sort the results. in: query @@ -61320,7 +61337,7 @@ paths: - created_at default: created_at - *113 - - &429 + - &430 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -61331,7 +61348,7 @@ paths: items: type: string example: owner[]=octocat1,owner[]=octocat2 - - &430 + - &431 name: repository description: The name of the repository to use to filter the results. in: query @@ -61339,7 +61356,7 @@ paths: schema: type: string example: Hello-World - - &431 + - &432 name: permission description: The permission to use to filter the results. in: query @@ -61347,7 +61364,7 @@ paths: schema: type: string example: issues_read - - &432 + - &433 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) @@ -61357,7 +61374,7 @@ paths: schema: type: string format: date-time - - &433 + - &434 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) @@ -61367,7 +61384,7 @@ paths: schema: type: string format: date-time - - &434 + - &435 name: token_id description: The ID of the token in: query @@ -61680,7 +61697,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 x-github: @@ -61706,14 +61723,14 @@ paths: - *90 - *17 - *19 - - *428 - - *113 - *429 + - *113 - *430 - *431 - *432 - *433 - *434 + - *435 responses: '500': *41 '422': *15 @@ -61995,7 +62012,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 x-github: @@ -62037,7 +62054,7 @@ paths: type: integer configurations: type: array - items: &435 + items: &436 title: Organization private registry description: Private registry configuration for an organization type: object @@ -62548,7 +62565,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &436 + org-private-registry-with-selected-visibility: &437 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -62644,9 +62661,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *435 + schema: *436 examples: - default: *436 + default: *437 '404': *6 x-github: githubCloudOnly: false @@ -62897,7 +62914,7 @@ paths: application/json: schema: type: array - items: &437 + items: &438 title: Projects v2 Project description: A projects v2 project type: object @@ -62967,7 +62984,7 @@ paths: title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: &995 + properties: &996 id: type: number description: The unique identifier of the status update. @@ -63015,7 +63032,7 @@ paths: example: The project is off to a great start! type: string nullable: true - required: &996 + required: &997 - id - node_id - created_at @@ -63040,7 +63057,7 @@ paths: - deleted_at - deleted_by examples: - default: &438 + default: &439 value: id: 2 node_id: MDc6UHJvamVjdDEwMDI2MDM= @@ -63143,7 +63160,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-organization parameters: - - &439 + - &440 name: project_number description: The project's number. in: path @@ -63156,9 +63173,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *438 examples: - default: *438 + default: *439 headers: Link: *48 '304': *38 @@ -63181,7 +63198,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-organization-owned-project parameters: - *90 - - *439 + - *440 requestBody: required: true description: Details of the draft item to create in the project. @@ -63215,7 +63232,7 @@ paths: description: Response content: application/json: - schema: &445 + schema: &446 title: Projects v2 Item description: An item belonging to a project type: object @@ -63229,7 +63246,7 @@ paths: content: oneOf: - *235 - - &593 + - &594 title: Pull Request Simple description: Pull Request Simple type: object @@ -63335,8 +63352,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *440 - required: *441 + properties: *441 + required: *442 nullable: true active_lock_reason: type: string @@ -63429,7 +63446,7 @@ paths: _links: type: object properties: - comments: &442 + comments: &443 title: Link description: Hypermedia Link type: object @@ -63438,13 +63455,13 @@ paths: type: string required: - href - commits: *442 - statuses: *442 - html: *442 - issue: *442 - review_comments: *442 - review_comment: *442 - self: *442 + commits: *443 + statuses: *443 + html: *443 + issue: *443 + review_comments: *443 + review_comment: *443 + self: *443 required: - comments - commits @@ -63455,7 +63472,7 @@ paths: - review_comment - self author_association: *232 - auto_merge: &775 + auto_merge: &776 title: Auto merge description: The status of auto merging a pull request. type: object @@ -63480,7 +63497,7 @@ paths: - commit_title - commit_message nullable: true - stack: &776 + stack: &777 title: Pull Request Stack description: The stack information associated with a pull request. @@ -63668,7 +63685,7 @@ paths: - created_at - updated_at description: The content represented by the item. - content_type: &444 + content_type: &445 title: Projects v2 Item Content Type description: The type of content tracked in a project item type: string @@ -63708,7 +63725,7 @@ paths: - updated_at - archived_at examples: - draft_issue: &446 + draft_issue: &447 value: id: 17 node_id: PVTI_lADOANN5s84ACbL0zgBueEI @@ -63782,7 +63799,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-organization parameters: - - *439 + - *440 - *90 - *17 - *111 @@ -63794,7 +63811,7 @@ paths: application/json: schema: type: array - items: &443 + items: &444 title: Projects v2 Field description: A field inside a projects v2 project type: object @@ -63944,7 +63961,7 @@ paths: - updated_at - project_url examples: - default: &922 + default: &923 value: - id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -64074,7 +64091,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-a-field-to-an-organization-owned-project parameters: - - *439 + - *440 - *90 requestBody: required: true @@ -64121,7 +64138,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: &923 + items: &924 type: object properties: name: @@ -64158,7 +64175,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: &924 + iteration_configuration: &925 type: object description: The configuration for iteration fields. properties: @@ -64208,7 +64225,7 @@ paths: value: name: Due date data_type: date - single_select_field: &925 + single_select_field: &926 summary: Create a single select field value: name: Priority @@ -64235,7 +64252,7 @@ paths: description: raw: High priority items html: High priority items - iteration_field: &926 + iteration_field: &927 summary: Create an iteration field value: name: Sprint @@ -64259,9 +64276,9 @@ paths: description: Response for adding a field to an organization-owned project. content: application/json: - schema: *443 + schema: *444 examples: - text_field: &927 + text_field: &928 value: id: 24680 node_id: PVTF_lADOABCD2468024680 @@ -64270,7 +64287,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: &928 + number_field: &929 value: id: 13579 node_id: PVTF_lADOABCD1357913579 @@ -64279,7 +64296,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: &929 + date_field: &930 value: id: 98765 node_id: PVTF_lADOABCD9876598765 @@ -64288,7 +64305,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: &930 + single_select_field: &931 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -64322,7 +64339,7 @@ paths: raw: High priority items created_at: '2022-04-28T12:00:00Z' updated_at: '2022-04-28T12:00:00Z' - iteration_field: &931 + iteration_field: &932 value: id: 11223 node_id: PVTF_lADOABCD1122311223 @@ -64367,8 +64384,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-organization parameters: - - *439 - - &932 + - *440 + - &933 name: field_id description: The unique identifier of the field. in: path @@ -64381,9 +64398,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *444 examples: - default: &933 + default: &934 value: id: 12345 node_id: PVTF_lADOABCD1234567890 @@ -64439,7 +64456,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-owned-project parameters: - - *439 + - *440 - *90 - name: q description: Search query to filter items, see [Filtering projects](https://docs.github.com/enterprise-cloud@latest/issues/planning-and-tracking-with-projects/customizing-views-in-your-project/filtering-projects) @@ -64472,7 +64489,7 @@ paths: application/json: schema: type: array - items: &447 + items: &448 title: Projects v2 Item description: An item belonging to a project type: object @@ -64488,7 +64505,7 @@ paths: format: uri example: https://api.github.com/users/monalisa/2/projectsV2/3 description: The API URL of the project that contains this item. - content_type: *444 + content_type: *445 content: type: object additionalProperties: true @@ -64531,7 +64548,7 @@ paths: - updated_at - archived_at examples: - default: &448 + default: &449 value: id: 13 node_id: PVTI_lAAFAQ0 @@ -65229,7 +65246,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-organization-owned-project parameters: - *90 - - *439 + - *440 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -65299,22 +65316,22 @@ paths: description: Response content: application/json: - schema: *445 + schema: *446 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *446 + value: *447 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *446 + value: *447 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *446 + value: *447 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *446 + value: *447 '304': *38 '403': *29 '401': *25 @@ -65334,9 +65351,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-an-organization-owned-project parameters: - - *439 + - *440 - *90 - - &449 + - &450 name: item_id description: The unique identifier of the project item. in: path @@ -65362,9 +65379,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *448 examples: - default: *448 + default: *449 headers: Link: *48 '304': *38 @@ -65385,9 +65402,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-organization parameters: - - *439 + - *440 - *90 - - *449 + - *450 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -65457,13 +65474,13 @@ paths: description: Response content: application/json: - schema: *447 + schema: *448 examples: - text_field: *448 - number_field: *448 - date_field: *448 - single_select_field: *448 - iteration_field: *448 + text_field: *449 + number_field: *449 + date_field: *449 + single_select_field: *449 + iteration_field: *449 '401': *25 '403': *29 '404': *6 @@ -65483,9 +65500,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-organization parameters: - - *439 + - *440 - *90 - - *449 + - *450 responses: '204': description: Response @@ -65509,7 +65526,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-an-organization-owned-project parameters: - *90 - - *439 + - *440 requestBody: required: true content: @@ -65545,6 +65562,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -65580,7 +65638,7 @@ paths: description: Response for creating a view in an organization-owned project. content: application/json: - schema: &913 + schema: &914 title: Projects v2 View description: A view inside a projects v2 project type: object @@ -65678,7 +65736,7 @@ paths: examples: table_view: summary: Response for creating a table view - value: &450 + value: &451 value: id: 1 number: 1 @@ -65724,10 +65782,10 @@ paths: - 456 board_view: summary: Response for creating a board view with filter - value: *450 + value: *451 roadmap_view: summary: Response for creating a roadmap view - value: *450 + value: *451 '304': *38 '403': *29 '401': *25 @@ -65755,9 +65813,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-an-organization-project-view parameters: - - *439 + - *440 - *90 - - &934 + - &935 name: view_number description: The number that identifies the project view. in: path @@ -65789,9 +65847,9 @@ paths: application/json: schema: type: array - items: *447 + items: *448 examples: - default: *448 + default: *449 headers: Link: *48 '304': *38 @@ -65955,7 +66013,7 @@ paths: required: true content: application/json: - schema: *451 + schema: *452 examples: default: value: @@ -66320,7 +66378,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 x-github: @@ -66523,7 +66581,7 @@ paths: description: Response content: application/json: - schema: &517 + schema: &518 title: Full Repository description: Full Repository type: object @@ -66811,9 +66869,9 @@ paths: title: Repository description: A repository on GitHub. type: object - properties: *452 - required: *453 - x-github-breaking-changes: *454 + properties: *453 + required: *454 + x-github-breaking-changes: *455 nullable: true temp_clone_token: type: string @@ -66928,7 +66986,7 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: &639 + properties: &640 url: type: string format: uri @@ -66944,12 +67002,12 @@ paths: nullable: true format: uri example: https://github.com/github/docs/blob/main/CODE_OF_CONDUCT.md - required: &640 + required: &641 - url - key - name - html_url - security_and_analysis: *455 + security_and_analysis: *456 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -67044,7 +67102,7 @@ paths: has_downloads: version: '2026-03-10' examples: - default: &519 + default: &520 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -67582,9 +67640,9 @@ paths: application/json: schema: type: array - items: *456 + items: *457 examples: - default: *457 + default: *458 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -67609,7 +67667,7 @@ paths: - *90 - *17 - *19 - - &800 + - &801 name: targets description: | A comma-separated list of rule targets to filter by. @@ -67700,11 +67758,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *177 - conditions: *458 + conditions: *459 rules: type: array description: An array of rules within the ruleset. - items: &460 + items: &461 title: Repository Rule type: object description: A repository rule. @@ -67769,7 +67827,7 @@ paths: application/json: schema: *199 examples: - default: &459 + default: &460 value: id: 21 name: super cool ruleset @@ -67825,7 +67883,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &802 + - &803 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 @@ -67837,14 +67895,14 @@ paths: x-multi-segment: true - *326 - *108 - - &803 + - &804 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 - - &804 + - &805 name: rule_suite_result description: The rule suite results to filter on. When specified, only suites with this result will be returned. @@ -67857,7 +67915,7 @@ paths: - bypass - all default: all - - &805 + - &806 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. @@ -67880,7 +67938,7 @@ paths: description: Response content: application/json: - schema: &806 + schema: &807 title: Rule Suites description: Response type: array @@ -67935,7 +67993,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &807 + default: &808 value: - id: 21 actor_id: 12 @@ -67979,7 +68037,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &808 + - &809 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -67995,7 +68053,7 @@ paths: description: Response content: application/json: - schema: &809 + schema: &810 title: Rule Suite description: Response type: object @@ -68094,7 +68152,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &810 + default: &811 value: id: 21 actor_id: 12 @@ -68169,7 +68227,7 @@ paths: application/json: schema: *199 examples: - default: *459 + default: *460 '404': *6 '500': *41 put: @@ -68218,11 +68276,11 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *177 - conditions: *458 + conditions: *459 rules: description: An array of rules within the ruleset. type: array - items: *460 + items: *461 examples: default: value: @@ -68259,7 +68317,7 @@ paths: application/json: schema: *199 examples: - default: *459 + default: *460 '404': *6 '422': *15 '500': *41 @@ -68319,7 +68377,7 @@ paths: type: array items: *203 examples: - default: *461 + default: *462 '404': *6 '500': *41 x-github: @@ -68356,7 +68414,7 @@ paths: description: Response content: application/json: - schema: *462 + schema: *463 examples: default: value: @@ -68419,7 +68477,6 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *463 - *464 - *465 - *466 @@ -68427,10 +68484,11 @@ paths: - *468 - *469 - *470 + - *471 - *113 - *19 - *17 - - &812 + - &813 name: before description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events before this cursor. To @@ -68440,7 +68498,7 @@ paths: required: false schema: type: string - - &813 + - &814 name: after description: A cursor, as given in the [Link header](https://docs.github.com/enterprise-cloud@latest/rest/guides/using-pagination-in-the-rest-api#using-link-headers). If specified, the query only searches for events after this cursor. To @@ -68450,13 +68508,13 @@ paths: required: false schema: type: string - - *471 - *472 - *473 - *474 - *475 - *476 - *477 + - *478 responses: '200': description: Response @@ -68464,9 +68522,9 @@ paths: application/json: schema: type: array - items: *478 + items: *479 examples: - default: *479 + default: *480 headers: Link: *48 '404': *6 @@ -68496,9 +68554,9 @@ paths: subcategory: custom-patterns parameters: - *90 - - *480 - *481 - *482 + - *483 - *113 - *19 - *17 @@ -68511,7 +68569,7 @@ paths: type: array items: *205 examples: - default: *483 + default: *484 headers: Link: *48 '403': *29 @@ -68547,9 +68605,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *484 + items: *485 examples: - default: *485 + default: *486 responses: '201': description: All patterns created successfully. @@ -68563,7 +68621,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: *486 + default: *487 '400': *14 '403': *29 '404': *6 @@ -68587,7 +68645,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *487 + items: *488 delete: summary: Bulk delete organization custom patterns description: |- @@ -68620,7 +68678,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *488 + items: *489 post_delete_action: type: string description: |- @@ -68633,7 +68691,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *489 + default: *490 responses: '204': description: All patterns deleted successfully. @@ -68671,9 +68729,9 @@ paths: required: true content: application/json: - schema: *490 + schema: *491 examples: - default: *491 + default: *492 responses: '200': description: Pattern updated successfully. @@ -68681,7 +68739,7 @@ paths: application/json: schema: *205 examples: - default: *492 + default: *493 '400': *14 '403': *29 '404': *6 @@ -68712,9 +68770,9 @@ paths: description: Response content: application/json: - schema: *493 + schema: *494 examples: - default: *494 + default: *495 '403': *29 '404': *6 patch: @@ -68867,7 +68925,7 @@ paths: application/json: schema: type: array - items: &834 + items: &835 description: A repository security advisory. type: object properties: @@ -69087,7 +69145,7 @@ paths: login: type: string description: The username of the user credited. - type: *495 + type: *496 credits_detailed: type: array nullable: true @@ -69097,7 +69155,7 @@ paths: type: object properties: user: *4 - type: *495 + type: *496 state: type: string description: The state of the user's acceptance of the @@ -69190,7 +69248,7 @@ paths: - private_fork version: '2026-03-10' examples: - default: &835 + default: &836 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -69577,7 +69635,7 @@ paths: application/json: schema: type: array - items: *496 + items: *497 examples: default: value: @@ -69676,7 +69734,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/billing/billing#get-github-advanced-security-active-committers-for-an-organization parameters: - *90 - - *497 + - *498 - *17 - *19 responses: @@ -69684,9 +69742,9 @@ paths: description: Success content: application/json: - schema: *498 + schema: *499 examples: - default: *499 + default: *500 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -69967,7 +70025,7 @@ paths: type: array items: *157 examples: - default: *500 + default: *501 headers: Link: *48 x-github: @@ -70196,15 +70254,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/orgs/network-configurations#get-a-hosted-compute-network-settings-resource-for-an-organization parameters: - *90 - - *501 + - *502 responses: '200': description: Response content: application/json: - schema: *502 + schema: *503 examples: - default: *503 + default: *504 headers: Link: *48 x-github: @@ -70242,7 +70300,7 @@ paths: description: Response content: application/json: - schema: &514 + schema: &515 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -70288,7 +70346,7 @@ paths: type: string nullable: true examples: - default: &515 + default: &516 value: groups: - group_id: '123' @@ -70345,7 +70403,7 @@ paths: type: array items: *329 examples: - default: *420 + default: *421 headers: Link: *48 '403': *29 @@ -70443,7 +70501,7 @@ paths: description: Response content: application/json: - schema: &504 + schema: &505 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -70506,8 +70564,8 @@ paths: description: Groups of organization members that gives permissions on specified repositories. type: object - properties: *418 - required: *419 + properties: *419 + required: *420 nullable: true members_count: type: integer @@ -70770,7 +70828,7 @@ paths: - repos_count - organization examples: - default: &505 + default: &506 value: id: 1 node_id: MDQ6VGVhbTE= @@ -70858,9 +70916,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '404': *6 x-github: githubCloudOnly: false @@ -70949,16 +71007,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '201': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '404': *6 '422': *15 '403': *29 @@ -70988,7 +71046,7 @@ paths: responses: '204': description: Response - '422': &508 + '422': &509 description: Unprocessable entity if you attempt to modify an enterprise team at the organization level. x-github: @@ -71017,10 +71075,10 @@ paths: description: Response content: application/json: - schema: *506 + schema: *507 examples: - default: *507 - '422': *508 + default: *508 + '422': *509 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -71063,10 +71121,10 @@ paths: description: Response content: application/json: - schema: *509 + schema: *510 examples: - default: *510 - '422': *508 + default: *511 + '422': *509 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71090,7 +71148,7 @@ paths: responses: '204': description: Response - '422': *508 + '422': *509 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -71122,12 +71180,12 @@ paths: application/json: schema: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *48 - '422': *508 + '422': *509 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -71171,7 +71229,7 @@ paths: application/json: schema: type: array - items: &877 + items: &878 title: Team Member description: A user that is a member of a team, including their role on the team and whether the membership is inherited from @@ -71290,7 +71348,7 @@ paths: - type - url examples: - default: &878 + default: &879 value: - login: octocat id: 1 @@ -71349,7 +71407,7 @@ paths: description: Response content: application/json: - schema: &511 + schema: &512 title: Team Membership description: Team Membership type: object @@ -71376,7 +71434,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &879 + response-if-user-is-a-team-maintainer: &880 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -71439,9 +71497,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - response-if-users-membership-with-team-is-now-pending: &880 + response-if-users-membership-with-team-is-now-pending: &881 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -71519,7 +71577,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 x-github: @@ -71550,14 +71608,14 @@ paths: parameters: - *90 - *227 - - *512 - *513 + - *514 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &881 + schema: &882 title: Team Repository description: A team's access to a repository. type: object @@ -72213,8 +72271,8 @@ paths: parameters: - *90 - *227 - - *512 - *513 + - *514 requestBody: required: false content: @@ -72261,8 +72319,8 @@ paths: parameters: - *90 - *227 - - *512 - *513 + - *514 responses: '204': description: Response @@ -72295,10 +72353,10 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *515 - '422': *508 + default: *516 + '422': *509 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -72364,7 +72422,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: default: value: @@ -72376,7 +72434,7 @@ paths: group_name: Octocat docs members group_description: The people who make your octoworld come to life. - '422': *508 + '422': *509 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -72410,7 +72468,7 @@ paths: type: array items: *329 examples: - response-if-child-teams-exist: &882 + response-if-child-teams-exist: &883 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -72563,7 +72621,7 @@ paths: resources: type: object properties: - core: &516 + core: &517 title: Rate Limit type: object properties: @@ -72580,21 +72638,21 @@ paths: - remaining - reset - used - graphql: *516 - search: *516 - code_search: *516 - source_import: *516 - integration_manifest: *516 - actions_runner_registration: *516 - scim: *516 - dependency_snapshots: *516 - dependency_sbom: *516 - code_scanning_autofix: *516 - copilot_usage_records: *516 + graphql: *517 + search: *517 + code_search: *517 + source_import: *517 + integration_manifest: *517 + actions_runner_registration: *517 + scim: *517 + dependency_snapshots: *517 + dependency_sbom: *517 + code_scanning_autofix: *517 + copilot_usage_records: *517 required: - core - search - rate: *516 + rate: *517 required: - rate - resources @@ -72708,14 +72766,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: *517 + schema: *518 examples: default-response: summary: Default response @@ -73230,7 +73288,7 @@ paths: version: '2026-03-10' '403': *29 '404': *6 - '301': *518 + '301': *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73248,8 +73306,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#update-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: false content: @@ -73569,10 +73627,10 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *519 - '307': &520 + default: *520 + '307': &521 description: Temporary Redirect content: application/json: @@ -73601,8 +73659,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -73624,7 +73682,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#delete-a-repository - '307': *520 + '307': *521 '404': *6 '409': *122 x-github: @@ -73648,11 +73706,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *512 - *513 + - *514 - *17 - *19 - - &536 + - &537 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -73675,7 +73733,7 @@ paths: type: integer artifacts: type: array - items: &521 + items: &522 title: Artifact description: An artifact type: object @@ -73753,7 +73811,7 @@ paths: - expires_at - updated_at examples: - default: &537 + default: &538 value: total_count: 2 artifacts: @@ -73814,9 +73872,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#get-an-artifact parameters: - - *512 - *513 - - &522 + - *514 + - &523 name: artifact_id description: The unique identifier of the artifact. in: path @@ -73828,7 +73886,7 @@ paths: description: Response content: application/json: - schema: *521 + schema: *522 examples: default: value: @@ -73866,9 +73924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#delete-an-artifact parameters: - - *512 - *513 - - *522 + - *514 + - *523 responses: '204': description: Response @@ -73892,9 +73950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#download-an-artifact parameters: - - *512 - *513 - - *522 + - *514 + - *523 - name: archive_format in: path required: true @@ -73904,7 +73962,7 @@ paths: '302': description: Response headers: - Location: &658 + Location: &659 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 @@ -73929,14 +73987,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-retention-limit-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: &523 + schema: &524 title: Actions cache retention limit for a repository description: GitHub Actions cache retention policy for a repository. type: object @@ -73969,13 +74027,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-retention-limit-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: application/json: - schema: *523 + schema: *524 examples: selected_actions: *45 responses: @@ -74004,14 +74062,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-storage-limit-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: &524 + schema: &525 title: Actions cache storage limit for a repository description: GitHub Actions cache storage policy for a repository. type: object @@ -74044,13 +74102,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#set-github-actions-cache-storage-limit-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: application/json: - schema: *524 + schema: *525 examples: selected_actions: *47 responses: @@ -74081,14 +74139,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: *525 + schema: *526 examples: default: value: @@ -74114,11 +74172,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *512 - *513 + - *514 - *17 - *19 - - &526 + - &527 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 @@ -74152,7 +74210,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &528 title: Repository actions caches description: Repository actions caches type: object @@ -74194,7 +74252,7 @@ paths: - total_count - actions_caches examples: - default: &528 + default: &529 value: total_count: 1 actions_caches: @@ -74226,23 +74284,23 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#delete-github-actions-caches-for-a-repository-using-a-cache-key parameters: - - *512 - *513 + - *514 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *526 + - *527 responses: '200': description: Response content: application/json: - schema: *527 + schema: *528 examples: - default: *528 + default: *529 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74262,8 +74320,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/cache#delete-a-github-actions-cache-for-a-repository-using-a-cache-id parameters: - - *512 - *513 + - *514 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -74292,8 +74350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-repository parameters: - - *512 - *513 + - *514 - *17 - *112 responses: @@ -74375,8 +74433,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#get-a-concurrency-group-for-a-repository parameters: - - *512 - *513 + - *514 - name: concurrency_group_name description: The name of the concurrency group. in: path @@ -74528,9 +74586,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *512 - *513 - - &529 + - *514 + - &530 name: job_id description: The unique identifier of the job. in: path @@ -74542,7 +74600,7 @@ paths: description: Response content: application/json: - schema: &540 + schema: &541 title: Job description: Information of a job execution in a workflow run type: object @@ -74849,9 +74907,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *512 - *513 - - *529 + - *514 + - *530 responses: '302': description: Response @@ -74879,9 +74937,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *512 - *513 - - *529 + - *514 + - *530 requestBody: required: false content: @@ -74931,8 +74989,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/oidc#get-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Status response @@ -74991,8 +75049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/oidc#set-the-customization-template-for-an-oidc-subject-claim-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -75060,8 +75118,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-organization-secrets parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -75079,7 +75137,7 @@ paths: type: integer secrets: type: array - items: &542 + items: &543 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -75099,7 +75157,7 @@ paths: - created_at - updated_at examples: - default: &543 + default: &544 value: total_count: 2 secrets: @@ -75132,8 +75190,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-organization-variables parameters: - - *512 - *513 + - *514 - *315 - *19 responses: @@ -75151,7 +75209,7 @@ paths: type: integer variables: type: array - items: &544 + items: &545 title: Actions Variable type: object properties: @@ -75181,7 +75239,7 @@ paths: - created_at - updated_at examples: - default: &545 + default: &546 value: total_count: 2 variables: @@ -75214,8 +75272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -75224,7 +75282,7 @@ paths: schema: type: object properties: - enabled: &530 + enabled: &531 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *63 @@ -75259,8 +75317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -75271,7 +75329,7 @@ paths: schema: type: object properties: - enabled: *530 + enabled: *531 allowed_actions: *63 sha_pinning_required: *64 required: @@ -75304,14 +75362,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: &531 + schema: &532 type: object properties: access_level: @@ -75329,7 +75387,7 @@ paths: required: - access_level examples: - default: &532 + default: &533 value: access_level: organization x-github: @@ -75354,15 +75412,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-the-level-of-access-for-workflows-outside-of-the-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: application/json: - schema: *531 + schema: *532 examples: - default: *532 + default: *533 responses: '204': description: Response @@ -75386,8 +75444,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-artifact-and-log-retention-settings-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -75417,8 +75475,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-artifact-and-log-retention-settings-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Empty response for successful settings update @@ -75452,8 +75510,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -75480,8 +75538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-fork-pr-contributor-approval-permissions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -75515,8 +75573,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -75544,8 +75602,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-private-repo-fork-pr-workflow-settings-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -75576,8 +75634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -75608,8 +75666,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -75641,8 +75699,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -75671,8 +75729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Success response @@ -75712,8 +75770,8 @@ paths: in: query schema: type: string - - *512 - *513 + - *514 - *17 - *19 responses: @@ -75758,8 +75816,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#get-runner-version-end-of-life-schedule-for-a-repository parameters: - - *512 - *513 + - *514 - name: version description: The runner version to look up. in: path @@ -75821,8 +75879,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -75854,8 +75912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-configuration-for-a-just-in-time-runner-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -75929,8 +75987,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *512 - *513 + - *514 responses: '201': description: Response @@ -75966,8 +76024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *512 - *513 + - *514 responses: '201': description: Response @@ -75997,8 +76055,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#get-a-self-hosted-runner-for-a-repository parameters: - - *512 - *513 + - *514 - *78 responses: '200': @@ -76028,8 +76086,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#delete-a-self-hosted-runner-from-a-repository parameters: - - *512 - *513 + - *514 - *78 responses: '204': @@ -76056,8 +76114,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#list-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *512 - *513 + - *514 - *78 responses: '200': *84 @@ -76082,8 +76140,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#add-custom-labels-to-a-self-hosted-runner-for-a-repository parameters: - - *512 - *513 + - *514 - *78 requestBody: required: true @@ -76132,8 +76190,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#set-custom-labels-for-a-self-hosted-runner-for-a-repository parameters: - - *512 - *513 + - *514 - *78 requestBody: required: true @@ -76183,8 +76241,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#remove-all-custom-labels-from-a-self-hosted-runner-for-a-repository parameters: - - *512 - *513 + - *514 - *78 responses: '200': *303 @@ -76214,8 +76272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/self-hosted-runners#remove-a-custom-label-from-a-self-hosted-runner-for-a-repository parameters: - - *512 - *513 + - *514 - *78 - *304 responses: @@ -76245,9 +76303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *512 - *513 - - &548 + - *514 + - &549 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. @@ -76255,7 +76313,7 @@ paths: required: false schema: type: string - - &549 + - &550 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -76263,7 +76321,7 @@ paths: required: false schema: type: string - - &550 + - &551 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -76272,7 +76330,7 @@ paths: required: false schema: type: string - - &551 + - &552 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 @@ -76299,7 +76357,7 @@ paths: - pending - *17 - *19 - - &552 + - &553 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest/search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -76308,7 +76366,7 @@ paths: schema: type: string format: date-time - - &533 + - &534 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -76317,13 +76375,13 @@ paths: schema: type: boolean default: false - - &553 + - &554 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &554 + - &555 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -76346,7 +76404,7 @@ paths: type: integer workflow_runs: type: array - items: &534 + items: &535 title: Workflow Run description: An invocation of a workflow type: object @@ -76494,7 +76552,7 @@ paths: title: Simple Commit description: A commit. type: object - properties: &578 + properties: &579 id: type: string description: SHA for the commit @@ -76545,7 +76603,7 @@ paths: - name - email nullable: true - required: &579 + required: &580 - id - tree_id - message @@ -76592,7 +76650,7 @@ paths: - workflow_url - pull_requests examples: - default: &555 + default: &556 value: total_count: 1 workflow_runs: @@ -76828,24 +76886,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *512 - *513 - - &535 + - *514 + - &536 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *533 + - *534 responses: '200': description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: &538 + default: &539 value: id: 30433642 name: Build @@ -77086,9 +77144,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '204': description: Response @@ -77111,9 +77169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '200': description: Response @@ -77232,9 +77290,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#approve-a-workflow-run-for-a-fork-pull-request parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '201': description: Response @@ -77267,12 +77325,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *512 - *513 - - *535 + - *514 + - *536 - *17 - *19 - - *536 + - *537 - *113 responses: '200': @@ -77289,9 +77347,9 @@ paths: type: integer artifacts: type: array - items: *521 + items: *522 examples: - default: *537 + default: *538 headers: Link: *48 x-github: @@ -77315,25 +77373,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *512 - *513 - - *535 - - &539 + - *514 + - *536 + - &540 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *533 + - *534 responses: '200': description: Response content: application/json: - schema: *534 + schema: *535 examples: - default: *538 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77356,10 +77414,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *512 - *513 - - *535 - - *539 + - *514 + - *536 + - *540 - *17 - *19 responses: @@ -77377,9 +77435,9 @@ paths: type: integer jobs: type: array - items: *540 + items: *541 examples: - default: &541 + default: &542 value: total_count: 1 jobs: @@ -77492,10 +77550,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *512 - *513 - - *535 - - *539 + - *514 + - *536 + - *540 responses: '302': description: Response @@ -77523,9 +77581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '202': description: Response @@ -77571,9 +77629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/concurrency-groups#list-concurrency-groups-for-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 - *17 - *111 - *112 @@ -77744,9 +77802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#review-custom-deployment-protection-rules-for-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 requestBody: required: true content: @@ -77813,9 +77871,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '202': description: Response @@ -77848,9 +77906,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 - 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 @@ -77880,9 +77938,9 @@ paths: type: integer jobs: type: array - items: *540 + items: *541 examples: - default: *541 + default: *542 headers: Link: *48 x-github: @@ -77907,9 +77965,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '302': description: Response @@ -77936,9 +77994,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '204': description: Response @@ -77965,9 +78023,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '200': description: Response @@ -78027,7 +78085,7 @@ paths: items: type: object properties: - type: &673 + type: &674 type: string description: The type of reviewer. enum: @@ -78112,9 +78170,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 requestBody: required: true content: @@ -78161,12 +78219,12 @@ paths: application/json: schema: type: array - items: &660 + items: &661 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: &952 + properties: &953 url: type: string format: uri @@ -78251,7 +78309,7 @@ paths: nullable: true properties: *230 required: *231 - required: &953 + required: &954 - id - node_id - sha @@ -78267,7 +78325,7 @@ paths: - created_at - updated_at examples: - default: &661 + default: &662 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -78323,9 +78381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *512 - *513 - - *535 + - *514 + - *536 requestBody: required: false content: @@ -78369,9 +78427,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *512 - *513 - - *535 + - *514 + - *536 requestBody: required: false content: @@ -78425,9 +78483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *512 - *513 - - *535 + - *514 + - *536 responses: '200': description: Response @@ -78564,8 +78622,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-repository-secrets parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -78583,9 +78641,9 @@ paths: type: integer secrets: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -78610,8 +78668,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-public-key parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -78641,17 +78699,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: &556 + default: &557 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -78677,8 +78735,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 requestBody: required: true @@ -78736,8 +78794,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '204': @@ -78763,8 +78821,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-repository-variables parameters: - - *512 - *513 + - *514 - *315 - *19 responses: @@ -78782,9 +78840,9 @@ paths: type: integer variables: type: array - items: *544 + items: *545 examples: - default: *545 + default: *546 headers: Link: *48 x-github: @@ -78807,8 +78865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-a-repository-variable parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -78860,17 +78918,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-a-repository-variable parameters: - - *512 - *513 + - *514 - *309 responses: '200': description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: &557 + default: &558 value: name: USERNAME value: octocat @@ -78896,8 +78954,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-a-repository-variable parameters: - - *512 - *513 + - *514 - *309 requestBody: required: true @@ -78940,8 +78998,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-a-repository-variable parameters: - - *512 - *513 + - *514 - *309 responses: '204': @@ -78967,8 +79025,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#list-repository-workflows parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -78986,7 +79044,7 @@ paths: type: integer workflows: type: array - items: &546 + items: &547 title: Workflow description: A GitHub Actions workflow type: object @@ -79093,9 +79151,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-a-workflow parameters: - - *512 - *513 - - &547 + - *514 + - &548 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -79110,7 +79168,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *547 examples: default: value: @@ -79143,9 +79201,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#disable-a-workflow parameters: - - *512 - *513 - - *547 + - *514 + - *548 responses: '204': description: Response @@ -79170,9 +79228,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *512 - *513 - - *547 + - *514 + - *548 responses: '204': description: Empty response when `return_run_details` parameter is `false`. @@ -79270,9 +79328,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#enable-a-workflow parameters: - - *512 - *513 - - *547 + - *514 + - *548 responses: '204': description: Response @@ -79299,19 +79357,19 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *512 - *513 - - *547 + - *514 - *548 - *549 - *550 - *551 + - *552 - *17 - *19 - - *552 - - *533 - *553 + - *534 - *554 + - *555 responses: '200': description: Response @@ -79327,9 +79385,9 @@ paths: type: integer workflow_runs: type: array - items: *534 + items: *535 examples: - default: *555 + default: *556 headers: Link: *48 x-github: @@ -79362,9 +79420,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/workflows#get-workflow-usage parameters: - - *512 - *513 - - *547 + - *514 + - *548 responses: '200': description: Response @@ -79425,8 +79483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-activities parameters: - - *512 - *513 + - *514 - *113 - *17 - *111 @@ -79595,8 +79653,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-organization-secrets parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -79614,9 +79672,9 @@ paths: type: integer secrets: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -79640,8 +79698,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-organization-variables parameters: - - *512 - *513 + - *514 - *315 - *19 responses: @@ -79659,9 +79717,9 @@ paths: type: integer variables: type: array - items: *544 + items: *545 examples: - default: *545 + default: *546 headers: Link: *48 x-github: @@ -79686,8 +79744,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#list-repository-secrets parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -79705,9 +79763,9 @@ paths: type: integer secrets: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -79732,8 +79790,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-public-key parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -79763,17 +79821,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#get-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *556 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79795,8 +79853,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#create-or-update-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 requestBody: required: true @@ -79854,8 +79912,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/secrets#delete-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '204': @@ -79881,8 +79939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#list-repository-variables parameters: - - *512 - *513 + - *514 - *315 - *19 responses: @@ -79900,9 +79958,9 @@ paths: type: integer variables: type: array - items: *544 + items: *545 examples: - default: *545 + default: *546 headers: Link: *48 x-github: @@ -79925,8 +79983,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#create-a-repository-variable parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -79978,17 +80036,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#get-a-repository-variable parameters: - - *512 - *513 + - *514 - *309 responses: '200': description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *557 + default: *558 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80009,8 +80067,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#update-a-repository-variable parameters: - - *512 - *513 + - *514 - *309 requestBody: required: true @@ -80053,8 +80111,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/agents/variables#delete-a-repository-variable parameters: - - *512 - *513 + - *514 - *309 responses: '204': @@ -80076,8 +80134,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#list-assignees parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -80114,8 +80172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *512 - *513 + - *514 - name: assignee in: path required: true @@ -80151,8 +80209,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#create-an-attestation parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -80262,8 +80320,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/attestations#list-attestations parameters: - - *512 - *513 + - *514 - *17 - *111 - *112 @@ -80320,7 +80378,7 @@ paths: initiator: type: string examples: - default: *558 + default: *559 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -80354,8 +80412,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -80363,7 +80421,7 @@ paths: application/json: schema: type: array - items: &559 + items: &560 title: Autolink reference description: An autolink reference. type: object @@ -80417,8 +80475,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -80457,9 +80515,9 @@ paths: description: response content: application/json: - schema: *559 + schema: *560 examples: - default: &560 + default: &561 value: id: 1 key_prefix: TICKET- @@ -80490,9 +80548,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *512 - *513 - - &561 + - *514 + - &562 name: autolink_id description: The unique identifier of the autolink. in: path @@ -80504,9 +80562,9 @@ paths: description: Response content: application/json: - schema: *559 + schema: *560 examples: - default: *560 + default: *561 '404': *6 x-github: githubCloudOnly: false @@ -80526,9 +80584,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *512 - *513 - - *561 + - *514 + - *562 responses: '204': description: Response @@ -80552,8 +80610,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-dependabot-security-updates-are-enabled-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response if Dependabot is enabled @@ -80601,8 +80659,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-dependabot-security-updates parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -80623,8 +80681,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-dependabot-security-updates parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -80644,8 +80702,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#list-branches parameters: - - *512 - *513 + - *514 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -80683,7 +80741,7 @@ paths: - url protected: type: boolean - protection: &563 + protection: &564 title: Branch Protection description: Branch Protection type: object @@ -80725,7 +80783,7 @@ paths: required: - contexts - checks - enforce_admins: &566 + enforce_admins: &567 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -80740,7 +80798,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &568 + required_pull_request_reviews: &569 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -80816,7 +80874,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &565 + restrictions: &566 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -81093,9 +81151,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#get-a-branch parameters: - - *512 - *513 - - &564 + - *514 + - &565 name: branch description: The name of the branch. Cannot contain wildcard characters. To use wildcard characters in branch names, use [the GraphQL API](https://docs.github.com/enterprise-cloud@latest/graphql). @@ -81109,14 +81167,14 @@ paths: description: Response content: application/json: - schema: &574 + schema: &575 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &631 + commit: &632 title: Commit description: Commit type: object @@ -81150,7 +81208,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: &562 + properties: &563 name: type: string example: '"Chris Wanstrath"' @@ -81166,7 +81224,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *562 + properties: *563 nullable: true message: type: string @@ -81187,7 +81245,7 @@ paths: required: - sha - url - verification: &691 + verification: &692 title: Verification type: object properties: @@ -81257,7 +81315,7 @@ paths: type: integer files: type: array - items: &643 + items: &644 title: Diff Entry description: Diff Entry type: object @@ -81341,7 +81399,7 @@ paths: - self protected: type: boolean - protection: *563 + protection: *564 protection_url: type: string format: uri @@ -81448,7 +81506,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *518 + '301': *519 '404': *6 x-github: githubCloudOnly: false @@ -81470,15 +81528,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-branch-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *563 + schema: *564 examples: default: value: @@ -81672,9 +81730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-branch-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -81929,7 +81987,7 @@ paths: url: type: string format: uri - required_status_checks: &571 + required_status_checks: &572 title: Status Check Policy description: Status Check Policy type: object @@ -82081,7 +82139,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *565 + restrictions: *566 required_conversation_resolution: type: object properties: @@ -82193,9 +82251,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-branch-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '204': description: Response @@ -82220,17 +82278,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: &567 + default: &568 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -82252,17 +82310,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: *567 + default: *568 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82281,9 +82339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '204': description: Response @@ -82308,17 +82366,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *568 + schema: *569 examples: - default: &569 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -82414,9 +82472,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: false content: @@ -82514,9 +82572,9 @@ paths: description: Response content: application/json: - schema: *568 + schema: *569 examples: - default: *569 + default: *570 '422': *15 x-github: githubCloudOnly: false @@ -82537,9 +82595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '204': description: Response @@ -82566,17 +82624,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: &570 + default: &571 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -82599,17 +82657,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *566 + schema: *567 examples: - default: *570 + default: *571 '404': *6 x-github: githubCloudOnly: false @@ -82629,9 +82687,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '204': description: Response @@ -82656,17 +82714,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-status-checks-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *571 + schema: *572 examples: - default: &572 + default: &573 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -82692,9 +82750,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#update-status-check-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: false content: @@ -82746,9 +82804,9 @@ paths: description: Response content: application/json: - schema: *571 + schema: *572 examples: - default: *572 + default: *573 '404': *6 '422': *15 x-github: @@ -82770,9 +82828,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-protection parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '204': description: Response @@ -82796,9 +82854,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response @@ -82832,9 +82890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-status-check-contexts parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: false content: @@ -82901,9 +82959,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-status-check-contexts parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: false content: @@ -82967,9 +83025,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: content: application/json: @@ -83035,15 +83093,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response content: application/json: - schema: *565 + schema: *566 examples: default: value: @@ -83134,9 +83192,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#delete-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '204': description: Response @@ -83159,9 +83217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response @@ -83171,7 +83229,7 @@ paths: type: array items: *5 examples: - default: &573 + default: &574 value: - id: 1 slug: octoapp @@ -83228,9 +83286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -83264,7 +83322,7 @@ paths: type: array items: *5 examples: - default: *573 + default: *574 '422': *15 x-github: githubCloudOnly: false @@ -83285,9 +83343,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -83321,7 +83379,7 @@ paths: type: array items: *5 examples: - default: *573 + default: *574 '422': *15 x-github: githubCloudOnly: false @@ -83342,9 +83400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -83378,7 +83436,7 @@ paths: type: array items: *5 examples: - default: *573 + default: *574 '422': *15 x-github: githubCloudOnly: false @@ -83400,9 +83458,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response @@ -83412,7 +83470,7 @@ paths: type: array items: *329 examples: - default: *420 + default: *421 '404': *6 x-github: githubCloudOnly: false @@ -83432,9 +83490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: false content: @@ -83472,7 +83530,7 @@ paths: type: array items: *329 examples: - default: *420 + default: *421 '422': *15 x-github: githubCloudOnly: false @@ -83493,9 +83551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: false content: @@ -83533,7 +83591,7 @@ paths: type: array items: *329 examples: - default: *420 + default: *421 '422': *15 x-github: githubCloudOnly: false @@ -83554,9 +83612,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: content: application/json: @@ -83593,7 +83651,7 @@ paths: type: array items: *329 examples: - default: *420 + default: *421 '422': *15 x-github: githubCloudOnly: false @@ -83615,9 +83673,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *512 - *513 - - *564 + - *514 + - *565 responses: '200': description: Response @@ -83651,9 +83709,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -83711,9 +83769,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -83771,9 +83829,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -83833,9 +83891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#rename-a-branch parameters: - - *512 - *513 - - *564 + - *514 + - *565 requestBody: required: true content: @@ -83857,7 +83915,7 @@ paths: description: Response content: application/json: - schema: *574 + schema: *575 examples: default: value: @@ -83971,8 +84029,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *512 - *513 + - *514 - *106 - *107 - *108 @@ -84008,8 +84066,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *512 - *513 + - *514 - name: bypass_request_number in: path required: true @@ -84082,8 +84140,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *512 - *513 + - *514 - *106 - *107 - *108 @@ -84123,8 +84181,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *512 - *513 + - *514 - name: bypass_request_number in: path required: true @@ -84194,8 +84252,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *512 - *513 + - *514 - name: bypass_request_number in: path required: true @@ -84266,8 +84324,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *512 - *513 + - *514 - name: bypass_response_id in: path required: true @@ -84300,8 +84358,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#create-a-check-run parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -84580,7 +84638,7 @@ paths: description: Response content: application/json: - schema: &575 + schema: &576 title: CheckRun description: A check performed on the code of a given code change type: object @@ -84700,7 +84758,7 @@ paths: check. type: array items: *240 - deployment: &945 + deployment: &946 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -84980,9 +85038,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#get-a-check-run parameters: - - *512 - *513 - - &576 + - *514 + - &577 name: check_run_id description: The unique identifier of the check run. in: path @@ -84994,9 +85052,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: &577 + default: &578 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -85096,9 +85154,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#update-a-check-run parameters: - - *512 - *513 - - *576 + - *514 + - *577 requestBody: required: true content: @@ -85338,9 +85396,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *576 examples: - default: *577 + default: *578 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85360,9 +85418,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-run-annotations parameters: - - *512 - *513 - - *576 + - *514 + - *577 - *17 - *19 responses: @@ -85457,9 +85515,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#rerequest-a-check-run parameters: - - *512 - *513 - - *576 + - *514 + - *577 responses: '201': description: Response @@ -85503,8 +85561,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#create-a-check-suite parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -85526,7 +85584,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &580 + schema: &581 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -85612,12 +85670,12 @@ paths: type: string format: date-time nullable: true - head_commit: &978 + head_commit: &979 title: Simple Commit description: A commit. type: object - properties: *578 - required: *579 + properties: *579 + required: *580 latest_check_runs_count: type: integer check_runs_url: @@ -85645,7 +85703,7 @@ paths: - check_runs_url - pull_requests examples: - default: &581 + default: &582 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -85936,9 +85994,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85957,8 +86015,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -86267,9 +86325,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#get-a-check-suite parameters: - - *512 - *513 - - &582 + - *514 + - &583 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -86281,9 +86339,9 @@ paths: description: Response content: application/json: - schema: *580 + schema: *581 examples: - default: *581 + default: *582 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -86306,17 +86364,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *512 - *513 - - *582 - - &636 + - *514 + - *583 + - &637 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &637 + - &638 name: status description: Returns check runs with the specified `status`. in: query @@ -86355,9 +86413,9 @@ paths: type: integer check_runs: type: array - items: *575 + items: *576 examples: - default: &638 + default: &639 value: total_count: 1 check_runs: @@ -86459,9 +86517,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#rerequest-a-check-suite parameters: - - *512 - *513 - - *582 + - *514 + - *583 responses: '201': description: Response @@ -86490,8 +86548,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#list-code-quality-findings-for-a-repository parameters: - - *512 - *513 + - *514 - *17 - *113 - *111 @@ -86513,7 +86571,7 @@ paths: application/json: schema: type: array - items: &583 + items: &584 description: Code quality finding type: object properties: @@ -86643,7 +86701,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': &584 + '403': &585 description: Response if the user is not authorized to access Code quality for this repository. content: @@ -86670,8 +86728,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#get-a-code-quality-finding parameters: - - *512 - *513 + - *514 - name: finding_number in: path description: The number that identifies a finding. @@ -86683,7 +86741,7 @@ paths: description: Response content: application/json: - schema: *583 + schema: *584 examples: default: value: @@ -86712,7 +86770,7 @@ paths: markdown: This check is useless. [o](java/UselessNullCheck.java#L9C4-L9C18) cannot be null at this check, since it is guarded by [...instanceof...](java/UselessNullCheck.java#L7C13-L7C25). created_at: '2026-01-23T12:34:56Z' - '403': *584 + '403': *585 '404': *6 '503': *204 x-github: @@ -86734,8 +86792,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#get-a-code-quality-setup-configuration parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -86807,7 +86865,7 @@ paths: updated_at: '2023-01-01T00:00:00Z' schedule: weekly ai_findings_option: on_push - '403': *584 + '403': *585 '404': *6 '503': *204 x-github: @@ -86828,8 +86886,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-quality/code-quality#update-a-code-quality-setup-configuration parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -86965,21 +87023,21 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *512 - *513 + - *514 - *333 - *334 - *19 - *17 - - &601 + - &602 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: *585 - - &602 + schema: *586 + - &603 name: pr description: The number of the pull request for the results you want to list. in: query @@ -87010,7 +87068,7 @@ paths: be returned. in: query required: false - schema: *586 + schema: *587 - name: assignees description: | Filter alerts by assignees. Provide a comma-separated list of user handles (e.g., `octocat` or `octocat,hubot`). @@ -87034,7 +87092,7 @@ paths: updated_at: *144 url: *141 html_url: *142 - instances_url: *587 + instances_url: *588 state: *116 fixed_at: *146 dismissed_by: @@ -87045,11 +87103,11 @@ paths: required: *21 nullable: true dismissed_at: *145 - dismissed_reason: *588 - dismissed_comment: *589 - rule: *590 - tool: *591 - most_recent_instance: *592 + dismissed_reason: *589 + dismissed_comment: *590 + rule: *591 + tool: *592 + most_recent_instance: *593 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -87175,7 +87233,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *38 - '403': &594 + '403': &595 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -87202,9 +87260,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *512 - *513 - - &595 + - *514 + - &596 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -87218,7 +87276,7 @@ paths: description: Response content: application/json: - schema: &596 + schema: &597 type: object properties: number: *136 @@ -87226,7 +87284,7 @@ paths: updated_at: *144 url: *141 html_url: *142 - instances_url: *587 + instances_url: *588 state: *116 fixed_at: *146 dismissed_by: @@ -87237,8 +87295,8 @@ paths: required: *21 nullable: true dismissed_at: *145 - dismissed_reason: *588 - dismissed_comment: *589 + dismissed_reason: *589 + dismissed_comment: *590 rule: type: object properties: @@ -87292,8 +87350,8 @@ paths: type: string description: A link to the documentation for the rule used to detect the alert. - tool: *591 - most_recent_instance: *592 + tool: *592 + most_recent_instance: *593 dismissal_approved_by: title: Simple User description: A GitHub user. @@ -87307,7 +87365,7 @@ paths: linked_pull_requests: description: Pull requests linked to this alert. type: array - items: *593 + items: *594 required: - number - created_at @@ -87396,7 +87454,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *38 - '403': *594 + '403': *595 '404': *6 '503': *204 x-github: @@ -87416,9 +87474,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *512 - *513 - - *595 + - *514 + - *596 requestBody: required: true content: @@ -87433,8 +87491,8 @@ paths: enum: - open - dismissed - dismissed_reason: *588 - dismissed_comment: *589 + dismissed_reason: *589 + dismissed_comment: *590 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -87462,7 +87520,7 @@ paths: description: Response content: application/json: - schema: *596 + schema: *597 examples: default: value: @@ -87538,7 +87596,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &600 + '403': &601 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -87565,15 +87623,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-status-of-an-autofix-for-a-code-scanning-alert parameters: - - *512 - *513 - - *595 + - *514 + - *596 responses: '200': description: Response content: application/json: - schema: &597 + schema: &598 type: object properties: status: @@ -87599,13 +87657,13 @@ paths: - description - started_at examples: - default: &598 + default: &599 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &599 + '400': &600 description: Bad Request content: application/json: @@ -87616,7 +87674,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': *594 + '403': *595 '404': *6 '500': *41 x-github: @@ -87641,29 +87699,29 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#create-an-autofix-for-a-code-scanning-alert parameters: - - *512 - *513 - - *595 + - *514 + - *596 responses: '200': description: OK content: application/json: - schema: *597 + schema: *598 examples: - default: *598 + default: *599 '202': description: Accepted content: application/json: - schema: *597 + schema: *598 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *599 + '400': *600 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -87695,9 +87753,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#commit-an-autofix-for-a-code-scanning-alert parameters: - - *512 - *513 - - *595 + - *514 + - *596 requestBody: required: false content: @@ -87742,8 +87800,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *599 - '403': *600 + '400': *600 + '403': *601 '404': *6 '422': description: Unprocessable Entity @@ -87767,13 +87825,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *512 - *513 - - *595 + - *514 + - *596 - *19 - *17 - - *601 - *602 + - *603 responses: '200': description: Response @@ -87784,10 +87842,10 @@ paths: items: type: object properties: - ref: *585 - analysis_key: *603 - environment: *604 - category: *605 + ref: *586 + analysis_key: *604 + environment: *605 + category: *606 state: type: string description: State of a code scanning alert instance. @@ -87802,7 +87860,7 @@ paths: properties: text: type: string - location: *606 + location: *607 html_url: type: string classifications: @@ -87810,7 +87868,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: *607 + items: *608 examples: default: value: @@ -87847,7 +87905,7 @@ paths: end_column: 50 classifications: - source - '403': *594 + '403': *595 '404': *6 '503': *204 x-github: @@ -87881,25 +87939,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *512 - *513 + - *514 - *333 - *334 - *19 - *17 - - *602 + - *603 - 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: *585 + schema: *586 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &608 + schema: &609 type: string description: An identifier for the upload. example: 6c81cd8e-b078-4ac3-a3be-1dad7dbd0b53 @@ -87920,23 +87978,23 @@ paths: application/json: schema: type: array - items: &609 + items: &610 type: object properties: - ref: *585 - commit_sha: &617 + ref: *586 + commit_sha: &618 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: *603 + analysis_key: *604 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *605 + category: *606 error: type: string example: error reading field xyz @@ -87960,8 +88018,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *608 - tool: *591 + sarif_id: *609 + tool: *592 deletable: type: boolean warning: @@ -88022,7 +88080,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *594 + '403': *595 '404': *6 '503': *204 x-github: @@ -88058,8 +88116,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-analysis-for-a-repository parameters: - - *512 - *513 + - *514 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -88072,7 +88130,7 @@ paths: description: Response content: application/json: - schema: *609 + schema: *610 examples: response: summary: application/json response @@ -88126,7 +88184,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *594 + '403': *595 '404': *6 '422': description: Response if analysis could not be processed @@ -88213,8 +88271,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-code-scanning-analysis-from-a-repository parameters: - - *512 - *513 + - *514 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -88267,7 +88325,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': *600 + '403': *601 '404': *6 '503': *204 x-github: @@ -88289,8 +88347,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -88298,7 +88356,7 @@ paths: application/json: schema: type: array - items: &610 + items: &611 title: CodeQL Database description: A CodeQL database. type: object @@ -88409,7 +88467,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': *594 + '403': *595 '404': *6 '503': *204 x-github: @@ -88438,8 +88496,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *512 - *513 + - *514 - name: language in: path description: The language of the CodeQL database. @@ -88451,7 +88509,7 @@ paths: description: Response content: application/json: - schema: *610 + schema: *611 examples: default: value: @@ -88483,9 +88541,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': &647 + '302': &648 description: Found - '403': *594 + '403': *595 '404': *6 '503': *204 x-github: @@ -88507,8 +88565,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *512 - *513 + - *514 - name: language in: path description: The language of the CodeQL database. @@ -88518,7 +88576,7 @@ paths: responses: '204': description: Response - '403': *600 + '403': *601 '404': *6 '503': *204 x-github: @@ -88546,8 +88604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -88556,7 +88614,7 @@ paths: type: object additionalProperties: false properties: - language: &611 + language: &612 type: string description: The language targeted by the CodeQL query enum: @@ -88636,7 +88694,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &615 + schema: &616 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -88646,7 +88704,7 @@ paths: description: The ID of the variant analysis. controller_repo: *123 actor: *4 - query_language: *611 + query_language: *612 query_pack_url: type: string description: The download url for the query pack. @@ -88693,7 +88751,7 @@ paths: items: type: object properties: - repository: &612 + repository: &613 title: Repository Identifier description: Repository Identifier type: object @@ -88729,7 +88787,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &616 + analysis_status: &617 type: string description: The new status of the CodeQL variant analysis repository task. @@ -88761,7 +88819,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &613 + access_mismatch_repos: &614 type: object properties: repository_count: @@ -88775,7 +88833,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: *612 + items: *613 required: - repository_count - repositories @@ -88797,8 +88855,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *613 - over_limit_repos: *613 + no_codeql_db_repos: *614 + over_limit_repos: *614 required: - access_mismatch_repos - not_found_repos @@ -88814,7 +88872,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &614 + value: &615 summary: Default response value: id: 1 @@ -88960,10 +89018,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *614 + value: *615 repository_lists: summary: Response for a successful variant analysis submission - value: *614 + value: *615 '404': *6 '422': description: Unable to process variant analysis submission @@ -88991,8 +89049,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-summary-of-a-codeql-variant-analysis parameters: - - *512 - *513 + - *514 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -89004,9 +89062,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *616 examples: - default: *614 + default: *615 '404': *6 '503': *204 x-github: @@ -89029,7 +89087,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-the-analysis-status-of-a-repository-in-a-codeql-variant-analysis parameters: - - *512 + - *513 - name: repo in: path description: The name of the controller repository. @@ -89064,7 +89122,7 @@ paths: type: object properties: repository: *123 - analysis_status: *616 + analysis_status: *617 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -89189,8 +89247,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -89292,7 +89350,7 @@ paths: threat_model: remote updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *594 + '403': *595 '404': *6 '503': *204 x-github: @@ -89313,8 +89371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -89406,7 +89464,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *600 + '403': *601 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -89477,8 +89535,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -89486,7 +89544,7 @@ paths: schema: type: object properties: - commit_sha: *617 + commit_sha: *618 ref: type: string description: |- @@ -89544,7 +89602,7 @@ paths: schema: type: object properties: - id: *608 + id: *609 url: type: string description: The REST API URL for checking the status of the upload. @@ -89558,7 +89616,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': *600 + '403': *601 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -89581,8 +89639,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *512 - *513 + - *514 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -89628,7 +89686,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': *594 + '403': *595 '404': description: Not Found if the sarif id does not match any upload '503': *204 @@ -89653,8 +89711,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/code-security/configurations#get-the-code-security-configuration-associated-with-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -89735,8 +89793,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-codeowners-errors parameters: - - *512 - *513 + - *514 - 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 @@ -89856,8 +89914,8 @@ paths: parameters: - *17 - *19 - - *512 - *513 + - *514 responses: '200': description: Response @@ -89873,7 +89931,7 @@ paths: type: integer codespaces: type: array - items: *410 + items: *411 examples: default: value: @@ -90171,8 +90229,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -90235,17 +90293,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '400': *14 '401': *25 '403': *29 @@ -90274,8 +90332,8 @@ paths: parameters: - *17 - *19 - - *512 - *513 + - *514 responses: '200': description: Response @@ -90339,8 +90397,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *512 - *513 + - *514 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -90375,14 +90433,14 @@ paths: type: integer machines: type: array - items: &888 + items: &889 type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *619 - required: *620 + properties: *620 + required: *621 examples: - default: &889 + default: &890 value: total_count: 2 machines: @@ -90422,8 +90480,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *512 - *513 + - *514 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -90507,8 +90565,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#check-if-permissions-defined-by-a-devcontainer-have-been-accepted-by-the-authenticated-user parameters: - - *512 - *513 + - *514 - 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 @@ -90574,8 +90632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -90593,7 +90651,7 @@ paths: type: integer secrets: type: array - items: &624 + items: &625 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -90613,7 +90671,7 @@ paths: - created_at - updated_at examples: - default: *621 + default: *622 headers: Link: *48 x-github: @@ -90636,16 +90694,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: *622 + schema: *623 examples: - default: *623 + default: *624 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90665,17 +90723,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '200': description: Response content: application/json: - schema: *624 + schema: *625 examples: - default: *625 + default: *626 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -90695,8 +90753,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 requestBody: required: true @@ -90749,8 +90807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '204': @@ -90779,8 +90837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *512 - *513 + - *514 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -90822,7 +90880,7 @@ paths: title: Collaborator description: Collaborator type: object - properties: &626 + properties: &627 login: type: string example: octocat @@ -90915,7 +90973,7 @@ paths: user_view_type: type: string example: public - required: &627 + required: &628 - avatar_url - events_url - followers_url @@ -90989,8 +91047,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *512 - *513 + - *514 - *135 responses: '204': @@ -91037,8 +91095,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *512 - *513 + - *514 - *135 requestBody: required: false @@ -91065,7 +91123,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &704 + schema: &705 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -91294,8 +91352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *512 - *513 + - *514 - *135 responses: '204': @@ -91327,8 +91385,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *512 - *513 + - *514 - *135 responses: '200': @@ -91349,8 +91407,8 @@ paths: title: Collaborator description: Collaborator type: object - properties: *626 - required: *627 + properties: *627 + required: *628 nullable: true required: - permission @@ -91405,8 +91463,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -91416,7 +91474,7 @@ paths: application/json: schema: type: array - items: &628 + items: &629 title: Commit Comment description: Commit Comment type: object @@ -91474,7 +91532,7 @@ paths: - created_at - updated_at examples: - default: &633 + default: &634 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -91533,17 +91591,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#get-a-commit-comment parameters: - - *512 - *513 + - *514 - *251 responses: '200': description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: &634 + default: &635 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -91600,8 +91658,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#update-a-commit-comment parameters: - - *512 - *513 + - *514 - *251 requestBody: required: true @@ -91624,7 +91682,7 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: default: value: @@ -91675,8 +91733,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#delete-a-commit-comment parameters: - - *512 - *513 + - *514 - *251 responses: '204': @@ -91698,8 +91756,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *512 - *513 + - *514 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -91726,7 +91784,7 @@ paths: application/json: schema: type: array - items: &629 + items: &630 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -91769,7 +91827,7 @@ paths: - content - created_at examples: - default: &708 + default: &709 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -91814,8 +91872,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *512 - *513 + - *514 - *251 requestBody: required: true @@ -91848,9 +91906,9 @@ paths: description: Reaction exists content: application/json: - schema: *629 + schema: *630 examples: - default: &630 + default: &631 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -91879,9 +91937,9 @@ paths: description: Reaction created content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '422': *15 x-github: githubCloudOnly: false @@ -91903,10 +91961,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *512 - *513 + - *514 - *251 - - &709 + - &710 name: reaction_id description: The unique identifier of the reaction. in: path @@ -91961,8 +92019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-commits parameters: - - *512 - *513 + - *514 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -92018,9 +92076,9 @@ paths: application/json: schema: type: array - items: *631 + items: *632 examples: - default: &783 + default: &784 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -92114,9 +92172,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-branches-for-head-commit parameters: - - *512 - *513 - - &632 + - *514 + - &633 name: commit_sha description: The SHA of the commit. in: path @@ -92188,9 +92246,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#list-commit-comments parameters: - - *512 - *513 - - *632 + - *514 + - *633 - *17 - *19 responses: @@ -92200,9 +92258,9 @@ paths: application/json: schema: type: array - items: *628 + items: *629 examples: - default: *633 + default: *634 headers: Link: *48 x-github: @@ -92230,9 +92288,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/comments#create-a-commit-comment parameters: - - *512 - *513 - - *632 + - *514 + - *633 requestBody: required: true content: @@ -92267,9 +92325,9 @@ paths: description: Response content: application/json: - schema: *628 + schema: *629 examples: - default: *634 + default: *635 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -92297,9 +92355,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *512 - *513 - - *632 + - *514 + - *633 - *17 - *19 responses: @@ -92309,9 +92367,9 @@ paths: application/json: schema: type: array - items: *593 + items: *594 examples: - default: &774 + default: &775 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -92848,11 +92906,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#get-a-commit parameters: - - *512 - *513 + - *514 - *19 - *17 - - &635 + - &636 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)" @@ -92867,9 +92925,9 @@ paths: description: Response content: application/json: - schema: *631 + schema: *632 examples: - default: &759 + default: &760 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -92957,7 +93015,7 @@ paths: schema: type: string examples: - default: &644 + default: &645 value: | diff --git a/testfile b/testfile index 9bdeaeb..912c7ef 100644 @@ -92970,7 +93028,7 @@ paths: schema: type: string examples: - default: &645 + default: &646 value: | From ac3282a2725be3b1d4979169a7a311c89066af1c Mon Sep 17 00:00:00 2001 From: Mona Lisa <87831417+monalisa@users.noreply.github.com> @@ -93023,11 +93081,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *512 - *513 - - *635 + - *514 - *636 - *637 + - *638 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -93061,9 +93119,9 @@ paths: type: integer check_runs: type: array - items: *575 + items: *576 examples: - default: *638 + default: *639 headers: Link: *48 x-github: @@ -93088,9 +93146,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *512 - *513 - - *635 + - *514 + - *636 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -93098,7 +93156,7 @@ paths: schema: type: integer example: 1 - - *636 + - *637 - *17 - *19 responses: @@ -93116,7 +93174,7 @@ paths: type: integer check_suites: type: array - items: *580 + items: *581 examples: default: value: @@ -93316,9 +93374,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *512 - *513 - - *635 + - *514 + - *636 - *17 - *19 responses: @@ -93516,9 +93574,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *512 - *513 - - *635 + - *514 + - *636 - *17 - *19 responses: @@ -93528,7 +93586,7 @@ paths: application/json: schema: type: array - items: &840 + items: &841 title: Status description: The status of a commit. type: object @@ -93609,7 +93667,7 @@ paths: site_admin: false headers: Link: *48 - '301': *518 + '301': *519 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -93637,8 +93695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/community#get-community-profile-metrics parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -93667,20 +93725,20 @@ paths: title: Code Of Conduct Simple description: Code of Conduct Simple type: object - properties: *639 - required: *640 + properties: *640 + required: *641 nullable: true code_of_conduct_file: title: Community Health File type: object - properties: &641 + properties: &642 url: type: string format: uri html_url: type: string format: uri - required: &642 + required: &643 - url - html_url nullable: true @@ -93694,26 +93752,26 @@ paths: contributing: title: Community Health File type: object - properties: *641 - required: *642 + properties: *642 + required: *643 nullable: true readme: title: Community Health File type: object - properties: *641 - required: *642 + properties: *642 + required: *643 nullable: true issue_template: title: Community Health File type: object - properties: *641 - required: *642 + properties: *642 + required: *643 nullable: true pull_request_template: title: Community Health File type: object - properties: *641 - required: *642 + properties: *642 + required: *643 nullable: true required: - code_of_conduct @@ -93840,8 +93898,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/commits#compare-two-commits parameters: - - *512 - *513 + - *514 - *19 - *17 - name: basehead @@ -93884,8 +93942,8 @@ paths: type: string format: uri example: https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *631 - merge_base_commit: *631 + base_commit: *632 + merge_base_commit: *632 status: type: string enum: @@ -93905,10 +93963,10 @@ paths: example: 6 commits: type: array - items: *631 + items: *632 files: type: array - items: *643 + items: *644 required: - url - html_url @@ -94154,12 +94212,12 @@ paths: schema: type: string examples: - default: *644 + default: *645 application/vnd.github.patch: schema: type: string examples: - default: *645 + default: *646 '404': *6 '500': *41 '503': *204 @@ -94204,8 +94262,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-repository-content parameters: - - *512 - *513 + - *514 - name: path description: path parameter in: path @@ -94365,7 +94423,7 @@ paths: - type - url examples: - response-if-content-is-a-file-github-object: &646 + response-if-content-is-a-file-github-object: &647 summary: Response if content is a file value: type: file @@ -94497,7 +94555,7 @@ paths: - size - type - url - - &789 + - &790 title: Content File description: Content File type: object @@ -94698,7 +94756,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *646 + response-if-content-is-a-file: *647 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -94767,7 +94825,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *29 - '302': *647 + '302': *648 '304': *38 x-github: githubCloudOnly: false @@ -94820,8 +94878,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#create-or-update-file-contents parameters: - - *512 - *513 + - *514 - name: path description: path parameter in: path @@ -94914,7 +94972,7 @@ paths: description: Response content: application/json: - schema: &648 + schema: &649 title: File Commit description: File Commit type: object @@ -95066,7 +95124,7 @@ paths: description: Response content: application/json: - schema: *648 + schema: *649 examples: example-for-creating-a-file: value: @@ -95120,7 +95178,7 @@ paths: schema: oneOf: - *3 - - &686 + - &687 description: Repository rule violation was detected type: object properties: @@ -95141,7 +95199,7 @@ paths: items: type: object properties: - placeholder_id: &831 + placeholder_id: &832 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -95173,8 +95231,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#delete-a-file parameters: - - *512 - *513 + - *514 - name: path description: path parameter in: path @@ -95235,7 +95293,7 @@ paths: description: Response content: application/json: - schema: *648 + schema: *649 examples: default: value: @@ -95290,8 +95348,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-contributors parameters: - - *512 - *513 + - *514 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -95420,8 +95478,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/copilot/copilot-cloud-agent-management#get-copilot-cloud-agent-configuration-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -95572,8 +95630,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *512 - *513 + - *514 - *354 - *355 - *356 @@ -95586,10 +95644,11 @@ paths: schema: type: string - *359 - - *649 + - *650 - *360 - *361 - *362 + - *363 - *113 - *111 - *112 @@ -95601,7 +95660,7 @@ paths: application/json: schema: type: array - items: &653 + items: &654 type: object description: A Dependabot alert. properties: @@ -95648,7 +95707,7 @@ paths: - direct - transitive - inconclusive - security_advisory: *650 + security_advisory: *651 security_vulnerability: *140 url: *141 html_url: *142 @@ -95679,8 +95738,8 @@ paths: nullable: true maxLength: 280 fixed_at: *146 - auto_dismissed_at: *651 - dismissal_request: *652 + auto_dismissed_at: *652 + dismissal_request: *653 assignees: type: array description: The users assigned to this alert. @@ -95713,6 +95772,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -95834,6 +95894,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -95935,9 +95996,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *512 - *513 - - &654 + - *514 + - &655 name: alert_number in: path description: |- @@ -95952,7 +96013,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -95964,6 +96025,7 @@ paths: name: ansible manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-8f4m-hccc-8qph cve_id: CVE-2021-20191 @@ -96084,9 +96146,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *512 - *513 - - *654 + - *514 + - *655 requestBody: required: true content: @@ -96159,7 +96221,7 @@ paths: description: Response content: application/json: - schema: *653 + schema: *654 examples: default: value: @@ -96171,6 +96233,7 @@ paths: name: django manifest_path: path/to/requirements.txt scope: runtime + relationship: direct security_advisory: ghsa_id: GHSA-rf4j-j272-fj86 cve_id: CVE-2018-6188 @@ -96289,8 +96352,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#list-repository-secrets parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -96308,7 +96371,7 @@ paths: type: integer secrets: type: array - items: &657 + items: &658 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -96361,16 +96424,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: *655 + schema: *656 examples: - default: *656 + default: *657 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -96390,15 +96453,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#get-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '200': description: Response content: application/json: - schema: *657 + schema: *658 examples: default: value: @@ -96424,8 +96487,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 requestBody: required: true @@ -96478,8 +96541,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *512 - *513 + - *514 - *306 responses: '204': @@ -96502,8 +96565,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/dependency-review#get-a-diff-of-the-dependencies-between-commits parameters: - - *512 - *513 + - *514 - 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 @@ -96666,8 +96729,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#export-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -96905,8 +96968,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#fetch-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *512 - *513 + - *514 - name: sbom_uuid in: path required: true @@ -96917,7 +96980,7 @@ paths: '302': description: Redirects to a temporary download URL for the completed SBOM. headers: - Location: *658 + Location: *659 '202': description: SBOM is still being processed, no content is returned. '404': *6 @@ -96938,8 +97001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/sboms#request-generation-of-a-software-bill-of-materials-sbom-for-a-repository parameters: - - *512 - *513 + - *514 responses: '201': description: Response @@ -96977,8 +97040,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/dependency-graph/dependency-submission#create-a-snapshot-of-dependencies-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -97053,7 +97116,7 @@ paths: - version - url additionalProperties: false - metadata: &659 + metadata: &660 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -97086,7 +97149,7 @@ paths: the root of the Git repository. example: "/src/build/package-lock.json" additionalProperties: false - metadata: *659 + metadata: *660 resolved: type: object description: A collection of resolved package dependencies. @@ -97099,7 +97162,7 @@ paths: for more details. example: pkg:/npm/%40actions/http-client@1.0.11 pattern: "^pkg" - metadata: *659 + metadata: *660 relationship: type: string description: A notation of whether a dependency is requested @@ -97228,8 +97291,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#list-deployments parameters: - - *512 - *513 + - *514 - name: sha description: The SHA recorded at creation time. in: query @@ -97269,9 +97332,9 @@ paths: application/json: schema: type: array - items: *660 + items: *661 examples: - default: *661 + default: *662 headers: Link: *48 x-github: @@ -97337,8 +97400,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#create-a-deployment parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -97419,7 +97482,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: simple-example: summary: Simple example @@ -97492,9 +97555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#get-a-deployment parameters: - - *512 - *513 - - &662 + - *514 + - &663 name: deployment_id description: deployment_id parameter in: path @@ -97506,7 +97569,7 @@ paths: description: Response content: application/json: - schema: *660 + schema: *661 examples: default: value: @@ -97571,9 +97634,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/deployments#delete-a-deployment parameters: - - *512 - *513 - - *662 + - *514 + - *663 responses: '204': description: Response @@ -97595,9 +97658,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#list-deployment-statuses parameters: - - *512 - *513 - - *662 + - *514 + - *663 - *17 - *19 responses: @@ -97607,7 +97670,7 @@ paths: application/json: schema: type: array - items: &663 + items: &664 title: Deployment Status description: The status of a deployment. type: object @@ -97768,9 +97831,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#create-a-deployment-status parameters: - - *512 - *513 - - *662 + - *514 + - *663 requestBody: required: true content: @@ -97845,9 +97908,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: &664 + default: &665 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -97903,9 +97966,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/statuses#get-a-deployment-status parameters: - - *512 - *513 - - *662 + - *514 + - *663 - name: status_id in: path required: true @@ -97916,9 +97979,9 @@ paths: description: Response content: application/json: - schema: *663 + schema: *664 examples: - default: *664 + default: *665 '404': *6 x-github: githubCloudOnly: false @@ -97945,12 +98008,12 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *512 - *513 - - *665 + - *514 - *666 - *667 - *668 + - *669 - *17 - *19 responses: @@ -97960,9 +98023,9 @@ paths: application/json: schema: type: array - items: *669 + items: *670 examples: - default: *670 + default: *671 '404': *6 '403': *29 '500': *41 @@ -97986,8 +98049,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -97999,7 +98062,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *669 + schema: *670 examples: default: value: @@ -98055,8 +98118,8 @@ paths: category: code-scanning subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -98115,12 +98178,12 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *512 - *513 - - *665 + - *514 - *666 - *667 - *668 + - *669 - *17 - *19 responses: @@ -98130,9 +98193,9 @@ paths: application/json: schema: type: array - items: *671 + items: *672 examples: - default: *672 + default: *673 '404': *6 '403': *29 '500': *41 @@ -98156,8 +98219,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -98169,7 +98232,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *671 + schema: *672 examples: default: value: @@ -98220,8 +98283,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -98259,7 +98322,7 @@ paths: description: The created dismissal request. content: application/json: - schema: *671 + schema: *672 examples: default: value: @@ -98310,8 +98373,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -98382,8 +98445,8 @@ paths: category: dependabot subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -98416,12 +98479,12 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - *106 - *107 - *108 - - *368 + - *369 - *17 - *19 responses: @@ -98431,9 +98494,9 @@ paths: application/json: schema: type: array - items: *370 + items: *371 examples: - default: *371 + default: *372 '404': *6 '403': *29 '500': *41 @@ -98458,8 +98521,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -98471,7 +98534,7 @@ paths: description: A single dismissal request. content: application/json: - schema: *370 + schema: *371 examples: default: value: @@ -98529,8 +98592,8 @@ paths: category: secret-scanning subcategory: alert-dismissal-requests parameters: - - *512 - *513 + - *514 - name: alert_number in: path required: true @@ -98599,8 +98662,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -98657,8 +98720,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#list-environments parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -98675,7 +98738,7 @@ paths: type: integer environments: type: array - items: &674 + items: &675 title: Environment description: Details of a deployment environment type: object @@ -98727,7 +98790,7 @@ paths: type: type: string example: wait_timer - wait_timer: &676 + wait_timer: &677 type: integer example: 30 description: The amount of time to delay a job after @@ -98764,7 +98827,7 @@ paths: items: type: object properties: - type: *673 + type: *674 reviewer: anyOf: - *4 @@ -98788,7 +98851,7 @@ paths: - id - node_id - type - deployment_branch_policy: &677 + deployment_branch_policy: &678 type: object description: The type of deployment branch policy for this environment. To allow all branches to deploy, set to `null`. @@ -98904,9 +98967,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#get-an-environment parameters: - - *512 - *513 - - &675 + - *514 + - &676 name: environment_name in: path required: true @@ -98919,9 +98982,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: &678 + default: &679 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -99005,9 +99068,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#create-or-update-an-environment parameters: - - *512 - *513 - - *675 + - *514 + - *676 requestBody: required: false content: @@ -99016,7 +99079,7 @@ paths: type: object nullable: true properties: - wait_timer: *676 + wait_timer: *677 prevent_self_review: type: boolean example: false @@ -99033,13 +99096,13 @@ paths: items: type: object properties: - type: *673 + type: *674 id: type: integer description: The id of the user or team who can review the deployment example: 4532992 - deployment_branch_policy: *677 + deployment_branch_policy: *678 additionalProperties: false examples: default: @@ -99059,9 +99122,9 @@ paths: description: Response content: application/json: - schema: *674 + schema: *675 examples: - default: *678 + default: *679 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -99085,9 +99148,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/environments#delete-an-environment parameters: - - *512 - *513 - - *675 + - *514 + - *676 responses: '204': description: Default response @@ -99112,9 +99175,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *512 - *513 - - *675 + - *514 + - *676 - *17 - *19 responses: @@ -99132,7 +99195,7 @@ paths: example: 2 branch_policies: type: array - items: &679 + items: &680 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -99189,9 +99252,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *512 - *513 - - *675 + - *514 + - *676 requestBody: required: true content: @@ -99237,9 +99300,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - example-wildcard: &680 + example-wildcard: &681 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -99281,10 +99344,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *512 - *513 - - *675 - - &681 + - *514 + - *676 + - &682 name: branch_policy_id in: path required: true @@ -99296,9 +99359,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: *680 + default: *681 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99317,10 +99380,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *512 - *513 - - *675 - - *681 + - *514 + - *676 + - *682 requestBody: required: true content: @@ -99348,9 +99411,9 @@ paths: description: Response content: application/json: - schema: *679 + schema: *680 examples: - default: *680 + default: *681 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99369,10 +99432,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *512 - *513 - - *675 - - *681 + - *514 + - *676 + - *682 responses: '204': description: Response @@ -99397,9 +99460,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *675 + - *676 + - *514 - *513 - - *512 responses: '200': description: List of deployment protection rules @@ -99415,7 +99478,7 @@ paths: example: 10 custom_deployment_protection_rules: type: array - items: &682 + items: &683 title: Deployment protection rule description: Deployment protection rule type: object @@ -99434,7 +99497,7 @@ paths: example: true description: Whether the deployment protection rule is enabled for the environment. - app: &683 + app: &684 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -99533,9 +99596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#create-a-custom-deployment-protection-rule-on-an-environment parameters: - - *675 + - *676 + - *514 - *513 - - *512 requestBody: content: application/json: @@ -99556,9 +99619,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *682 + schema: *683 examples: - default: &684 + default: &685 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -99593,9 +99656,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#list-custom-deployment-rule-integrations-available-for-an-environment parameters: - - *675 + - *676 + - *514 - *513 - - *512 - *19 - *17 responses: @@ -99614,7 +99677,7 @@ paths: example: 35 available_custom_deployment_protection_rule_integrations: type: array - items: *683 + items: *684 examples: default: value: @@ -99649,10 +99712,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *512 - *513 - - *675 - - &685 + - *514 + - *676 + - &686 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -99664,9 +99727,9 @@ paths: description: Response content: application/json: - schema: *682 + schema: *683 examples: - default: *684 + default: *685 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99687,10 +99750,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *675 + - *676 + - *514 - *513 - - *512 - - *685 + - *686 responses: '204': description: Response @@ -99716,9 +99779,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#list-environment-secrets parameters: - - *512 - *513 - - *675 + - *514 + - *676 - *17 - *19 responses: @@ -99736,9 +99799,9 @@ paths: type: integer secrets: type: array - items: *542 + items: *543 examples: - default: *543 + default: *544 headers: Link: *48 x-github: @@ -99763,9 +99826,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-public-key parameters: - - *512 - *513 - - *675 + - *514 + - *676 responses: '200': description: Response @@ -99795,18 +99858,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#get-an-environment-secret parameters: - - *512 - *513 - - *675 + - *514 + - *676 - *306 responses: '200': description: Response content: application/json: - schema: *542 + schema: *543 examples: - default: *556 + default: *557 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -99828,9 +99891,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *512 - *513 - - *675 + - *514 + - *676 - *306 requestBody: required: true @@ -99888,9 +99951,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/secrets#delete-an-environment-secret parameters: - - *512 - *513 - - *675 + - *514 + - *676 - *306 responses: '204': @@ -99916,9 +99979,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#list-environment-variables parameters: - - *512 - *513 - - *675 + - *514 + - *676 - *315 - *19 responses: @@ -99936,9 +99999,9 @@ paths: type: integer variables: type: array - items: *544 + items: *545 examples: - default: *545 + default: *546 headers: Link: *48 x-github: @@ -99961,9 +100024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#create-an-environment-variable parameters: - - *512 - *513 - - *675 + - *514 + - *676 requestBody: required: true content: @@ -100015,18 +100078,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#get-an-environment-variable parameters: - - *512 - *513 - - *675 + - *514 + - *676 - *309 responses: '200': description: Response content: application/json: - schema: *544 + schema: *545 examples: - default: *557 + default: *558 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100047,10 +100110,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#update-an-environment-variable parameters: - - *512 - *513 + - *514 - *309 - - *675 + - *676 requestBody: required: true content: @@ -100092,10 +100155,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/actions/variables#delete-an-environment-variable parameters: - - *512 - *513 + - *514 - *309 - - *675 + - *676 responses: '204': description: Response @@ -100117,8 +100180,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/events#list-repository-events parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -100186,8 +100249,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#list-forks parameters: - - *512 - *513 + - *514 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -100346,8 +100409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/forks#create-a-fork parameters: - - *512 - *513 + - *514 requestBody: required: false content: @@ -100379,9 +100442,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *519 + default: *520 '400': *14 '422': *15 '403': *29 @@ -100402,8 +100465,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#create-a-blob parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -100463,7 +100526,7 @@ paths: schema: oneOf: - *271 - - *686 + - *687 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -100488,8 +100551,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/blobs#get-a-blob parameters: - - *512 - *513 + - *514 - name: file_sha in: path required: true @@ -100588,8 +100651,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#create-a-commit parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -100698,7 +100761,7 @@ paths: description: Response content: application/json: - schema: &687 + schema: &688 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -100912,15 +100975,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/commits#get-a-commit-object parameters: - - *512 - *513 - - *632 + - *514 + - *633 responses: '200': description: Response content: application/json: - schema: *687 + schema: *688 examples: default: value: @@ -100976,9 +101039,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#list-matching-references parameters: - - *512 - *513 - - &688 + - *514 + - &689 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. @@ -100995,7 +101058,7 @@ paths: application/json: schema: type: array - items: &689 + items: &690 title: Git Reference description: Git references within a repository type: object @@ -101070,17 +101133,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference parameters: - - *512 - *513 - - *688 + - *514 + - *689 responses: '200': description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: &690 + default: &691 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -101109,8 +101172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#create-a-reference parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -101139,9 +101202,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: *690 + default: *691 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -101167,9 +101230,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#update-a-reference parameters: - - *512 - *513 - - *688 + - *514 + - *689 requestBody: required: true content: @@ -101198,9 +101261,9 @@ paths: description: Response content: application/json: - schema: *689 + schema: *690 examples: - default: *690 + default: *691 '422': *15 '409': *122 x-github: @@ -101218,9 +101281,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/refs#delete-a-reference parameters: - - *512 - *513 - - *688 + - *514 + - *689 responses: '204': description: Response @@ -101275,8 +101338,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#create-a-tag-object parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -101343,7 +101406,7 @@ paths: description: Response content: application/json: - schema: &692 + schema: &693 title: Git Tag description: Metadata for a Git tag type: object @@ -101394,7 +101457,7 @@ paths: - sha - type - url - verification: *691 + verification: *692 required: - sha - url @@ -101404,7 +101467,7 @@ paths: - tag - message examples: - default: &693 + default: &694 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -101477,8 +101540,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/tags#get-a-tag parameters: - - *512 - *513 + - *514 - name: tag_sha in: path required: true @@ -101489,9 +101552,9 @@ paths: description: Response content: application/json: - schema: *692 + schema: *693 examples: - default: *693 + default: *694 '404': *6 '409': *122 x-github: @@ -101515,8 +101578,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#create-a-tree parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -101589,7 +101652,7 @@ paths: description: Response content: application/json: - schema: &694 + schema: &695 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -101685,8 +101748,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/git/trees#get-a-tree parameters: - - *512 - *513 + - *514 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -101709,7 +101772,7 @@ paths: description: Response content: application/json: - schema: *694 + schema: *695 examples: default-response: summary: Default response @@ -101767,8 +101830,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-the-hash-algorithm-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -101811,8 +101874,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-repository-webhooks parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -101822,7 +101885,7 @@ paths: application/json: schema: type: array - items: &695 + items: &696 title: Webhook description: Webhooks for repositories. type: object @@ -101876,7 +101939,7 @@ paths: type: string format: uri example: https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &987 + last_response: &988 title: Hook Response type: object properties: @@ -101950,8 +102013,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#create-a-repository-webhook parameters: - - *512 - *513 + - *514 requestBody: required: false content: @@ -102003,9 +102066,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: - default: &696 + default: &697 value: type: Repository id: 12345678 @@ -102053,17 +102116,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-repository-webhook parameters: - - *512 - *513 - - *377 + - *514 + - *378 responses: '200': description: Response content: application/json: - schema: *695 + schema: *696 examples: - default: *696 + default: *697 '404': *6 x-github: githubCloudOnly: false @@ -102083,9 +102146,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-repository-webhook parameters: - - *512 - *513 - - *377 + - *514 + - *378 requestBody: required: true content: @@ -102130,9 +102193,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *696 examples: - default: *696 + default: *697 '422': *15 '404': *6 x-github: @@ -102153,9 +102216,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *512 - *513 - - *377 + - *514 + - *378 responses: '204': description: Response @@ -102179,9 +102242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *512 - *513 - - *377 + - *514 + - *378 responses: '200': description: Response @@ -102208,9 +102271,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *512 - *513 - - *377 + - *514 + - *378 requestBody: required: false content: @@ -102254,12 +102317,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *512 - *513 - - *377 - - *17 + - *514 - *378 + - *17 - *379 + - *380 responses: '200': description: Response @@ -102267,9 +102330,9 @@ paths: application/json: schema: type: array - items: *380 + items: *381 examples: - default: *381 + default: *382 '400': *14 '422': *15 x-github: @@ -102288,18 +102351,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *512 - *513 - - *377 + - *514 + - *378 - *16 responses: '200': description: Response content: application/json: - schema: *382 + schema: *383 examples: - default: *383 + default: *384 '400': *14 '422': *15 x-github: @@ -102318,9 +102381,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *512 - *513 - - *377 + - *514 + - *378 - *16 responses: '202': *40 @@ -102343,9 +102406,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *512 - *513 - - *377 + - *514 + - *378 responses: '204': description: Response @@ -102370,9 +102433,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *512 - *513 - - *377 + - *514 + - *378 responses: '204': description: Response @@ -102395,8 +102458,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-immutable-releases-are-enabled-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response if immutable releases are enabled @@ -102442,8 +102505,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-immutable-releases parameters: - - *512 - *513 + - *514 responses: '204': *129 '409': *122 @@ -102463,8 +102526,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-immutable-releases parameters: - - *512 - *513 + - *514 responses: '204': *129 '409': *122 @@ -102521,14 +102584,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-an-import-status parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: &697 + schema: &698 title: Import description: A repository import from an external source. type: object @@ -102627,7 +102690,7 @@ paths: - html_url - authors_url examples: - default: &700 + default: &701 value: vcs: subversion use_lfs: true @@ -102643,7 +102706,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': &698 + '503': &699 description: Unavailable due to service under maintenance. content: application/json: @@ -102672,8 +102735,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#start-an-import parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -102721,7 +102784,7 @@ paths: description: Response content: application/json: - schema: *697 + schema: *698 examples: default: value: @@ -102746,7 +102809,7 @@ paths: type: string '422': *15 '404': *6 - '503': *698 + '503': *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102774,8 +102837,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-an-import parameters: - - *512 - *513 + - *514 requestBody: required: false content: @@ -102824,7 +102887,7 @@ paths: description: Response content: application/json: - schema: *697 + schema: *698 examples: example-1: summary: Example 1 @@ -102872,7 +102935,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': *698 + '503': *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102895,12 +102958,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#cancel-an-import parameters: - - *512 - *513 + - *514 responses: '204': description: Response - '503': *698 + '503': *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102926,9 +102989,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-commit-authors parameters: - - *512 - *513 - - &911 + - *514 + - &912 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -102942,7 +103005,7 @@ paths: application/json: schema: type: array - items: &699 + items: &700 title: Porter Author description: Porter Author type: object @@ -102996,7 +103059,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': *698 + '503': *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103021,8 +103084,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#map-a-commit-author parameters: - - *512 - *513 + - *514 - name: author_id in: path required: true @@ -103052,7 +103115,7 @@ paths: description: Response content: application/json: - schema: *699 + schema: *700 examples: default: value: @@ -103065,7 +103128,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *698 + '503': *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103089,8 +103152,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#get-large-files parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -103131,7 +103194,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *698 + '503': *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103159,8 +103222,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -103187,11 +103250,11 @@ paths: description: Response content: application/json: - schema: *697 + schema: *698 examples: - default: *700 + default: *701 '422': *15 - '503': *698 + '503': *699 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -103214,8 +103277,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -103223,8 +103286,8 @@ paths: application/json: schema: *22 examples: - default: *395 - '301': *518 + default: *396 + '301': *519 '404': *6 x-github: githubCloudOnly: false @@ -103244,8 +103307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -103253,12 +103316,12 @@ paths: application/json: schema: anyOf: - - *397 + - *398 - type: object properties: {} additionalProperties: false examples: - default: &702 + default: &703 value: limit: collaborators_only origin: repository @@ -103283,13 +103346,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: application/json: - schema: *701 + schema: *702 examples: default: summary: Example request body @@ -103301,9 +103364,9 @@ paths: description: Response content: application/json: - schema: *397 + schema: *398 examples: - default: *702 + default: *703 '409': description: Response x-github: @@ -103325,8 +103388,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -103353,8 +103416,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -103408,13 +103471,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#add-users-to-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: application/json: - schema: &703 + schema: &704 title: Interaction Limits Pull Request Bypass List description: A list of user logins to add or remove from the pull request creation cap bypass list. @@ -103464,13 +103527,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#remove-users-from-the-pull-request-creation-cap-bypass-list-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: application/json: - schema: *703 + schema: *704 examples: default: summary: Example request body @@ -103503,8 +103566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#get-pull-request-creation-cap-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -103557,8 +103620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/interactions/repos#update-pull-request-creation-cap-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -103634,8 +103697,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#list-repository-invitations parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -103645,9 +103708,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: &904 + default: &905 value: - id: 1 repository: @@ -103778,9 +103841,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *512 - *513 - - *401 + - *514 + - *402 requestBody: required: false content: @@ -103809,7 +103872,7 @@ paths: description: Response content: application/json: - schema: *704 + schema: *705 examples: default: value: @@ -103940,9 +104003,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *512 - *513 - - *401 + - *514 + - *402 responses: '204': description: Response @@ -103965,8 +104028,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/issue-types#list-issue-types-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -103974,9 +104037,9 @@ paths: application/json: schema: type: array - items: *405 + items: *406 examples: - default: *705 + default: *706 '404': *6 x-github: githubCloudOnly: false @@ -104005,8 +104068,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-repository-issues parameters: - - *512 - *513 + - *514 - 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 @@ -104068,7 +104131,7 @@ paths: required: false schema: type: string - - *408 + - *409 - name: sort description: What to sort results by. in: query @@ -104093,7 +104156,7 @@ paths: type: array items: *235 examples: - default: &720 + default: &721 value: - id: 1 node_id: MDU6SXNzdWUx @@ -104242,7 +104305,7 @@ paths: state_reason: completed headers: Link: *48 - '301': *518 + '301': *519 '422': *15 '404': *6 x-github: @@ -104271,8 +104334,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#create-an-issue parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -104381,7 +104444,7 @@ paths: application/json: schema: *235 examples: - default: &717 + default: &718 value: id: 1 node_id: MDU6SXNzdWUx @@ -104582,8 +104645,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *512 - *513 + - *514 - *259 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -104604,9 +104667,9 @@ paths: application/json: schema: type: array - items: *706 + items: *707 examples: - default: &719 + default: &720 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -104665,17 +104728,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment parameters: - - *512 - *513 + - *514 - *251 responses: '200': description: Response content: application/json: - schema: *706 + schema: *707 examples: - default: &707 + default: &708 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -104731,8 +104794,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#update-an-issue-comment parameters: - - *512 - *513 + - *514 - *251 requestBody: required: true @@ -104755,9 +104818,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *707 examples: - default: *707 + default: *708 '422': *15 x-github: githubCloudOnly: false @@ -104775,8 +104838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#delete-an-issue-comment parameters: - - *512 - *513 + - *514 - *251 responses: '204': @@ -104805,15 +104868,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#pin-an-issue-comment parameters: - - *512 - *513 + - *514 - *251 responses: '200': description: Response content: application/json: - schema: *706 + schema: *707 examples: default: value: @@ -104886,8 +104949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#unpin-an-issue-comment parameters: - - *512 - *513 + - *514 - *251 responses: '204': @@ -104913,8 +104976,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *512 - *513 + - *514 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -104941,9 +105004,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *708 + default: *709 headers: Link: *48 '404': *6 @@ -104964,8 +105027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *512 - *513 + - *514 - *251 requestBody: required: true @@ -104998,16 +105061,16 @@ paths: description: Reaction exists content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '201': description: Reaction created content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '422': *15 x-github: githubCloudOnly: false @@ -105029,10 +105092,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *512 - *513 + - *514 - *251 - - *709 + - *710 responses: '204': description: Response @@ -105052,8 +105115,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events-for-a-repository parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -105063,7 +105126,7 @@ paths: application/json: schema: type: array - items: &716 + items: &717 title: Issue Event description: Issue Event type: object @@ -105106,9 +105169,9 @@ paths: description: Issues are a great way to keep track of tasks, enhancements, and bugs for your projects. type: object - properties: *710 - required: *711 - x-github-breaking-changes: *712 + properties: *711 + required: *712 + x-github-breaking-changes: *713 nullable: true label: title: Issue Event Label @@ -105217,7 +105280,7 @@ paths: required: - from - to - issue_type: &713 + issue_type: &714 title: Issue Type description: The type of issue. type: object @@ -105245,14 +105308,14 @@ paths: required: - id - name - prev_issue_type: *713 + prev_issue_type: *714 sub_issue: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: &714 + properties: &715 number: type: integer description: The number of the referenced issue. @@ -105290,7 +105353,7 @@ paths: - id - node_id - name - required: &715 + required: &716 - number - title - state @@ -105302,24 +105365,24 @@ paths: event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 blocked_by: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 blocking: title: Issue Reference description: A minimal reference to an issue linked from a timeline event (e.g. sub-issue, parent-issue, or dependency events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -105330,7 +105393,7 @@ paths: is disabled or the event type does not support intent. type: object nullable: true - properties: &721 + properties: &722 rationale: type: string description: The reasoning the agent provided for the change. @@ -105543,8 +105606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#get-an-issue-event parameters: - - *512 - *513 + - *514 - name: event_id in: path required: true @@ -105555,7 +105618,7 @@ paths: description: Response content: application/json: - schema: *716 + schema: *717 examples: default: value: @@ -105782,9 +105845,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue parameters: - - *512 - *513 - - &718 + - *514 + - &719 name: issue_number description: The number that identifies the issue. in: path @@ -105800,7 +105863,7 @@ paths: examples: default: summary: Issue - value: *717 + value: *718 pinned_comment: summary: Issue with pinned comment value: @@ -106005,7 +106068,7 @@ paths: - op: remove path: "/value/assignee" version: '2026-03-10' - '301': *518 + '301': *519 '404': *6 '410': *33 '304': *38 @@ -106032,9 +106095,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#update-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: false content: @@ -106386,11 +106449,11 @@ paths: - already_applied - issue_already_closed examples: - default: *717 + default: *718 '422': *15 '503': *204 '403': *29 - '301': *518 + '301': *519 '404': *6 '410': *33 x-github: @@ -106420,9 +106483,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: false content: @@ -106472,7 +106535,7 @@ paths: application/json: schema: *235 examples: - default: *717 + default: *718 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106488,9 +106551,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: content: application/json: @@ -106517,7 +106580,7 @@ paths: application/json: schema: *235 examples: - default: *717 + default: *718 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -106539,9 +106602,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/assignees#check-if-a-user-can-be-assigned-to-a-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 - name: assignee in: path required: true @@ -106581,9 +106644,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#list-issue-comments parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *242 - *17 - *19 @@ -106594,9 +106657,9 @@ paths: application/json: schema: type: array - items: *706 + items: *707 examples: - default: *719 + default: *720 headers: Link: *48 '404': *6 @@ -106629,9 +106692,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#create-an-issue-comment parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -106653,9 +106716,9 @@ paths: description: Response content: application/json: - schema: *706 + schema: *707 examples: - default: *707 + default: *708 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 @@ -106690,9 +106753,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocked-by parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *17 - *19 responses: @@ -106704,10 +106767,10 @@ paths: type: array items: *235 examples: - default: *720 + default: *721 headers: Link: *48 - '301': *518 + '301': *519 '404': *6 '410': *33 x-github: @@ -106737,9 +106800,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#add-a-dependency-an-issue-is-blocked-by parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -106763,13 +106826,13 @@ paths: application/json: schema: *235 examples: - default: *717 + default: *718 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/dependencies/blocked_by schema: type: string - '301': *518 + '301': *519 '403': *29 '410': *33 '422': *15 @@ -106802,9 +106865,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#remove-dependency-an-issue-is-blocked-by parameters: - - *512 - *513 - - *718 + - *514 + - *719 - name: issue_id in: path description: The id of the blocking issue to remove as a dependency @@ -106818,8 +106881,8 @@ paths: application/json: schema: *235 examples: - default: *717 - '301': *518 + default: *718 + '301': *519 '400': *14 '401': *25 '403': *29 @@ -106850,9 +106913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-dependencies#list-dependencies-an-issue-is-blocking parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *17 - *19 responses: @@ -106864,10 +106927,10 @@ paths: type: array items: *235 examples: - default: *720 + default: *721 headers: Link: *48 - '301': *518 + '301': *519 '404': *6 '410': *33 x-github: @@ -106886,9 +106949,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/events#list-issue-events parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *17 - *19 responses: @@ -106902,7 +106965,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &727 + - &728 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -106955,7 +107018,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - label - id @@ -106967,7 +107030,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &728 + - &729 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -107020,7 +107083,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - label - id @@ -107066,7 +107129,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - id - node_id @@ -107125,7 +107188,7 @@ paths: - performed_via_github_app - assignee - assigner - - &729 + - &730 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -107176,7 +107239,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &730 + - &731 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -107227,7 +107290,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &731 + - &732 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -107281,7 +107344,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &732 + - &733 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -107328,7 +107391,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &733 + - &734 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -107375,7 +107438,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &734 + - &735 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -107435,7 +107498,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &735 + - &736 title: Locked Issue Event description: Locked Issue Event type: object @@ -107483,7 +107546,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &736 + - &737 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -107549,7 +107612,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &737 + - &738 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -107615,7 +107678,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &738 + - &739 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -107681,7 +107744,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &739 + - &740 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -107737,7 +107800,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &744 + - &745 title: Issue Type Added Issue Event description: Issue Type Added Issue Event type: object @@ -107770,7 +107833,7 @@ paths: nullable: true properties: *230 required: *231 - issue_type: *713 + issue_type: *714 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -107781,7 +107844,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - issue_type - id @@ -107793,7 +107856,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &745 + - &746 title: Issue Type Removed Issue Event description: Issue Type Removed Issue Event type: object @@ -107826,7 +107889,7 @@ paths: nullable: true properties: *230 required: *231 - prev_issue_type: *713 + prev_issue_type: *714 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -107837,7 +107900,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - prev_issue_type - id @@ -107849,7 +107912,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &746 + - &747 title: Issue Type Changed Issue Event description: Issue Type Changed Issue Event type: object @@ -107882,8 +107945,8 @@ paths: nullable: true properties: *230 required: *231 - issue_type: *713 - prev_issue_type: *713 + issue_type: *714 + prev_issue_type: *714 intent: title: Issue Event Intent description: The intent behind an agent's action on an issue, @@ -107894,7 +107957,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - issue_type - prev_issue_type @@ -107907,7 +107970,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &747 + - &748 title: Sub-issue Added Issue Event description: Sub-issue Added Issue Event type: object @@ -107947,8 +108010,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - sub_issue - id @@ -107960,7 +108023,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &748 + - &749 title: Sub-issue Removed Issue Event description: Sub-issue Removed Issue Event type: object @@ -108000,8 +108063,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - sub_issue - id @@ -108013,7 +108076,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &749 + - &750 title: Parent-issue Added Issue Event description: Parent-issue Added Issue Event type: object @@ -108053,8 +108116,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - parent_issue - id @@ -108066,7 +108129,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &750 + - &751 title: Parent-issue Removed Issue Event description: Parent-issue Removed Issue Event type: object @@ -108106,8 +108169,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - parent_issue - id @@ -108119,7 +108182,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &751 + - &752 title: Blocked-by Added Issue Event description: Blocked-by Added Issue Event type: object @@ -108159,8 +108222,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - blocked_by - id @@ -108172,7 +108235,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &752 + - &753 title: Blocked-by Removed Issue Event description: Blocked-by Removed Issue Event type: object @@ -108212,8 +108275,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - blocked_by - id @@ -108225,7 +108288,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &753 + - &754 title: Blocking Added Issue Event description: Blocking Added Issue Event type: object @@ -108265,8 +108328,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - blocking - id @@ -108278,7 +108341,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &754 + - &755 title: Blocking Removed Issue Event description: Blocking Removed Issue Event type: object @@ -108318,8 +108381,8 @@ paths: events). type: object nullable: true - properties: *714 - required: *715 + properties: *715 + required: *716 required: - blocking - id @@ -108383,9 +108446,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#list-issue-field-values-for-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *17 - *19 responses: @@ -108395,9 +108458,9 @@ paths: application/json: schema: type: array - items: *722 + items: *723 examples: - default: &723 + default: &724 value: - issue_field_id: 1 issue_field_name: DRI @@ -108437,7 +108500,7 @@ paths: color: green headers: Link: *48 - '301': *518 + '301': *519 '404': *6 '410': *33 x-github: @@ -108468,9 +108531,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#add-issue-field-values-to-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -108540,9 +108603,9 @@ paths: type: array description: The current issue field values for this issue after adding the new values - items: *722 + items: *723 examples: - default: *723 + default: *724 '400': *14 '403': *29 '404': *6 @@ -108578,9 +108641,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#set-issue-field-values-for-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -108645,9 +108708,9 @@ paths: type: array description: The current issue field values for this issue after setting the new values - items: *722 + items: *723 examples: - default: *723 + default: *724 '400': *14 '403': *29 '404': *6 @@ -108678,10 +108741,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issue-field-values#delete-an-issue-field-value-from-an-issue parameters: - - *512 - *513 - - *718 - - *404 + - *514 + - *719 + - *405 responses: '204': description: Issue field value deleted successfully @@ -108706,9 +108769,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *17 - *19 responses: @@ -108720,7 +108783,7 @@ paths: type: array items: *234 examples: - default: &724 + default: &725 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -108738,7 +108801,7 @@ paths: default: false headers: Link: *48 - '301': *518 + '301': *519 '404': *6 '410': *33 x-github: @@ -108756,9 +108819,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#add-labels-to-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: false content: @@ -108838,8 +108901,8 @@ paths: type: array items: *234 examples: - default: *724 - '301': *518 + default: *725 + '301': *519 '404': *6 '410': *33 '422': *15 @@ -108858,9 +108921,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#set-labels-for-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: false content: @@ -108922,8 +108985,8 @@ paths: type: array items: *234 examples: - default: *724 - '301': *518 + default: *725 + '301': *519 '404': *6 '410': *33 '422': *15 @@ -108942,13 +109005,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 responses: '204': description: Response - '301': *518 + '301': *519 '404': *6 '410': *33 x-github: @@ -108969,9 +109032,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 - name: name in: path required: true @@ -108995,7 +109058,7 @@ paths: description: Something isn't working color: f29513 default: true - '301': *518 + '301': *519 '404': *6 '410': *33 x-github: @@ -109017,9 +109080,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#lock-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: false content: @@ -109065,9 +109128,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#unlock-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 responses: '204': description: Response @@ -109097,9 +109160,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#get-parent-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 responses: '200': description: Response @@ -109107,8 +109170,8 @@ paths: application/json: schema: *235 examples: - default: *717 - '301': *518 + default: *718 + '301': *519 '404': *6 '410': *33 x-github: @@ -109127,9 +109190,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to an issue. @@ -109155,9 +109218,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *708 + default: *709 headers: Link: *48 '404': *6 @@ -109179,9 +109242,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -109213,16 +109276,16 @@ paths: description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '201': description: Response content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '422': *15 x-github: githubCloudOnly: false @@ -109244,10 +109307,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *512 - *513 - - *718 - - *709 + - *514 + - *719 + - *710 responses: '204': description: Response @@ -109276,9 +109339,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#remove-sub-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -109302,7 +109365,7 @@ paths: application/json: schema: *235 examples: - default: *717 + default: *718 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -109335,9 +109398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#list-sub-issues parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *17 - *19 responses: @@ -109349,7 +109412,7 @@ paths: type: array items: *235 examples: - default: *720 + default: *721 headers: Link: *48 '404': *6 @@ -109381,9 +109444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#add-sub-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -109412,7 +109475,7 @@ paths: application/json: schema: *235 examples: - default: *717 + default: *718 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 @@ -109439,9 +109502,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 requestBody: required: true content: @@ -109474,7 +109537,7 @@ paths: application/json: schema: *235 examples: - default: *717 + default: *718 '403': *29 '404': *6 '422': *7 @@ -109503,9 +109566,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#list-issue-suggestions parameters: - - *512 - *513 - - *718 + - *514 + - *719 - name: state in: query required: false @@ -109542,7 +109605,7 @@ paths: application/json: schema: type: array - items: &725 + items: &726 title: Issue Suggestion description: An agent-proposed change to an issue that a maintainer can approve or dismiss. @@ -109694,9 +109757,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#approve-an-issue-suggestion parameters: - - *512 - *513 - - *718 + - *514 + - *719 - name: suggestion_id in: path required: true @@ -109708,9 +109771,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *726 examples: - default: &726 + default: &727 value: id: 12 issue_id: 4567 @@ -109748,9 +109811,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#dismiss-an-issue-suggestion parameters: - - *512 - *513 - - *718 + - *514 + - *719 - name: suggestion_id in: path required: true @@ -109762,9 +109825,9 @@ paths: description: Response content: application/json: - schema: *725 + schema: *726 examples: - default: *726 + default: *727 '403': *29 '404': *6 '422': *15 @@ -109784,9 +109847,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *512 - *513 - - *718 + - *514 + - *719 - *17 - *19 - name: exclude @@ -109807,7 +109870,6 @@ paths: description: Timeline Event type: object anyOf: - - *727 - *728 - *729 - *730 @@ -109820,6 +109882,7 @@ paths: - *737 - *738 - *739 + - *740 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -109880,15 +109943,15 @@ paths: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *740 - required: *741 + properties: *741 + required: *742 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *742 - required: *743 + properties: *743 + required: *744 nullable: true required: - event @@ -110143,7 +110206,7 @@ paths: type: string comments: type: array - items: &777 + items: &778 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -110358,7 +110421,7 @@ paths: type: string comments: type: array - items: *628 + items: *629 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -110402,7 +110465,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - id - node_id @@ -110503,7 +110566,7 @@ paths: feature is disabled or the event type does not support intent. type: object nullable: true - properties: *721 + properties: *722 required: - id - node_id @@ -110514,7 +110577,6 @@ paths: - commit_url - created_at - performed_via_github_app - - *744 - *745 - *746 - *747 @@ -110525,6 +110587,7 @@ paths: - *752 - *753 - *754 + - *755 examples: default: value: @@ -110698,8 +110761,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -110709,7 +110772,7 @@ paths: application/json: schema: type: array - items: &755 + items: &756 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -110775,8 +110838,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -110812,9 +110875,9 @@ paths: description: Response content: application/json: - schema: *755 + schema: *756 examples: - default: &756 + default: &757 value: id: 1 key: ssh-rsa AAA... @@ -110848,9 +110911,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *512 - *513 - - &757 + - *514 + - &758 name: key_id description: The unique identifier of the key. in: path @@ -110862,9 +110925,9 @@ paths: description: Response content: application/json: - schema: *755 + schema: *756 examples: - default: *756 + default: *757 '404': *6 x-github: githubCloudOnly: false @@ -110882,9 +110945,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *512 - *513 - - *757 + - *514 + - *758 responses: '204': description: Response @@ -110904,8 +110967,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-a-repository parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -110917,7 +110980,7 @@ paths: type: array items: *234 examples: - default: *724 + default: *725 headers: Link: *48 '404': *6 @@ -110938,8 +111001,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#create-a-label parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -110977,7 +111040,7 @@ paths: application/json: schema: *234 examples: - default: &758 + default: &759 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -111009,8 +111072,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#get-a-label parameters: - - *512 - *513 + - *514 - name: name in: path required: true @@ -111023,7 +111086,7 @@ paths: application/json: schema: *234 examples: - default: *758 + default: *759 '404': *6 x-github: githubCloudOnly: false @@ -111040,8 +111103,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#update-a-label parameters: - - *512 - *513 + - *514 - name: name in: path required: true @@ -111106,8 +111169,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#delete-a-label parameters: - - *512 - *513 + - *514 - name: name in: path required: true @@ -111133,8 +111196,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-languages parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -111170,8 +111233,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *512 - *513 + - *514 responses: '202': *40 '403': @@ -111199,8 +111262,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -111226,9 +111289,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *512 - *513 - - *601 + - *514 + - *602 responses: '200': description: Response @@ -111373,8 +111436,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -111439,8 +111502,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/branches/branches#merge-a-branch parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -111474,9 +111537,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *631 + schema: *632 examples: - default: *759 + default: *760 '204': description: Response when already merged '404': @@ -111501,8 +111564,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#list-milestones parameters: - - *512 - *513 + - *514 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -111543,12 +111606,12 @@ paths: application/json: schema: type: array - items: &760 + items: &761 title: Milestone description: A collection of related issues and pull requests. type: object - properties: *440 - required: *441 + properties: *441 + required: *442 examples: default: value: @@ -111604,8 +111667,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#create-a-milestone parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -111645,9 +111708,9 @@ paths: description: Response content: application/json: - schema: *760 + schema: *761 examples: - default: &761 + default: &762 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -111706,9 +111769,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#get-a-milestone parameters: - - *512 - *513 - - &762 + - *514 + - &763 name: milestone_number description: The number that identifies the milestone. in: path @@ -111720,9 +111783,9 @@ paths: description: Response content: application/json: - schema: *760 + schema: *761 examples: - default: *761 + default: *762 '404': *6 x-github: githubCloudOnly: false @@ -111739,9 +111802,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#update-a-milestone parameters: - - *512 - *513 - - *762 + - *514 + - *763 requestBody: required: false content: @@ -111779,9 +111842,9 @@ paths: description: Response content: application/json: - schema: *760 + schema: *761 examples: - default: *761 + default: *762 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -111797,9 +111860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/milestones#delete-a-milestone parameters: - - *512 - *513 - - *762 + - *514 + - *763 responses: '204': description: Response @@ -111820,9 +111883,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *512 - *513 - - *762 + - *514 + - *763 - *17 - *19 responses: @@ -111834,7 +111897,7 @@ paths: type: array items: *234 examples: - default: *724 + default: *725 headers: Link: *48 x-github: @@ -111853,12 +111916,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *512 - *513 - - *763 + - *514 - *764 - - *242 - *765 + - *242 + - *766 - *17 - *19 responses: @@ -111870,7 +111933,7 @@ paths: type: array items: *262 examples: - default: *766 + default: *767 headers: Link: *48 x-github: @@ -111894,8 +111957,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *512 - *513 + - *514 requestBody: required: false content: @@ -111953,14 +112016,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-apiname-pages-site parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: &767 + schema: &768 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -112085,7 +112148,7 @@ paths: - custom_404 - public examples: - default: &768 + default: &769 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -112126,8 +112189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-apiname-pages-site parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -112181,9 +112244,9 @@ paths: description: Response content: application/json: - schema: *767 + schema: *768 examples: - default: *768 + default: *769 '422': *15 '409': *122 x-github: @@ -112206,8 +112269,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -112314,8 +112377,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -112341,8 +112404,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#list-apiname-pages-builds parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -112352,7 +112415,7 @@ paths: application/json: schema: type: array - items: &769 + items: &770 title: Page Build description: Page Build type: object @@ -112446,8 +112509,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#request-a-apiname-pages-build parameters: - - *512 - *513 + - *514 responses: '201': description: Response @@ -112492,16 +112555,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-latest-pages-build parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: *769 + schema: *770 examples: - default: &770 + default: &771 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -112549,8 +112612,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-apiname-pages-build parameters: - - *512 - *513 + - *514 - name: build_id in: path required: true @@ -112561,9 +112624,9 @@ paths: description: Response content: application/json: - schema: *769 + schema: *770 examples: - default: *770 + default: *771 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -112583,8 +112646,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#create-a-github-pages-deployment parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -112689,9 +112752,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *512 - *513 - - &771 + - *514 + - &772 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -112749,9 +112812,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *512 - *513 - - *771 + - *514 + - *772 responses: '204': *129 '404': *6 @@ -112778,8 +112841,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -113037,8 +113100,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-private-vulnerability-reporting-is-enabled-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Private vulnerability reporting status @@ -113075,8 +113138,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': *129 '422': *14 @@ -113097,8 +113160,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': *129 '422': *14 @@ -113120,8 +113183,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -113131,7 +113194,7 @@ paths: type: array items: *164 examples: - default: *772 + default: *773 '403': *29 '404': *6 x-github: @@ -113153,8 +113216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/custom-properties#create-or-update-custom-property-values-for-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -113170,7 +113233,7 @@ paths: required: - properties examples: - default: *773 + default: *774 responses: '204': description: No Content when custom property values are successfully created @@ -113208,8 +113271,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests parameters: - - *512 - *513 + - *514 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -113269,9 +113332,9 @@ paths: application/json: schema: type: array - items: *593 + items: *594 examples: - default: *774 + default: *775 headers: Link: *48 '304': *38 @@ -113303,8 +113366,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#create-a-pull-request parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -113369,7 +113432,7 @@ paths: description: Response content: application/json: - schema: &779 + schema: &780 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -113480,8 +113543,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *440 - required: *441 + properties: *441 + required: *442 nullable: true active_lock_reason: type: string @@ -113524,7 +113587,7 @@ paths: items: *4 requested_teams: type: array - items: *496 + items: *497 head: type: object properties: @@ -113562,14 +113625,14 @@ paths: _links: type: object properties: - comments: *442 - commits: *442 - statuses: *442 - html: *442 - issue: *442 - review_comments: *442 - review_comment: *442 - self: *442 + comments: *443 + commits: *443 + statuses: *443 + html: *443 + issue: *443 + review_comments: *443 + review_comment: *443 + self: *443 required: - comments - commits @@ -113580,8 +113643,8 @@ paths: - review_comment - self author_association: *232 - auto_merge: *775 - stack: *776 + auto_merge: *776 + stack: *777 draft: description: Indicates whether or not the pull request is a draft. example: false @@ -113767,7 +113830,7 @@ paths: - review_comments version: '2026-03-10' examples: - default: &780 + default: &781 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -114305,8 +114368,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *512 - *513 + - *514 - name: sort in: query required: false @@ -114335,9 +114398,9 @@ paths: application/json: schema: type: array - items: *777 + items: *778 examples: - default: &782 + default: &783 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -114414,17 +114477,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *512 - *513 + - *514 - *251 responses: '200': description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: &778 + default: &779 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -114499,8 +114562,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *512 - *513 + - *514 - *251 requestBody: required: true @@ -114523,9 +114586,9 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: - default: *778 + default: *779 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -114541,8 +114604,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *512 - *513 + - *514 - *251 responses: '204': @@ -114564,8 +114627,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *512 - *513 + - *514 - *251 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). @@ -114592,9 +114655,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *708 + default: *709 headers: Link: *48 '404': *6 @@ -114615,8 +114678,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *512 - *513 + - *514 - *251 requestBody: required: true @@ -114649,16 +114712,16 @@ paths: description: Reaction exists content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '201': description: Reaction created content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '422': *15 x-github: githubCloudOnly: false @@ -114680,10 +114743,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *512 - *513 + - *514 - *251 - - *709 + - *710 responses: '204': description: Response @@ -114726,9 +114789,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#get-a-pull-request parameters: - - *512 - *513 - - &781 + - *514 + - &782 name: pull_number description: The number that identifies the pull request. in: path @@ -114741,9 +114804,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *779 + schema: *780 examples: - default: *780 + default: *781 '304': *38 '404': *6 '406': @@ -114778,9 +114841,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: false content: @@ -114822,9 +114885,9 @@ paths: description: Response content: application/json: - schema: *779 + schema: *780 examples: - default: *780 + default: *781 '422': *15 '403': *29 x-github: @@ -114846,9 +114909,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: true content: @@ -114908,17 +114971,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '401': *25 '403': *29 '404': *6 @@ -114948,9 +115011,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 - *259 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -114971,9 +115034,9 @@ paths: application/json: schema: type: array - items: *777 + items: *778 examples: - default: *782 + default: *783 headers: Link: *48 x-github: @@ -115006,9 +115069,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: true content: @@ -115113,7 +115176,7 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: example-for-a-multi-line-comment: value: @@ -115201,9 +115264,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *512 - *513 - - *781 + - *514 + - *782 - *251 requestBody: required: true @@ -115226,7 +115289,7 @@ paths: description: Response content: application/json: - schema: *777 + schema: *778 examples: default: value: @@ -115312,9 +115375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 - *17 - *19 responses: @@ -115324,9 +115387,9 @@ paths: application/json: schema: type: array - items: *631 + items: *632 examples: - default: *783 + default: *784 headers: Link: *48 x-github: @@ -115356,9 +115419,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#list-pull-requests-files parameters: - - *512 - *513 - - *781 + - *514 + - *782 - *17 - *19 responses: @@ -115368,7 +115431,7 @@ paths: application/json: schema: type: array - items: *643 + items: *644 examples: default: value: @@ -115406,9 +115469,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *512 - *513 - - *781 + - *514 + - *782 responses: '204': description: Response if pull request has been merged @@ -115431,9 +115494,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#merge-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: false content: @@ -115555,9 +115618,9 @@ paths: category: pulls subcategory: pulls parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: false content: @@ -115609,7 +115672,7 @@ paths: description: if the merge request was accepted and will run in the background content: application/json: - schema: &784 + schema: &785 title: Pull Request Merge Async Result description: Pull Request Merge Async Result type: object @@ -115694,7 +115757,7 @@ paths: merge queue content: application/json: - schema: *784 + schema: *785 examples: response-if-pull-request-was-already-merged: summary: Already merged @@ -115714,7 +115777,7 @@ paths: this pull request content: application/json: - schema: *784 + schema: *785 examples: response-if-a-merge-request-already-exists: value: @@ -115730,7 +115793,7 @@ paths: it is closed content: application/json: - schema: *784 + schema: *785 examples: response-if-pull-request-is-not-ready-to-be-merged: value: @@ -115762,9 +115825,9 @@ paths: category: pulls subcategory: pulls parameters: - - *512 - *513 - - *781 + - *514 + - *782 - name: uuid description: The UUID of the asynchronous merge request, as returned when the merge was requested. @@ -115777,7 +115840,7 @@ paths: description: the current result of the asynchronous merge request content: application/json: - schema: *784 + schema: *785 examples: response-if-the-merge-is-still-queued: summary: Still queued @@ -115825,9 +115888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 responses: '200': description: Response @@ -115902,9 +115965,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: false content: @@ -115941,7 +116004,7 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: default: value: @@ -116477,9 +116540,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: true content: @@ -116513,7 +116576,7 @@ paths: description: Response content: application/json: - schema: *593 + schema: *594 examples: default: value: @@ -117029,9 +117092,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 - *17 - *19 responses: @@ -117041,7 +117104,7 @@ paths: application/json: schema: type: array - items: &785 + items: &786 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -117192,9 +117255,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: false content: @@ -117280,9 +117343,9 @@ paths: description: Response content: application/json: - schema: *785 + schema: *786 examples: - default: &787 + default: &788 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -117345,10 +117408,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *512 - *513 - - *781 - - &786 + - *514 + - *782 + - &787 name: review_id description: The unique identifier of the review. in: path @@ -117360,9 +117423,9 @@ paths: description: Response content: application/json: - schema: *785 + schema: *786 examples: - default: &788 + default: &789 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -117421,10 +117484,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *512 - *513 - - *781 - - *786 + - *514 + - *782 + - *787 requestBody: required: true content: @@ -117447,7 +117510,7 @@ paths: description: Response content: application/json: - schema: *785 + schema: *786 examples: default: value: @@ -117509,18 +117572,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *512 - *513 - - *781 - - *786 + - *514 + - *782 + - *787 responses: '200': description: Response content: application/json: - schema: *785 + schema: *786 examples: - default: *787 + default: *788 '422': *7 '404': *6 x-github: @@ -117547,10 +117610,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *512 - *513 - - *781 - - *786 + - *514 + - *782 + - *787 - *17 - *19 responses: @@ -117633,9 +117696,9 @@ paths: _links: type: object properties: - self: *442 - html: *442 - pull_request: *442 + self: *443 + html: *443 + pull_request: *443 required: - self - html @@ -117785,10 +117848,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *512 - *513 - - *781 - - *786 + - *514 + - *782 + - *787 requestBody: required: true content: @@ -117816,7 +117879,7 @@ paths: description: Response content: application/json: - schema: *785 + schema: *786 examples: default: value: @@ -117879,10 +117942,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *512 - *513 - - *781 - - *786 + - *514 + - *782 + - *787 requestBody: required: true content: @@ -117917,9 +117980,9 @@ paths: description: Response content: application/json: - schema: *785 + schema: *786 examples: - default: *788 + default: *789 '404': *6 '422': *7 '403': *29 @@ -117941,9 +118004,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *512 - *513 - - *781 + - *514 + - *782 requestBody: required: false content: @@ -118006,8 +118069,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme parameters: - - *512 - *513 + - *514 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -118020,9 +118083,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: &790 + default: &791 value: type: file encoding: base64 @@ -118064,8 +118127,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *512 - *513 + - *514 - name: dir description: The alternate path to look for a README file in: path @@ -118085,9 +118148,9 @@ paths: description: Response content: application/json: - schema: *789 + schema: *790 examples: - default: *790 + default: *791 '404': *6 '422': *15 x-github: @@ -118109,8 +118172,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#list-releases parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -118120,7 +118183,7 @@ paths: application/json: schema: type: array - items: *791 + items: *792 examples: default: value: @@ -118219,8 +118282,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#create-a-release parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -118296,9 +118359,9 @@ paths: description: Response content: application/json: - schema: *791 + schema: *792 examples: - default: &795 + default: &796 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -118403,9 +118466,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#get-a-release-asset parameters: - - *512 - *513 - - &793 + - *514 + - &794 name: asset_id description: The unique identifier of the asset. in: path @@ -118417,9 +118480,9 @@ paths: description: Response content: application/json: - schema: *792 + schema: *793 examples: - default: &794 + default: &795 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 @@ -118454,7 +118517,7 @@ paths: type: User site_admin: false '404': *6 - '302': *647 + '302': *648 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -118470,9 +118533,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#update-a-release-asset parameters: - - *512 - *513 - - *793 + - *514 + - *794 requestBody: required: false content: @@ -118500,9 +118563,9 @@ paths: description: Response content: application/json: - schema: *792 + schema: *793 examples: - default: *794 + default: *795 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -118518,9 +118581,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#delete-a-release-asset parameters: - - *512 - *513 - - *793 + - *514 + - *794 responses: '204': description: Response @@ -118545,8 +118608,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -118631,16 +118694,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-the-latest-release parameters: - - *512 - *513 + - *514 responses: '200': description: Response content: application/json: - schema: *791 + schema: *792 examples: - default: *795 + default: *796 '404': *6 x-github: githubCloudOnly: false @@ -118658,8 +118721,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release-by-tag-name parameters: - - *512 - *513 + - *514 - name: tag description: tag parameter in: path @@ -118672,9 +118735,9 @@ paths: description: Response content: application/json: - schema: *791 + schema: *792 examples: - default: *795 + default: *796 '404': *6 x-github: githubCloudOnly: false @@ -118696,9 +118759,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#get-a-release parameters: - - *512 - *513 - - &796 + - *514 + - &797 name: release_id description: The unique identifier of the release. in: path @@ -118712,9 +118775,9 @@ paths: For more information, see "[Getting started with the REST API](https://docs.github.com/enterprise-cloud@latest/rest/using-the-rest-api/getting-started-with-the-rest-api#hypermedia)."' content: application/json: - schema: *791 + schema: *792 examples: - default: *795 + default: *796 '401': description: Unauthorized x-github: @@ -118738,9 +118801,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#update-a-release parameters: - - *512 - *513 - - *796 + - *514 + - *797 requestBody: required: false content: @@ -118804,9 +118867,9 @@ paths: description: Response content: application/json: - schema: *791 + schema: *792 examples: - default: *795 + default: *796 '404': description: Not Found if the discussion category name is invalid content: @@ -118827,9 +118890,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/releases#delete-a-release parameters: - - *512 - *513 - - *796 + - *514 + - *797 responses: '204': description: Response @@ -118850,9 +118913,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/releases/assets#list-release-assets parameters: - - *512 - *513 - - *796 + - *514 + - *797 - *17 - *19 responses: @@ -118862,7 +118925,7 @@ paths: application/json: schema: type: array - items: *792 + items: *793 examples: default: value: @@ -118944,9 +119007,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: - - *512 - *513 - - *796 + - *514 + - *797 - name: name in: query required: true @@ -118972,7 +119035,7 @@ paths: description: Response for successful upload content: application/json: - schema: *792 + schema: *793 examples: response-for-successful-upload: value: @@ -119027,9 +119090,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *512 - *513 - - *796 + - *514 + - *797 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a release. @@ -119053,9 +119116,9 @@ paths: application/json: schema: type: array - items: *629 + items: *630 examples: - default: *708 + default: *709 headers: Link: *48 '404': *6 @@ -119076,9 +119139,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *512 - *513 - - *796 + - *514 + - *797 requestBody: required: true content: @@ -119108,16 +119171,16 @@ paths: description: Reaction exists content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '201': description: Reaction created content: application/json: - schema: *629 + schema: *630 examples: - default: *630 + default: *631 '422': *15 x-github: githubCloudOnly: false @@ -119139,10 +119202,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/reactions/reactions#delete-a-release-reaction parameters: - - *512 - *513 - - *796 - - *709 + - *514 + - *797 + - *710 responses: '204': description: Response @@ -119166,9 +119229,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-rules-for-a-branch parameters: - - *512 - *513 - - *564 + - *514 + - *565 - *17 - *19 responses: @@ -119185,7 +119248,7 @@ paths: oneOf: - allOf: - *178 - - &797 + - &798 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -119206,70 +119269,70 @@ paths: description: The ID of the ruleset that includes this rule. - allOf: - *179 - - *797 + - *798 - allOf: - *180 - - *797 + - *798 - allOf: - *181 - - *797 + - *798 - allOf: + - *799 - *798 - - *797 - allOf: - *182 - - *797 + - *798 - allOf: - *183 - - *797 + - *798 - allOf: - *184 - - *797 + - *798 - allOf: - *185 - - *797 + - *798 - allOf: - *186 - - *797 + - *798 - allOf: - *187 - - *797 + - *798 - allOf: - *188 - - *797 + - *798 - allOf: - *189 - - *797 + - *798 - allOf: - *190 - - *797 + - *798 - allOf: - *191 - - *797 + - *798 - allOf: - *192 - - *797 + - *798 - allOf: - *193 - - *797 + - *798 - allOf: - *194 - - *797 + - *798 - allOf: - - *799 - - *797 + - *800 + - *798 - allOf: - *195 - - *797 + - *798 - allOf: - *196 - - *797 + - *798 - allOf: - *197 - - *797 + - *798 - allOf: - *198 - - *797 + - *798 examples: default: value: @@ -119308,8 +119371,8 @@ paths: category: repos subcategory: rules parameters: - - *512 - *513 + - *514 - *17 - *19 - name: includes_parents @@ -119320,7 +119383,7 @@ paths: schema: type: boolean default: true - - *800 + - *801 responses: '200': description: Response @@ -119375,8 +119438,8 @@ paths: category: repos subcategory: rules parameters: - - *512 - *513 + - *514 requestBody: description: Request body required: true @@ -119405,7 +119468,7 @@ paths: rules: type: array description: An array of rules within the ruleset. - items: *801 + items: *802 required: - name - enforcement @@ -119438,7 +119501,7 @@ paths: application/json: schema: *199 examples: - default: &811 + default: &812 value: id: 42 name: super cool ruleset @@ -119486,13 +119549,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *512 - *513 - - *802 - - *108 + - *514 - *803 + - *108 - *804 - *805 + - *806 - *17 - *19 responses: @@ -119500,9 +119563,9 @@ paths: description: Response content: application/json: - schema: *806 + schema: *807 examples: - default: *807 + default: *808 '404': *6 '500': *41 x-github: @@ -119523,17 +119586,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *512 - *513 - - *808 + - *514 + - *809 responses: '200': description: Response content: application/json: - schema: *809 + schema: *810 examples: - default: *810 + default: *811 '404': *6 '500': *41 x-github: @@ -119561,8 +119624,8 @@ paths: category: repos subcategory: rules parameters: - - *512 - *513 + - *514 - name: ruleset_id description: The ID of the ruleset. in: path @@ -119584,7 +119647,7 @@ paths: application/json: schema: *199 examples: - default: *811 + default: *812 '404': *6 '500': *41 put: @@ -119602,8 +119665,8 @@ paths: category: repos subcategory: rules parameters: - - *512 - *513 + - *514 - name: ruleset_id description: The ID of the ruleset. in: path @@ -119637,7 +119700,7 @@ paths: rules: description: An array of rules within the ruleset. type: array - items: *801 + items: *802 examples: default: value: @@ -119667,7 +119730,7 @@ paths: application/json: schema: *199 examples: - default: *811 + default: *812 '404': *6 '422': *15 '500': *41 @@ -119686,8 +119749,8 @@ paths: category: repos subcategory: rules parameters: - - *512 - *513 + - *514 - name: ruleset_id description: The ID of the ruleset. in: path @@ -119710,8 +119773,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-history parameters: - - *512 - *513 + - *514 - *17 - *19 - name: ruleset_id @@ -119729,7 +119792,7 @@ paths: type: array items: *203 examples: - default: *461 + default: *462 '404': *6 '500': *41 x-github: @@ -119748,8 +119811,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/rules#get-repository-ruleset-version parameters: - - *512 - *513 + - *514 - name: ruleset_id description: The ID of the ruleset. in: path @@ -119767,7 +119830,7 @@ paths: description: Response content: application/json: - schema: *462 + schema: *463 examples: default: value: @@ -119822,9 +119885,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *512 - *513 - - *463 + - *514 - *464 - *465 - *466 @@ -119832,18 +119894,19 @@ paths: - *468 - *469 - *470 + - *471 - *113 - *19 - *17 - - *812 - *813 - - *471 + - *814 - *472 - *473 - *474 - *475 - *476 - *477 + - *478 responses: '200': description: Response @@ -119870,8 +119933,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *814 - resolution: *815 + state: *815 + resolution: *816 resolved_at: type: string format: date-time @@ -119977,7 +120040,7 @@ paths: pull request. ' - oneOf: *816 + oneOf: *817 nullable: true has_more_locations: type: boolean @@ -120141,16 +120204,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *512 - *513 - - *595 - - *474 + - *514 + - *596 + - *475 responses: '200': description: Response content: application/json: - schema: &817 + schema: &818 type: object properties: number: *136 @@ -120168,8 +120231,8 @@ paths: type: string format: uri description: The REST API URL of the code locations for this alert. - state: *814 - resolution: *815 + state: *815 + resolution: *816 resolved_at: type: string format: date-time @@ -120275,7 +120338,7 @@ paths: pull request. ' - oneOf: *816 + oneOf: *817 nullable: true has_more_locations: type: boolean @@ -120303,7 +120366,7 @@ paths: properties: *20 required: *21 nullable: true - metadata: &1008 + metadata: &1009 type: array description: A list of metadata key/value pairs associated with the secret scanning alert. @@ -120376,9 +120439,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *512 - *513 - - *595 + - *514 + - *596 requestBody: required: true content: @@ -120386,8 +120449,8 @@ paths: schema: type: object properties: - state: *814 - resolution: *815 + state: *815 + resolution: *816 resolution_comment: description: An optional comment when closing or reopening an alert. Cannot be updated or deleted. @@ -120431,7 +120494,7 @@ paths: description: Response content: application/json: - schema: *817 + schema: *818 examples: default: value: @@ -120533,9 +120596,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *512 - *513 - - *595 + - *514 + - *596 - *19 - *17 responses: @@ -120546,7 +120609,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &1010 + items: &1011 type: object properties: type: @@ -120572,7 +120635,6 @@ paths: example: commit details: oneOf: - - *818 - *819 - *820 - *821 @@ -120585,6 +120647,7 @@ paths: - *828 - *829 - *830 + - *831 examples: default: value: @@ -120673,11 +120736,11 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *512 - *513 - - *480 + - *514 - *481 - *482 + - *483 - *113 - *19 - *17 @@ -120690,7 +120753,7 @@ paths: type: array items: *205 examples: - default: *483 + default: *484 headers: Link: *48 '403': *29 @@ -120713,8 +120776,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -120727,9 +120790,9 @@ paths: patterns: type: array description: The list of custom patterns to create. - items: *484 + items: *485 examples: - default: *485 + default: *486 responses: '201': description: All patterns created successfully. @@ -120743,7 +120806,7 @@ paths: description: The list of successfully created custom patterns. items: *205 examples: - default: *486 + default: *487 '400': *14 '403': *29 '404': *6 @@ -120767,7 +120830,7 @@ paths: errors: type: array description: List of validation errors for this pattern. - items: *487 + items: *488 delete: summary: Bulk delete repository custom patterns description: |- @@ -120786,8 +120849,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -120801,7 +120864,7 @@ paths: type: array description: The list of custom patterns to delete. maxItems: 500 - items: *488 + items: *489 post_delete_action: type: string description: |- @@ -120814,7 +120877,7 @@ paths: - resolve_alerts default: delete_alerts examples: - default: *489 + default: *490 responses: '204': description: All patterns deleted successfully. @@ -120841,8 +120904,8 @@ paths: category: secret-scanning subcategory: custom-patterns parameters: - - *512 - *513 + - *514 - name: pattern_id in: path required: true @@ -120853,9 +120916,9 @@ paths: required: true content: application/json: - schema: *490 + schema: *491 examples: - default: *491 + default: *492 responses: '200': description: Pattern updated successfully. @@ -120863,7 +120926,7 @@ paths: application/json: schema: *205 examples: - default: *492 + default: *493 '400': *14 '403': *29 '404': *6 @@ -120885,8 +120948,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -120894,14 +120957,14 @@ paths: schema: type: object properties: - reason: &832 + reason: &833 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *831 + placeholder_id: *832 required: - reason - placeholder_id @@ -120918,7 +120981,7 @@ paths: schema: type: object properties: - reason: *832 + reason: *833 expire_at: type: string format: date-time @@ -120964,8 +121027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/secret-scanning/secret-scanning#get-secret-scanning-scan-history-for-a-repository parameters: - - *512 - *513 + - *514 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -120980,7 +121043,7 @@ paths: properties: incremental_scans: type: array - items: &833 + items: &834 description: Information on a single scan performed by secret scanning on the repository type: object @@ -121011,15 +121074,15 @@ paths: nullable: true pattern_update_scans: type: array - items: *833 + items: *834 backfill_scans: type: array - items: *833 + items: *834 custom_pattern_backfill_scans: type: array items: allOf: - - *833 + - *834 - type: object properties: pattern_name: @@ -121032,7 +121095,7 @@ paths: one of "repository", "organization", or "enterprise" generic_secrets_backfill_scans: type: array - items: *833 + items: *834 examples: default: value: @@ -121097,8 +121160,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *512 - *513 + - *514 - *113 - name: sort description: The property to sort the results by. @@ -121142,9 +121205,9 @@ paths: application/json: schema: type: array - items: *834 + items: *835 examples: - default: *835 + default: *836 '400': *14 '404': *6 x-github: @@ -121167,8 +121230,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -121241,7 +121304,7 @@ paths: login: type: string description: The username of the user credited. - type: *495 + type: *496 required: - login - type @@ -121328,9 +121391,9 @@ paths: description: Response content: application/json: - schema: *834 + schema: *835 examples: - default: &837 + default: &838 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -121569,8 +121632,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -121674,7 +121737,7 @@ paths: description: Response content: application/json: - schema: *834 + schema: *835 examples: default: value: @@ -121827,17 +121890,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *512 - *513 - - *836 + - *514 + - *837 responses: '200': description: Response content: application/json: - schema: *834 + schema: *835 examples: - default: *837 + default: *838 '403': *29 '404': *6 x-github: @@ -121861,9 +121924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *512 - *513 - - *836 + - *514 + - *837 requestBody: required: true content: @@ -121936,7 +121999,7 @@ paths: login: type: string description: The username of the user credited. - type: *495 + type: *496 required: - login - type @@ -122022,10 +122085,10 @@ paths: description: Response content: application/json: - schema: *834 + schema: *835 examples: - default: *837 - add_credit: *837 + default: *838 + add_credit: *838 '403': *29 '404': *6 '422': @@ -122063,9 +122126,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#request-a-cve-for-a-repository-security-advisory parameters: - - *512 - *513 - - *836 + - *514 + - *837 responses: '202': *40 '400': *14 @@ -122092,17 +122155,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *512 - *513 - - *836 + - *514 + - *837 responses: '202': description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *519 + default: *520 '400': *14 '422': *15 '403': *29 @@ -122123,8 +122186,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#list-pull-request-stacks parameters: - - *512 - *513 + - *514 - name: pull_request description: Filter to the stack containing this repository pull request number. in: query @@ -122256,8 +122319,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#create-a-pull-request-stack parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -122324,7 +122387,7 @@ paths: format: date-time pull_requests: type: array - items: &838 + items: &839 title: Pull Request Stack Pull Request type: object allOf: @@ -122550,8 +122613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#get-a-pull-request-stack parameters: - - *512 - *513 + - *514 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -122600,7 +122663,7 @@ paths: format: date-time pull_requests: type: array - items: *838 + items: *839 examples: default: value: @@ -122720,8 +122783,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#add-pull-requests-to-a-pull-request-stack parameters: - - *512 - *513 + - *514 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -122793,7 +122856,7 @@ paths: format: date-time pull_requests: type: array - items: *838 + items: *839 examples: default: value: @@ -122997,8 +123060,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/pulls/stacks#remove-pull-requests-from-a-pull-request-stack parameters: - - *512 - *513 + - *514 - name: stack_number description: The number that identifies the pull request stack. in: path @@ -123047,7 +123110,7 @@ paths: format: date-time pull_requests: type: array - items: *838 + items: *839 examples: default: value: @@ -123153,8 +123216,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-stargazers parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -123253,8 +123316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *512 - *513 + - *514 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -123263,7 +123326,7 @@ paths: application/json: schema: type: array - items: &839 + items: &840 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -123296,8 +123359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -123373,8 +123436,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -123470,8 +123533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *512 - *513 + - *514 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -123625,8 +123688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *512 - *513 + - *514 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -123636,7 +123699,7 @@ paths: application/json: schema: type: array - items: *839 + items: *840 examples: default: value: @@ -123669,8 +123732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/commits/statuses#create-a-commit-status parameters: - - *512 - *513 + - *514 - name: sha in: path required: true @@ -123724,7 +123787,7 @@ paths: description: Response content: application/json: - schema: *840 + schema: *841 examples: default: value: @@ -123778,8 +123841,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#list-watchers parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -123811,14 +123874,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#get-a-repository-subscription parameters: - - *512 - *513 + - *514 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &841 + schema: &842 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -123886,8 +123949,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#set-a-repository-subscription parameters: - - *512 - *513 + - *514 requestBody: required: false content: @@ -123913,7 +123976,7 @@ paths: description: Response content: application/json: - schema: *841 + schema: *842 examples: default: value: @@ -123940,8 +124003,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/watching#delete-a-repository-subscription parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -123961,8 +124024,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-tags parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -124041,8 +124104,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *512 - *513 + - *514 - name: ref in: path required: true @@ -124078,8 +124141,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#list-repository-teams parameters: - - *512 - *513 + - *514 - *17 - *19 responses: @@ -124091,7 +124154,7 @@ paths: type: array items: *329 examples: - default: *420 + default: *421 headers: Link: *48 '404': *6 @@ -124111,8 +124174,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-all-repository-topics parameters: - - *512 - *513 + - *514 - *19 - *17 responses: @@ -124120,7 +124183,7 @@ paths: description: Response content: application/json: - schema: &842 + schema: &843 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -124132,7 +124195,7 @@ paths: required: - names examples: - default: &843 + default: &844 value: names: - octocat @@ -124155,8 +124218,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#replace-all-repository-topics parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -124187,9 +124250,9 @@ paths: description: Response content: application/json: - schema: *842 + schema: *843 examples: - default: *843 + default: *844 '404': *6 '422': *7 x-github: @@ -124210,9 +124273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-repository-clones parameters: - - *512 - *513 - - &844 + - *514 + - &845 name: per description: The time frame to display results for. in: query @@ -124241,7 +124304,7 @@ paths: example: 128 clones: type: array - items: &845 + items: &846 title: Traffic type: object properties: @@ -124328,8 +124391,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-paths parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -124419,8 +124482,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-top-referral-sources parameters: - - *512 - *513 + - *514 responses: '200': description: Response @@ -124480,9 +124543,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/metrics/traffic#get-page-views parameters: - - *512 - *513 - - *844 + - *514 + - *845 responses: '200': description: Response @@ -124501,7 +124564,7 @@ paths: example: 3782 views: type: array - items: *845 + items: *846 required: - uniques - count @@ -124578,8 +124641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#transfer-a-repository parameters: - - *512 - *513 + - *514 requestBody: required: true content: @@ -124859,8 +124922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *512 - *513 + - *514 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -124883,8 +124946,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#enable-vulnerability-alerts parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -124906,8 +124969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#disable-vulnerability-alerts parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -124933,8 +124996,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *512 - *513 + - *514 - name: ref in: path required: true @@ -125026,9 +125089,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *519 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -125179,7 +125242,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &853 + - &854 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -125188,7 +125251,7 @@ paths: schema: type: string example: members - - &858 + - &859 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -125199,7 +125262,7 @@ paths: default: 1 format: int32 example: 1 - - &859 + - &860 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -125241,7 +125304,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &848 + items: &849 allOf: - type: object required: @@ -125316,7 +125379,7 @@ paths: - value: 0db508eb-91e2-46e4-809c-30dcbda0c685 "$+ref": https://api.github.localhost/scim/v2/Users/0db508eb-91e2-46e4-809c-30dcbda0c685 displayName: User 2 - meta: &860 + meta: &861 type: object description: The metadata associated with the creation/updates to the user. @@ -125376,30 +125439,30 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &849 + '400': &850 description: Bad request content: application/json: - schema: *846 + schema: *847 application/scim+json: - schema: *846 - '401': *847 - '403': &850 + schema: *847 + '401': *848 + '403': &851 description: Permission denied - '429': &851 + '429': &852 description: Too many requests content: application/json: - schema: *846 + schema: *847 application/scim+json: - schema: *846 - '500': &852 + schema: *847 + '500': &853 description: Internal server error content: application/json: - schema: *846 + schema: *847 application/scim+json: - schema: *846 + schema: *847 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125423,7 +125486,7 @@ paths: required: true content: application/json: - schema: &856 + schema: &857 type: object required: - schemas @@ -125483,9 +125546,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *848 + schema: *849 examples: - group: &854 + group: &855 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -125504,13 +125567,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 - '400': *849 - '401': *847 - '403': *850 - '409': &857 + '400': *850 + '401': *848 + '403': *851 + '409': &858 description: Duplicate record detected - '429': *851 - '500': *852 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125527,7 +125590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-group parameters: - - &855 + - &856 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -125535,22 +125598,22 @@ paths: schema: type: string example: 7fce0092-d52e-4f76-b727-3955bd72c939 - - *853 + - *854 - *42 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *848 + schema: *849 examples: - default: *854 - '400': *849 - '401': *847 - '403': *850 + default: *855 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '429': *851 - '500': *852 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125569,13 +125632,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-group parameters: - - *855 + - *856 - *42 requestBody: required: true content: application/json: - schema: *856 + schema: *857 examples: group: summary: Group @@ -125601,17 +125664,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *848 + schema: *849 examples: - group: *854 - groupWithMembers: *854 - '400': *849 - '401': *847 - '403': *850 + group: *855 + groupWithMembers: *855 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '409': *857 - '429': *851 - '500': *852 + '409': *858 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125635,13 +125698,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-group parameters: - - *855 + - *856 - *42 requestBody: required: true content: application/json: - schema: &867 + schema: &868 type: object required: - Operations @@ -125701,17 +125764,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *848 + schema: *849 examples: - updateGroup: *854 - addMembers: *854 - '400': *849 - '401': *847 - '403': *850 + updateGroup: *855 + addMembers: *855 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '409': *857 - '429': *851 - '500': *852 + '409': *858 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125727,17 +125790,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-group-from-an-enterprise parameters: - - *855 + - *856 - *42 responses: '204': description: Group was deleted, no content - '400': *849 - '401': *847 - '403': *850 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '429': *851 - '500': *852 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -125771,8 +125834,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *858 - *859 + - *860 - *42 responses: '200': @@ -125805,7 +125868,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &862 + items: &863 allOf: - type: object required: @@ -125884,7 +125947,7 @@ paths: description: Whether this email address is the primary address. example: true - roles: &861 + roles: &862 type: array description: The roles assigned to the user. items: @@ -125940,7 +126003,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *860 + meta: *861 startIndex: type: integer description: A starting index for the returned page @@ -125977,11 +126040,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *849 - '401': *847 - '403': *850 - '429': *851 - '500': *852 + '400': *850 + '401': *848 + '403': *851 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -126005,7 +126068,7 @@ paths: required: true content: application/json: - schema: &865 + schema: &866 type: object required: - schemas @@ -126087,9 +126150,9 @@ paths: type: boolean description: Whether this email address is the primary address. example: true - roles: *861 + roles: *862 examples: - user: &866 + user: &867 summary: User value: schemas: @@ -126136,9 +126199,9 @@ paths: description: User has been created content: application/scim+json: - schema: *862 + schema: *863 examples: - user: &863 + user: &864 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -126164,13 +126227,13 @@ paths: created: '2012-03-27T19:59:26.000Z' lastModified: '2018-03-27T19:59:26.000Z' location: https://api.github.localhost/scim/v2/Users/7fce0092-d52e-4f76-b727-3955bd72c939 - enterpriseOwner: *863 - '400': *849 - '401': *847 - '403': *850 - '409': *857 - '429': *851 - '500': *852 + enterpriseOwner: *864 + '400': *850 + '401': *848 + '403': *851 + '409': *858 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -126187,7 +126250,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#get-scim-provisioning-information-for-an-enterprise-user parameters: - - &864 + - &865 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -126200,15 +126263,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *862 + schema: *863 examples: - default: *863 - '400': *849 - '401': *847 - '403': *850 + default: *864 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '429': *851 - '500': *852 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -126259,30 +126322,30 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#set-scim-information-for-a-provisioned-enterprise-user parameters: - - *864 + - *865 - *42 requestBody: required: true content: application/json: - schema: *865 + schema: *866 examples: - user: *866 + user: *867 responses: '200': description: User was updated content: application/scim+json: - schema: *862 + schema: *863 examples: - user: *863 - '400': *849 - '401': *847 - '403': *850 + user: *864 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '409': *857 - '429': *851 - '500': *852 + '409': *858 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -126323,13 +126386,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#update-an-attribute-for-a-scim-enterprise-user parameters: - - *864 + - *865 - *42 requestBody: required: true content: application/json: - schema: *867 + schema: *868 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -126369,18 +126432,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *862 - examples: - userMultiValuedProperties: *863 - userSingleValuedProperties: *863 - disableUser: *863 - '400': *849 - '401': *847 - '403': *850 + schema: *863 + examples: + userMultiValuedProperties: *864 + userSingleValuedProperties: *864 + disableUser: *864 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '409': *857 - '429': *851 - '500': *852 + '409': *858 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -126400,17 +126463,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/enterprise-admin/scim#delete-a-scim-user-from-an-enterprise parameters: - - *864 + - *865 - *42 responses: '204': description: User was deleted, no content - '400': *849 - '401': *847 - '403': *850 + '400': *850 + '401': *848 + '403': *851 '404': *6 - '429': *851 - '500': *852 + '429': *852 + '500': *853 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -126497,7 +126560,7 @@ paths: example: 1 Resources: type: array - items: &868 + items: &869 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -126728,22 +126791,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *38 - '404': &869 + '404': &870 description: Resource not found content: application/json: - schema: *846 + schema: *847 application/scim+json: - schema: *846 - '403': &870 + schema: *847 + '403': &871 description: Forbidden content: application/json: - schema: *846 + schema: *847 application/scim+json: - schema: *846 - '400': *849 - '429': *851 + schema: *847 + '400': *850 + '429': *852 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -126769,9 +126832,9 @@ paths: description: Response content: application/scim+json: - schema: *868 + schema: *869 examples: - default: &871 + default: &872 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -126794,17 +126857,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *38 - '404': *869 - '403': *870 - '500': *852 + '404': *870 + '403': *871 + '500': *853 '409': description: Conflict content: application/json: - schema: *846 + schema: *847 application/scim+json: - schema: *846 - '400': *849 + schema: *847 + '400': *850 requestBody: required: true content: @@ -126902,17 +126965,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *90 - - *864 + - *865 responses: '200': description: Response content: application/scim+json: - schema: *868 + schema: *869 examples: - default: *871 - '404': *869 - '403': *870 + default: *872 + '404': *870 + '403': *871 '304': *38 x-github: githubCloudOnly: true @@ -126936,18 +126999,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-a-provisioned-organization-membership parameters: - *90 - - *864 + - *865 responses: '200': description: Response content: application/scim+json: - schema: *868 + schema: *869 examples: - default: *871 + default: *872 '304': *38 - '404': *869 - '403': *870 + '404': *870 + '403': *871 requestBody: required: true content: @@ -127060,19 +127123,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *90 - - *864 + - *865 responses: '200': description: Response content: application/scim+json: - schema: *868 + schema: *869 examples: - default: *871 + default: *872 '304': *38 - '404': *869 - '403': *870 - '400': *849 + '404': *870 + '403': *871 + '400': *850 '429': description: Response content: @@ -127163,12 +127226,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *90 - - *864 + - *865 responses: '204': description: Response - '404': *869 - '403': *870 + '404': *870 + '403': *871 '304': *38 x-github: githubCloudOnly: true @@ -127304,7 +127367,7 @@ paths: example: - 73..77 - 77..78 - text_matches: &872 + text_matches: &873 title: Search Result Text Matches type: array items: @@ -127467,7 +127530,7 @@ paths: enum: - author-date - committer-date - - &873 + - &874 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 @@ -127538,7 +127601,7 @@ paths: description: Metaproperties for Git author/committer information. type: object - properties: *562 + properties: *563 nullable: true comment_count: type: integer @@ -127558,7 +127621,7 @@ paths: url: type: string format: uri - verification: *691 + verification: *692 required: - author - committer @@ -127577,7 +127640,7 @@ paths: title: Git User description: Metaproperties for Git author/committer information. type: object - properties: *562 + properties: *563 nullable: true parents: type: array @@ -127595,7 +127658,7 @@ paths: type: number node_id: type: string - text_matches: *872 + text_matches: *873 required: - sha - node_id @@ -127788,7 +127851,7 @@ paths: - interactions - created - updated - - *873 + - *874 - *17 - *19 - name: advanced_search @@ -127902,11 +127965,11 @@ paths: description: type: string nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: type: string state_reason: @@ -127923,8 +127986,8 @@ paths: title: Milestone description: A collection of related issues and pull requests. type: object - properties: *440 - required: *441 + properties: *441 + required: *442 nullable: true comments: type: integer @@ -127938,7 +128001,7 @@ paths: type: string format: date-time nullable: true - text_matches: *872 + text_matches: *873 pull_request: type: object properties: @@ -127982,7 +128045,7 @@ paths: timeline_url: type: string format: uri - type: *405 + type: *406 performed_via_github_app: title: GitHub app description: GitHub apps are a new way to extend GitHub. @@ -128254,7 +128317,7 @@ paths: enum: - created - updated - - *873 + - *874 - *17 - *19 responses: @@ -128298,7 +128361,7 @@ paths: nullable: true score: type: number - text_matches: *872 + text_matches: *873 required: - id - node_id @@ -128384,7 +128447,7 @@ paths: - forks - help-wanted-issues - updated - - *873 + - *874 - *17 - *19 responses: @@ -128632,7 +128695,7 @@ paths: - admin - pull - push - text_matches: *872 + text_matches: *873 temp_clone_token: type: string allow_merge_commit: @@ -128933,7 +128996,7 @@ paths: type: string format: uri nullable: true - text_matches: *872 + text_matches: *873 related: type: array nullable: true @@ -129126,7 +129189,7 @@ paths: - followers - repositories - joined - - *873 + - *874 - *17 - *19 responses: @@ -129230,7 +129293,7 @@ paths: hireable: type: boolean nullable: true - text_matches: *872 + text_matches: *873 blog: type: string nullable: true @@ -129309,7 +129372,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#get-a-team-legacy parameters: - - &876 + - &877 name: team_id description: The unique identifier of the team. in: path @@ -129321,9 +129384,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '404': *6 x-github: githubCloudOnly: false @@ -129350,7 +129413,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#update-a-team-legacy parameters: - - *876 + - *877 requestBody: required: true content: @@ -129418,16 +129481,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '201': description: Response content: application/json: - schema: *504 + schema: *505 examples: - default: *505 + default: *506 '404': *6 '422': *15 '403': *29 @@ -129455,7 +129518,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#delete-a-team-legacy parameters: - - *876 + - *877 responses: '204': description: Response @@ -129484,7 +129547,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *876 + - *877 - *17 - *19 responses: @@ -129494,9 +129557,9 @@ paths: application/json: schema: type: array - items: *399 + items: *400 examples: - default: *400 + default: *401 headers: Link: *48 x-github: @@ -129524,7 +129587,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#list-team-members-legacy parameters: - - *876 + - *877 - name: role description: Filters members returned by their role in the team. in: query @@ -129545,9 +129608,9 @@ paths: application/json: schema: type: array - items: *877 + items: *878 examples: - default: *878 + default: *879 headers: Link: *48 '404': *6 @@ -129575,7 +129638,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-member-legacy parameters: - - *876 + - *877 - *135 responses: '204': @@ -129612,7 +129675,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-team-member-legacy parameters: - - *876 + - *877 - *135 responses: '204': @@ -129652,7 +129715,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-member-legacy parameters: - - *876 + - *877 - *135 responses: '204': @@ -129689,16 +129752,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *876 + - *877 - *135 responses: '200': description: Response content: application/json: - schema: *511 + schema: *512 examples: - response-if-user-is-a-team-maintainer: *879 + response-if-user-is-a-team-maintainer: *880 '404': *6 x-github: githubCloudOnly: false @@ -129731,7 +129794,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *876 + - *877 - *135 requestBody: required: false @@ -129757,9 +129820,9 @@ paths: description: Response content: application/json: - schema: *511 + schema: *512 examples: - response-if-users-membership-with-team-is-now-pending: *880 + response-if-users-membership-with-team-is-now-pending: *881 '403': description: Forbidden if team synchronization is set up '422': @@ -129793,7 +129856,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *876 + - *877 - *135 responses: '204': @@ -129821,7 +129884,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-team-repositories-legacy parameters: - - *876 + - *877 - *17 - *19 responses: @@ -129833,7 +129896,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 '404': *6 @@ -129863,15 +129926,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *876 - - *512 + - *877 - *513 + - *514 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *881 + schema: *882 examples: alternative-response-with-extra-repository-information: value: @@ -130028,9 +130091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *876 - - *512 + - *877 - *513 + - *514 requestBody: required: false content: @@ -130080,9 +130143,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *876 - - *512 + - *877 - *513 + - *514 responses: '204': description: Response @@ -130111,15 +130174,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#list-idp-groups-for-a-team-legacy parameters: - - *876 + - *877 responses: '200': description: Response content: application/json: - schema: *514 + schema: *515 examples: - default: *515 + default: *516 '403': *29 '404': *6 x-github: @@ -130146,7 +130209,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/team-sync#create-or-update-idp-group-connections-legacy parameters: - - *876 + - *877 requestBody: required: true content: @@ -130203,7 +130266,7 @@ paths: description: Response content: application/json: - schema: *514 + schema: *515 examples: default: value: @@ -130234,7 +130297,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/teams/teams#list-child-teams-legacy parameters: - - *876 + - *877 - *17 - *19 responses: @@ -130246,7 +130309,7 @@ paths: type: array items: *329 examples: - response-if-child-teams-exist: *882 + response-if-child-teams-exist: *883 headers: Link: *48 '404': *6 @@ -130279,7 +130342,7 @@ paths: application/json: schema: oneOf: - - &884 + - &885 title: Private User description: Private User type: object @@ -130482,7 +130545,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *883 + - *884 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -130635,7 +130698,7 @@ paths: description: Response content: application/json: - schema: *884 + schema: *885 examples: default: value: @@ -130838,9 +130901,9 @@ paths: type: integer codespaces: type: array - items: *410 + items: *411 examples: - default: *411 + default: *412 '304': *38 '500': *41 '401': *25 @@ -130979,17 +131042,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '401': *25 '403': *29 '404': *6 @@ -131033,7 +131096,7 @@ paths: type: integer secrets: type: array - items: &885 + items: &886 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -131073,7 +131136,7 @@ paths: - visibility - selected_repositories_url examples: - default: *621 + default: *622 headers: Link: *48 x-github: @@ -131149,7 +131212,7 @@ paths: description: Response content: application/json: - schema: *885 + schema: *886 examples: default: value: @@ -131439,15 +131502,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *412 + - *413 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '304': *38 '500': *41 '401': *25 @@ -131473,7 +131536,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *412 + - *413 requestBody: required: false content: @@ -131503,9 +131566,9 @@ paths: description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '401': *25 '403': *29 '404': *6 @@ -131527,7 +131590,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *412 + - *413 responses: '202': *40 '304': *38 @@ -131556,13 +131619,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *412 + - *413 responses: '202': description: Response content: application/json: - schema: &886 + schema: &887 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -131603,7 +131666,7 @@ paths: description: Web url for the exported branch example: https://github.com/octocat/hello-world/tree/:branch examples: - default: &887 + default: &888 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -131635,7 +131698,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *412 + - *413 - name: export_id in: path required: true @@ -131648,9 +131711,9 @@ paths: description: Response content: application/json: - schema: *886 + schema: *887 examples: - default: *887 + default: *888 '404': *6 x-github: githubCloudOnly: false @@ -131671,7 +131734,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *412 + - *413 responses: '200': description: Response @@ -131687,9 +131750,9 @@ paths: type: integer machines: type: array - items: *888 + items: *889 examples: - default: *889 + default: *890 '304': *38 '500': *41 '401': *25 @@ -131718,7 +131781,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *412 + - *413 requestBody: required: true content: @@ -131768,13 +131831,13 @@ paths: nullable: true owner: *4 billable_owner: *4 - repository: *517 + repository: *518 machine: type: object title: Codespace machine description: A description of the machine powering a codespace. - properties: *619 - required: *620 + properties: *620 + required: *621 nullable: true devcontainer_path: description: Path to devcontainer.json from repo root used to @@ -132548,15 +132611,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *412 + - *413 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '304': *38 '500': *41 '400': *14 @@ -132588,15 +132651,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *412 + - *413 responses: '200': description: Response content: application/json: - schema: *410 + schema: *411 examples: - default: *618 + default: *619 '500': *41 '401': *25 '403': *29 @@ -132626,9 +132689,9 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: - default: &901 + default: &902 value: - id: 197 name: hello_docker @@ -132729,7 +132792,7 @@ paths: application/json: schema: type: array - items: &890 + items: &891 title: Email description: Email type: object @@ -132794,9 +132857,9 @@ paths: application/json: schema: type: array - items: *890 + items: *891 examples: - default: &903 + default: &904 value: - email: octocat@github.com verified: true @@ -132871,7 +132934,7 @@ paths: application/json: schema: type: array - items: *890 + items: *891 examples: default: value: @@ -133127,7 +133190,7 @@ paths: application/json: schema: type: array - items: &891 + items: &892 title: GPG Key description: A unique encryption key type: object @@ -133258,7 +133321,7 @@ paths: - subkeys - revoked examples: - default: &920 + default: &921 value: - id: 3 name: Octocat's GPG Key @@ -133343,9 +133406,9 @@ paths: description: Response content: application/json: - schema: *891 + schema: *892 examples: - default: &892 + default: &893 value: id: 3 name: Octocat's GPG Key @@ -133402,7 +133465,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &893 + - &894 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -133414,9 +133477,9 @@ paths: description: Response content: application/json: - schema: *891 + schema: *892 examples: - default: *892 + default: *893 '404': *6 '304': *38 '403': *29 @@ -133439,7 +133502,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *893 + - *894 responses: '204': description: Response @@ -133727,12 +133790,12 @@ paths: application/json: schema: anyOf: - - *397 + - *398 - type: object properties: {} additionalProperties: false examples: - default: *398 + default: *399 '204': description: Response when there are no restrictions x-github: @@ -133756,7 +133819,7 @@ paths: required: true content: application/json: - schema: *701 + schema: *702 examples: default: value: @@ -133767,7 +133830,7 @@ paths: description: Response content: application/json: - schema: *397 + schema: *398 examples: default: value: @@ -133848,7 +133911,7 @@ paths: - closed - all default: open - - *408 + - *409 - name: sort description: What to sort results by. in: query @@ -133873,7 +133936,7 @@ paths: type: array items: *235 examples: - default: *409 + default: *410 headers: Link: *48 '404': *6 @@ -133906,7 +133969,7 @@ paths: application/json: schema: type: array - items: &894 + items: &895 title: Key description: Key type: object @@ -134007,9 +134070,9 @@ paths: description: Response content: application/json: - schema: *894 + schema: *895 examples: - default: &895 + default: &896 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -134042,15 +134105,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *757 + - *758 responses: '200': description: Response content: application/json: - schema: *894 + schema: *895 examples: - default: *895 + default: *896 '404': *6 '304': *38 '403': *29 @@ -134073,7 +134136,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *757 + - *758 responses: '204': description: Response @@ -134106,7 +134169,7 @@ paths: application/json: schema: type: array - items: &896 + items: &897 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -134174,7 +134237,7 @@ paths: - account - plan examples: - default: &897 + default: &898 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -134236,9 +134299,9 @@ paths: application/json: schema: type: array - items: *896 + items: *897 examples: - default: *897 + default: *898 headers: Link: *48 '304': *38 @@ -134278,7 +134341,7 @@ paths: application/json: schema: type: array - items: *413 + items: *414 examples: default: value: @@ -134392,7 +134455,7 @@ paths: description: Response content: application/json: - schema: *413 + schema: *414 examples: default: value: @@ -134479,9 +134542,9 @@ paths: description: The user's organization invitation was accepted synchronously. content: application/json: - schema: *413 + schema: *414 examples: - default: &898 + default: &899 value: url: https://api.github.com/orgs/octocat/memberships/defunkt state: active @@ -134528,9 +134591,9 @@ paths: processed asynchronously. content: application/json: - schema: *413 + schema: *414 examples: - default: *898 + default: *899 '403': *29 '404': *6 '422': *15 @@ -134559,7 +134622,7 @@ paths: application/json: schema: type: array - items: *415 + items: *416 examples: default: value: @@ -134812,7 +134875,7 @@ paths: description: Response content: application/json: - schema: *415 + schema: *416 examples: default: value: @@ -134992,7 +135055,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#get-a-user-migration-status parameters: - - *416 + - *417 - name: exclude in: query required: false @@ -135005,7 +135068,7 @@ paths: description: Response content: application/json: - schema: *415 + schema: *416 examples: default: value: @@ -135199,7 +135262,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#download-a-user-migration-archive parameters: - - *416 + - *417 responses: '302': description: Response @@ -135225,7 +135288,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#delete-a-user-migration-archive parameters: - - *416 + - *417 responses: '204': description: Response @@ -135254,8 +135317,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#unlock-a-user-repository parameters: - - *416 - - *899 + - *417 + - *900 responses: '204': description: Response @@ -135279,7 +135342,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *416 + - *417 - *17 - *19 responses: @@ -135291,7 +135354,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 '404': *6 @@ -135388,7 +135451,7 @@ paths: - docker - nuget - container - - *900 + - *901 - *19 - *17 responses: @@ -135398,10 +135461,10 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: - default: *901 - '400': *902 + default: *902 + '400': *903 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -135421,16 +135484,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *423 - *424 + - *425 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: &921 + default: &922 value: id: 40201 name: octo-name @@ -135543,8 +135606,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *423 - *424 + - *425 responses: '204': description: Response @@ -135574,8 +135637,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *423 - *424 + - *425 - name: token description: package token schema: @@ -135607,8 +135670,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-the-authenticated-user parameters: - - *423 - *424 + - *425 - *19 - *17 - name: state @@ -135628,7 +135691,7 @@ paths: application/json: schema: type: array - items: *425 + items: *426 examples: default: value: @@ -135677,15 +135740,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *423 - *424 - - *426 + - *425 + - *427 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: default: value: @@ -135721,9 +135784,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *423 - *424 - - *426 + - *425 + - *427 responses: '204': description: Response @@ -135753,9 +135816,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *423 - *424 - - *426 + - *425 + - *427 responses: '204': description: Response @@ -135792,9 +135855,9 @@ paths: application/json: schema: type: array - items: *890 + items: *891 examples: - default: *903 + default: *904 headers: Link: *48 '304': *38 @@ -135907,7 +135970,7 @@ paths: type: array items: *81 examples: - default: &910 + default: &911 summary: Default response value: - id: 1296269 @@ -136211,9 +136274,9 @@ paths: description: Response content: application/json: - schema: *517 + schema: *518 examples: - default: *519 + default: *520 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -136257,9 +136320,9 @@ paths: application/json: schema: type: array - items: *704 + items: *705 examples: - default: *904 + default: *905 headers: Link: *48 '304': *38 @@ -136282,7 +136345,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#accept-a-repository-invitation parameters: - - *401 + - *402 responses: '204': description: Response @@ -136311,7 +136374,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/collaborators/invitations#decline-a-repository-invitation parameters: - - *401 + - *402 responses: '204': description: Response @@ -136344,7 +136407,7 @@ paths: application/json: schema: type: array - items: &905 + items: &906 title: Social account description: Social media account type: object @@ -136359,7 +136422,7 @@ paths: - provider - url examples: - default: &906 + default: &907 value: - provider: twitter url: https://twitter.com/github @@ -136421,9 +136484,9 @@ paths: application/json: schema: type: array - items: *905 + items: *906 examples: - default: *906 + default: *907 '422': *15 '304': *38 '404': *6 @@ -136510,7 +136573,7 @@ paths: application/json: schema: type: array - items: &907 + items: &908 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -136530,7 +136593,7 @@ paths: - title - created_at examples: - default: &935 + default: &936 value: - id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -136594,9 +136657,9 @@ paths: description: Response content: application/json: - schema: *907 + schema: *908 examples: - default: &908 + default: &909 value: id: 2 key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -136626,7 +136689,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &909 + - &910 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -136638,9 +136701,9 @@ paths: description: Response content: application/json: - schema: *907 + schema: *908 examples: - default: *908 + default: *909 '404': *6 '304': *38 '403': *29 @@ -136663,7 +136726,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *909 + - *910 responses: '204': description: Response @@ -136692,7 +136755,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &936 + - &937 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 @@ -136717,11 +136780,11 @@ paths: type: array items: *81 examples: - default-response: *910 + default-response: *911 application/vnd.github.v3.star+json: schema: type: array - items: &937 + items: &938 title: Starred Repository description: Starred Repository type: object @@ -136877,8 +136940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#check-if-a-repository-is-starred-by-the-authenticated-user parameters: - - *512 - *513 + - *514 responses: '204': description: Response if this repository is starred by you @@ -136906,8 +136969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -136931,8 +136994,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *512 - *513 + - *514 responses: '204': description: Response @@ -136967,7 +137030,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 '304': *38 @@ -137004,7 +137067,7 @@ paths: application/json: schema: type: array - items: *504 + items: *505 examples: default: value: @@ -137090,10 +137153,10 @@ paths: application/json: schema: oneOf: + - *885 - *884 - - *883 examples: - default-response: &914 + default-response: &915 summary: Default response value: login: octocat @@ -137128,7 +137191,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &915 + response-with-git-hub-plan-information: &916 summary: Response with GitHub plan information value: login: octocat @@ -137185,14 +137248,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/drafts#create-draft-item-for-user-owned-project parameters: - - &912 + - &913 name: user_id description: The unique identifier of the user. in: path required: true schema: type: string - - *439 + - *440 requestBody: required: true description: Details of the draft item to create in the project. @@ -137226,9 +137289,9 @@ paths: description: Response content: application/json: - schema: *445 + schema: *446 examples: - draft_issue: *446 + draft_issue: *447 '304': *38 '403': *29 '401': *25 @@ -137251,7 +137314,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/users/users#list-users parameters: - - *911 + - *912 - *17 responses: '200': @@ -137286,8 +137349,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/views#create-a-view-for-a-user-owned-project parameters: - - *912 - - *439 + - *913 + - *440 requestBody: required: true content: @@ -137323,6 +137386,47 @@ paths: - 123 - 456 - 789 + sort_by: + type: array + description: Sorting configuration for the view. Each element is + a two-element array of `[field_id, direction]` where `direction` + is `"asc"` or `"desc"`. Supports multiple sort criteria applied + in order. + items: + type: array + minItems: 2 + maxItems: 2 + items: + oneOf: + - type: integer + - type: string + example: + - - 123 + - asc + - - 456 + - desc + group_by: + type: array + description: The field IDs to group items by (horizontal grouping). + Supports a single field. The field must support grouping; fields + such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 123 + vertical_group_by: + type: array + description: The field IDs to use as columns in `board` layout (vertical + grouping). Supports a single field. The field must support grouping; + fields such as `Title`, `Reviewers`, `Linked pull requests`, `Sub-issues + progress`, `Tracked by`, and `Tracks` cannot be grouped on. + items: + type: integer + maxItems: 1 + example: + - 456 required: - name - layout @@ -137358,17 +137462,17 @@ paths: description: Response for creating a view in a user-owned project. content: application/json: - schema: *913 + schema: *914 examples: table_view: summary: Response for creating a table view - value: *450 + value: *451 board_view: summary: Response for creating a board view with filter - value: *450 + value: *451 roadmap_view: summary: Response for creating a roadmap view - value: *450 + value: *451 '304': *38 '403': *29 '401': *25 @@ -137410,11 +137514,11 @@ paths: application/json: schema: oneOf: + - *885 - *884 - - *883 examples: - default-response: *914 - response-with-git-hub-plan-information: *915 + default-response: *915 + response-with-git-hub-plan-information: *916 '404': *6 x-github: githubCloudOnly: false @@ -137464,8 +137568,8 @@ paths: required: - subject_digests examples: - default: *916 - withPredicateType: *917 + default: *917 + withPredicateType: *918 responses: '200': description: Response @@ -137518,7 +137622,7 @@ paths: description: The cursor to the previous page. description: Information about the current page. examples: - default: *918 + default: *919 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -137738,7 +137842,7 @@ paths: initiator: type: string examples: - default: *558 + default: *559 '201': description: Response content: @@ -138033,7 +138137,7 @@ paths: application/json: schema: *344 examples: - default: &919 + default: &920 summary: Example response for a user copilot space value: id: 42 @@ -138134,7 +138238,7 @@ paths: application/json: schema: *344 examples: - default: *919 + default: *920 '403': *29 '404': *6 x-github: @@ -138257,7 +138361,7 @@ paths: application/json: schema: *344 examples: - default: *919 + default: *920 '403': *29 '404': *6 '422': *15 @@ -139023,9 +139127,9 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: - default: *901 + default: *902 '403': *29 '401': *25 x-github: @@ -139409,9 +139513,9 @@ paths: application/json: schema: type: array - items: *891 + items: *892 examples: - default: *920 + default: *921 headers: Link: *48 x-github: @@ -139515,7 +139619,7 @@ paths: application/json: schema: *22 examples: - default: *395 + default: *396 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -139639,7 +139743,7 @@ paths: - docker - nuget - container - - *900 + - *901 - *135 - *19 - *17 @@ -139650,12 +139754,12 @@ paths: application/json: schema: type: array - items: *421 + items: *422 examples: - default: *901 + default: *902 '403': *29 '401': *25 - '400': *902 + '400': *903 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -139675,17 +139779,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-for-a-user parameters: - - *423 - *424 + - *425 - *135 responses: '200': description: Response content: application/json: - schema: *421 + schema: *422 examples: - default: *921 + default: *922 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -139706,8 +139810,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-a-package-for-a-user parameters: - - *423 - *424 + - *425 - *135 responses: '204': @@ -139740,8 +139844,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-a-package-for-a-user parameters: - - *423 - *424 + - *425 - *135 - name: token description: package token @@ -139774,8 +139878,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#list-package-versions-for-a-package-owned-by-a-user parameters: - - *423 - *424 + - *425 - *135 responses: '200': @@ -139784,7 +139888,7 @@ paths: application/json: schema: type: array - items: *425 + items: *426 examples: default: value: @@ -139842,16 +139946,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *423 - *424 - - *426 + - *425 + - *427 - *135 responses: '200': description: Response content: application/json: - schema: *425 + schema: *426 examples: default: value: @@ -139886,10 +139990,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#delete-package-version-for-a-user parameters: - - *423 - *424 + - *425 - *135 - - *426 + - *427 responses: '204': description: Response @@ -139921,10 +140025,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/packages/packages#restore-package-version-for-a-user parameters: - - *423 - *424 + - *425 - *135 - - *426 + - *427 responses: '204': description: Response @@ -139965,9 +140069,9 @@ paths: application/json: schema: type: array - items: *437 + items: *438 examples: - default: *438 + default: *439 headers: Link: *48 '304': *38 @@ -139989,16 +140093,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/projects#get-project-for-user parameters: - - *439 + - *440 - *135 responses: '200': description: Response content: application/json: - schema: *437 + schema: *438 examples: - default: *438 + default: *439 headers: Link: *48 '304': *38 @@ -140020,7 +140124,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#list-project-fields-for-user parameters: - - *439 + - *440 - *135 - *17 - *111 @@ -140032,9 +140136,9 @@ paths: application/json: schema: type: array - items: *443 + items: *444 examples: - default: *922 + default: *923 headers: Link: *48 '304': *38 @@ -140056,7 +140160,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#add-field-to-user-owned-project parameters: - *135 - - *439 + - *440 requestBody: required: true content: @@ -140094,7 +140198,7 @@ paths: description: The options available for single select fields. At least one option must be provided when creating a single select field. - items: *923 + items: *924 required: - name - data_type @@ -140110,7 +140214,7 @@ paths: description: The field's data type. enum: - iteration - iteration_configuration: *924 + iteration_configuration: *925 required: - name - data_type @@ -140132,20 +140236,20 @@ paths: value: name: Due date data_type: date - single_select_field: *925 - iteration_field: *926 + single_select_field: *926 + iteration_field: *927 responses: '201': description: Response content: application/json: - schema: *443 + schema: *444 examples: - text_field: *927 - number_field: *928 - date_field: *929 - single_select_field: *930 - iteration_field: *931 + text_field: *928 + number_field: *929 + date_field: *930 + single_select_field: *931 + iteration_field: *932 '304': *38 '403': *29 '401': *25 @@ -140166,17 +140270,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/fields#get-project-field-for-user parameters: - - *439 - - *932 + - *440 + - *933 - *135 responses: '200': description: Response content: application/json: - schema: *443 + schema: *444 examples: - default: *933 + default: *934 headers: Link: *48 '304': *38 @@ -140199,7 +140303,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-owned-project parameters: - - *439 + - *440 - *135 - *111 - *112 @@ -140232,9 +140336,9 @@ paths: application/json: schema: type: array - items: *447 + items: *448 examples: - default: *448 + default: *449 headers: Link: *48 '304': *38 @@ -140256,7 +140360,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#add-item-to-user-owned-project parameters: - *135 - - *439 + - *440 requestBody: required: true description: Details of the item to add to the project. You can specify either @@ -140326,22 +140430,22 @@ paths: description: Response content: application/json: - schema: *445 + schema: *446 examples: issue_with_id: summary: Response for adding an issue using its unique ID - value: *446 + value: *447 pull_request_with_id: summary: Response for adding a pull request using its unique ID - value: *446 + value: *447 issue_with_nwo: summary: Response for adding an issue using repository owner, name, and issue number - value: *446 + value: *447 pull_request_with_nwo: summary: Response for adding a pull request using repository owner, name, and PR number - value: *446 + value: *447 '304': *38 '403': *29 '401': *25 @@ -140361,9 +140465,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#get-an-item-for-a-user-owned-project parameters: - - *439 + - *440 - *135 - - *449 + - *450 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the title field will be returned. @@ -140383,9 +140487,9 @@ paths: description: Response content: application/json: - schema: *447 + schema: *448 examples: - default: *448 + default: *449 headers: Link: *48 '304': *38 @@ -140406,9 +140510,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#update-project-item-for-user parameters: - - *439 + - *440 - *135 - - *449 + - *450 requestBody: required: true description: Field updates to apply to the project item. Only text, number, @@ -140478,13 +140582,13 @@ paths: description: Response content: application/json: - schema: *447 + schema: *448 examples: - text_field: *448 - number_field: *448 - date_field: *448 - single_select_field: *448 - iteration_field: *448 + text_field: *449 + number_field: *449 + date_field: *449 + single_select_field: *449 + iteration_field: *449 '401': *25 '403': *29 '404': *6 @@ -140504,9 +140608,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#delete-project-item-for-user parameters: - - *439 + - *440 - *135 - - *449 + - *450 responses: '204': description: Response @@ -140528,9 +140632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest/rest/projects/items#list-items-for-a-user-project-view parameters: - - *439 + - *440 - *135 - - *934 + - *935 - name: fields description: |- Limit results to specific fields, by their IDs. If not specified, the @@ -140556,9 +140660,9 @@ paths: application/json: schema: type: array - items: *447 + items: *448 examples: - default: *448 + default: *449 headers: Link: *48 '304': *38 @@ -140779,7 +140883,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 x-github: @@ -140809,9 +140913,9 @@ paths: application/json: schema: type: array - items: *905 + items: *906 examples: - default: *906 + default: *907 headers: Link: *48 x-github: @@ -140841,9 +140945,9 @@ paths: application/json: schema: type: array - items: *907 + items: *908 examples: - default: *935 + default: *936 headers: Link: *48 x-github: @@ -140868,7 +140972,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *135 - - *936 + - *937 - *113 - *17 - *19 @@ -140880,11 +140984,11 @@ paths: schema: anyOf: - type: array - items: *937 + items: *938 - type: array items: *81 examples: - default-response: *910 + default-response: *911 headers: Link: *48 x-github: @@ -140915,7 +141019,7 @@ paths: type: array items: *296 examples: - default: *427 + default: *428 headers: Link: *48 x-github: @@ -141043,7 +141147,7 @@ x-webhooks: type: string enum: - disabled - enterprise: &938 + enterprise: &939 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -141101,7 +141205,7 @@ x-webhooks: - created_at - updated_at - avatar_url - installation: &939 + installation: &940 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -141120,7 +141224,7 @@ x-webhooks: required: - id - node_id - organization: &940 + organization: &941 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -141180,13 +141284,13 @@ x-webhooks: - public_members_url - avatar_url - description - repository: &941 + repository: &942 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: &980 + properties: &981 id: description: Unique identifier of the repository example: 42 @@ -141881,7 +141985,7 @@ x-webhooks: type: boolean description: Whether anonymous git access is enabled for this repository - required: &981 + required: &982 - archive_url - assignees_url - blobs_url @@ -141955,7 +142059,7 @@ x-webhooks: - watchers_count - created_at - updated_at - x-github-breaking-changes: &982 + x-github-breaking-changes: &983 - changeset: remove_use_squash_pr_title_as_default patch: properties: @@ -142046,10 +142150,10 @@ x-webhooks: type: string enum: - enabled - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -142125,11 +142229,11 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - rule: &942 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + rule: &943 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-cloud@latest/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -142352,11 +142456,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - rule: *942 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + rule: *943 sender: *4 required: - action @@ -142539,11 +142643,11 @@ x-webhooks: - everyone required: - from - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - rule: *942 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + rule: *943 sender: *4 required: - action @@ -142616,7 +142720,7 @@ x-webhooks: required: true content: application/json: - schema: &964 + schema: &965 title: Exemption request cancellation event type: object properties: @@ -142624,11 +142728,11 @@ x-webhooks: type: string enum: - cancelled - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - exemption_request: &943 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + exemption_request: &944 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -142932,7 +143036,7 @@ x-webhooks: type: array description: The responses to the exemption request. nullable: true - items: &944 + items: &945 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -143042,7 +143146,7 @@ x-webhooks: required: true content: application/json: - schema: &965 + schema: &966 title: Exemption request completed event type: object properties: @@ -143050,11 +143154,11 @@ x-webhooks: type: string enum: - completed - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - exemption_request: *943 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + exemption_request: *944 sender: *4 required: - action @@ -143126,7 +143230,7 @@ x-webhooks: required: true content: application/json: - schema: &962 + schema: &963 title: Exemption request created event type: object properties: @@ -143134,11 +143238,11 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - exemption_request: *943 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + exemption_request: *944 sender: *4 required: - action @@ -143210,7 +143314,7 @@ x-webhooks: required: true content: application/json: - schema: &966 + schema: &967 title: Exemption response dismissed event type: object properties: @@ -143218,12 +143322,12 @@ x-webhooks: type: string enum: - response_dismissed - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - exemption_request: *943 - exemption_response: *944 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + exemption_request: *944 + exemption_response: *945 sender: *4 required: - action @@ -143297,7 +143401,7 @@ x-webhooks: required: true content: application/json: - schema: &963 + schema: &964 title: Exemption response submitted event type: object properties: @@ -143305,12 +143409,12 @@ x-webhooks: type: string enum: - response_submitted - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - exemption_request: *943 - exemption_response: *944 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + exemption_request: *944 + exemption_response: *945 sender: *4 required: - action @@ -143394,7 +143498,7 @@ x-webhooks: type: string enum: - completed - check_run: &946 + check_run: &947 title: CheckRun description: A check performed on the code of a given code change type: object @@ -143485,7 +143589,7 @@ x-webhooks: - skipped - timed_out - action_required - deployment: *945 + deployment: *946 details_url: example: https://example.com type: string @@ -143570,10 +143674,10 @@ x-webhooks: - output - app - pull_requests - installation: *939 - enterprise: *938 - organization: *940 - repository: *941 + installation: *940 + enterprise: *939 + organization: *941 + repository: *942 sender: *4 required: - check_run @@ -143964,11 +144068,11 @@ x-webhooks: type: string enum: - created - check_run: *946 - installation: *939 - enterprise: *938 - organization: *940 - repository: *941 + check_run: *947 + installation: *940 + enterprise: *939 + organization: *941 + repository: *942 sender: *4 required: - check_run @@ -144362,11 +144466,11 @@ x-webhooks: type: string enum: - requested_action - check_run: *946 - installation: *939 - enterprise: *938 - organization: *940 - repository: *941 + check_run: *947 + installation: *940 + enterprise: *939 + organization: *941 + repository: *942 requested_action: description: The action requested by the user. type: object @@ -144769,11 +144873,11 @@ x-webhooks: type: string enum: - rerequested - check_run: *946 - installation: *939 - enterprise: *938 - organization: *940 - repository: *941 + check_run: *947 + installation: *940 + enterprise: *939 + organization: *941 + repository: *942 sender: *4 required: - check_run @@ -145743,10 +145847,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -146445,10 +146549,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -147141,10 +147245,10 @@ x-webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -147310,7 +147414,7 @@ x-webhooks: required: - login - id - dismissed_comment: *589 + dismissed_comment: *590 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -147455,20 +147559,20 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: &947 + commit_oid: &948 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: *938 - installation: *939 - organization: *940 - ref: &948 + enterprise: *939 + installation: *940 + organization: *941 + ref: &949 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: *941 + repository: *942 sender: *4 required: - action @@ -147633,7 +147737,7 @@ x-webhooks: required: - login - id - dismissed_comment: *589 + dismissed_comment: *590 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -147863,12 +147967,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *947 - enterprise: *938 - installation: *939 - organization: *940 - ref: *948 - repository: *941 + commit_oid: *948 + enterprise: *939 + installation: *940 + organization: *941 + ref: *949 + repository: *942 sender: *4 required: - action @@ -147963,7 +148067,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *589 + dismissed_comment: *590 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -148134,12 +148238,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *947 - enterprise: *938 - installation: *939 - organization: *940 - ref: *948 - repository: *941 + commit_oid: *948 + enterprise: *939 + installation: *940 + organization: *941 + ref: *949 + repository: *942 sender: *4 required: - action @@ -148305,7 +148409,7 @@ x-webhooks: required: - login - id - dismissed_comment: *589 + dismissed_comment: *590 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -148471,12 +148575,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *947 - enterprise: *938 - installation: *939 - organization: *940 - ref: *948 - repository: *941 + commit_oid: *948 + enterprise: *939 + installation: *940 + organization: *941 + ref: *949 + repository: *942 sender: *4 required: - action @@ -148575,7 +148679,7 @@ x-webhooks: dismissed_by: type: object nullable: true - dismissed_comment: *589 + dismissed_comment: *590 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -148750,16 +148854,16 @@ x-webhooks: triggered by the `sender` and this value will be empty. type: string nullable: true - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event was triggered by the `sender` and this value will be empty. type: string nullable: true - repository: *941 + repository: *942 sender: *4 required: - action @@ -148856,7 +148960,7 @@ x-webhooks: nullable: true dismissed_by: nullable: true - dismissed_comment: *589 + dismissed_comment: *590 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -148996,12 +149100,12 @@ x-webhooks: - dismissed_reason - rule - tool - commit_oid: *947 - enterprise: *938 - installation: *939 - organization: *940 - ref: *948 - repository: *941 + commit_oid: *948 + enterprise: *939 + installation: *940 + organization: *941 + ref: *949 + repository: *942 sender: *4 required: - action @@ -149167,7 +149271,7 @@ x-webhooks: required: - login - id - dismissed_comment: *589 + dismissed_comment: *590 dismissed_reason: description: The reason for dismissing or closing the alert. type: string @@ -149312,10 +149416,10 @@ x-webhooks: - dismissed_reason - rule - tool - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -149570,10 +149674,10 @@ x-webhooks: - updated_at - author_association - body - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -149653,18 +149757,18 @@ x-webhooks: description: The repository's current description. type: string nullable: true - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *940 - pusher_type: &949 + organization: *941 + pusher_type: &950 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &950 + ref: &951 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest/rest/git/refs#get-a-reference) resource. type: string @@ -149674,7 +149778,7 @@ x-webhooks: enum: - tag - branch - repository: *941 + repository: *942 sender: *4 required: - ref @@ -149757,9 +149861,9 @@ x-webhooks: enum: - created definition: *165 - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 sender: *4 required: - action @@ -149844,9 +149948,9 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 sender: *4 required: - action @@ -149924,9 +150028,9 @@ x-webhooks: enum: - promote_to_enterprise definition: *165 - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 sender: *4 required: - action @@ -150004,9 +150108,9 @@ x-webhooks: enum: - updated definition: *165 - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 sender: *4 required: - action @@ -150083,10 +150187,10 @@ x-webhooks: type: string enum: - updated - enterprise: *938 - installation: *939 - repository: *941 - organization: *940 + enterprise: *939 + installation: *940 + repository: *942 + organization: *941 sender: *4 new_property_values: type: array @@ -150171,18 +150275,18 @@ x-webhooks: title: delete event type: object properties: - enterprise: *938 - installation: *939 - organization: *940 - pusher_type: *949 - ref: *950 + enterprise: *939 + installation: *940 + organization: *941 + pusher_type: *950 + ref: *951 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *941 + repository: *942 sender: *4 required: - ref @@ -150262,11 +150366,11 @@ x-webhooks: type: string enum: - assignees_changed - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150346,11 +150450,11 @@ x-webhooks: type: string enum: - auto_dismissed - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150431,11 +150535,11 @@ x-webhooks: type: string enum: - auto_reopened - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150516,11 +150620,11 @@ x-webhooks: type: string enum: - created - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150599,11 +150703,11 @@ x-webhooks: type: string enum: - dismissed - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150682,11 +150786,11 @@ x-webhooks: type: string enum: - fixed - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150766,11 +150870,11 @@ x-webhooks: type: string enum: - reintroduced - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150849,11 +150953,11 @@ x-webhooks: type: string enum: - reopened - alert: *653 - installation: *939 - organization: *940 - enterprise: *938 - repository: *941 + alert: *654 + installation: *940 + organization: *941 + enterprise: *939 + repository: *942 sender: *4 required: - action @@ -150930,9 +151034,9 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - key: &951 + enterprise: *939 + installation: *940 + key: &952 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -150968,8 +151072,8 @@ x-webhooks: - verified - created_at - read_only - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -151046,11 +151150,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - key: *951 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + key: *952 + organization: *941 + repository: *942 sender: *4 required: - action @@ -151606,12 +151710,12 @@ x-webhooks: - updated_at - statuses_url - repository_url - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - workflow: &957 + workflow: &958 title: Workflow type: object nullable: true @@ -152352,15 +152456,15 @@ x-webhooks: description: A request for a specific ref(branch,sha,tag) to be deployed type: object - properties: *952 - required: *953 + properties: *953 + required: *954 nullable: true pull_requests: type: array - items: *779 - repository: *941 - organization: *940 - installation: *939 + items: *780 + repository: *942 + organization: *941 + installation: *940 sender: *4 responses: '200': @@ -152431,7 +152535,7 @@ x-webhooks: type: string enum: - approved - approver: &954 + approver: &955 type: object properties: avatar_url: @@ -152474,11 +152578,11 @@ x-webhooks: type: string comment: type: string - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - reviewers: &955 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + reviewers: &956 type: array items: type: object @@ -152557,7 +152661,7 @@ x-webhooks: sender: *4 since: type: string - workflow_job_run: &956 + workflow_job_run: &957 type: object properties: conclusion: @@ -153288,18 +153392,18 @@ x-webhooks: type: string enum: - rejected - approver: *954 + approver: *955 comment: type: string - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - reviewers: *955 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + reviewers: *956 sender: *4 since: type: string - workflow_job_run: *956 + workflow_job_run: *957 workflow_job_runs: type: array items: @@ -154003,13 +154107,13 @@ x-webhooks: type: string enum: - requested - enterprise: *938 + enterprise: *939 environment: type: string - installation: *939 - organization: *940 - repository: *941 - requestor: &967 + installation: *940 + organization: *941 + repository: *942 + requestor: &968 title: User type: object nullable: true @@ -155898,12 +156002,12 @@ x-webhooks: - updated_at - deployment_url - repository_url - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - workflow: *957 + workflow: *958 workflow_run: title: Deployment Workflow Run type: object @@ -156583,7 +156687,7 @@ x-webhooks: type: string enum: - answered - answer: &960 + answer: &961 type: object properties: author_association: @@ -156740,11 +156844,11 @@ x-webhooks: - created_at - updated_at - body - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -156871,11 +156975,11 @@ x-webhooks: - from required: - category - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -156958,11 +157062,11 @@ x-webhooks: type: string enum: - closed - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157044,7 +157148,7 @@ x-webhooks: type: string enum: - created - comment: &959 + comment: &960 type: object properties: author_association: @@ -157201,11 +157305,11 @@ x-webhooks: - updated_at - body - reactions - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157288,12 +157392,12 @@ x-webhooks: type: string enum: - deleted - comment: *959 - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + comment: *960 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157388,12 +157492,12 @@ x-webhooks: - from required: - body - comment: *959 - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + comment: *960 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157477,11 +157581,11 @@ x-webhooks: type: string enum: - created - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157563,11 +157667,11 @@ x-webhooks: type: string enum: - deleted - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157667,11 +157771,11 @@ x-webhooks: type: string required: - from - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157753,10 +157857,10 @@ x-webhooks: type: string enum: - labeled - discussion: *958 - enterprise: *938 - installation: *939 - label: &961 + discussion: *959 + enterprise: *939 + installation: *940 + label: &962 title: Label type: object properties: @@ -157788,8 +157892,8 @@ x-webhooks: - color - default - description - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157872,11 +157976,11 @@ x-webhooks: type: string enum: - locked - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -157958,11 +158062,11 @@ x-webhooks: type: string enum: - pinned - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -158044,11 +158148,11 @@ x-webhooks: type: string enum: - reopened - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -158133,16 +158237,16 @@ x-webhooks: changes: type: object properties: - new_discussion: *958 - new_repository: *941 + new_discussion: *959 + new_repository: *942 required: - new_discussion - new_repository - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -158225,10 +158329,10 @@ x-webhooks: type: string enum: - unanswered - discussion: *958 - old_answer: *960 - organization: *940 - repository: *941 + discussion: *959 + old_answer: *961 + organization: *941 + repository: *942 sender: *4 required: - action @@ -158310,12 +158414,12 @@ x-webhooks: type: string enum: - unlabeled - discussion: *958 - enterprise: *938 - installation: *939 - label: *961 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + label: *962 + organization: *941 + repository: *942 sender: *4 required: - action @@ -158398,11 +158502,11 @@ x-webhooks: type: string enum: - unlocked - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -158484,11 +158588,11 @@ x-webhooks: type: string enum: - unpinned - discussion: *958 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + discussion: *959 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -158557,7 +158661,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158620,7 +158724,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158683,7 +158787,7 @@ x-webhooks: required: true content: application/json: - schema: *964 + schema: *965 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158746,7 +158850,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158809,7 +158913,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158875,7 +158979,7 @@ x-webhooks: required: true content: application/json: - schema: *964 + schema: *965 responses: '200': description: Return a 200 status to indicate that the data was received @@ -158941,7 +159045,7 @@ x-webhooks: required: true content: application/json: - schema: *965 + schema: *966 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159007,7 +159111,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159073,7 +159177,7 @@ x-webhooks: required: true content: application/json: - schema: *966 + schema: *967 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159139,7 +159243,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159204,7 +159308,7 @@ x-webhooks: required: true content: application/json: - schema: *964 + schema: *965 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159269,7 +159373,7 @@ x-webhooks: required: true content: application/json: - schema: *965 + schema: *966 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159334,7 +159438,7 @@ x-webhooks: required: true content: application/json: - schema: *962 + schema: *963 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159399,7 +159503,7 @@ x-webhooks: required: true content: application/json: - schema: *966 + schema: *967 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159465,7 +159569,7 @@ x-webhooks: required: true content: application/json: - schema: *963 + schema: *964 responses: '200': description: Return a 200 status to indicate that the data was received @@ -159532,7 +159636,7 @@ x-webhooks: description: A user forks a repository. type: object properties: - enterprise: *938 + enterprise: *939 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest/rest/repos/repos#get-a-repository) resource. @@ -160192,9 +160296,9 @@ x-webhooks: type: integer watchers_count: type: integer - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - forkee @@ -160340,9 +160444,9 @@ x-webhooks: title: gollum event type: object properties: - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pages: description: The pages that were updated. type: array @@ -160379,7 +160483,7 @@ x-webhooks: - action - sha - html_url - repository: *941 + repository: *942 sender: *4 required: - pages @@ -160455,10 +160559,10 @@ x-webhooks: type: string enum: - created - enterprise: *938 + enterprise: *939 installation: *22 - organization: *940 - repositories: &968 + organization: *941 + repositories: &969 description: An array of repository objects that the installation can access. type: array @@ -160484,8 +160588,8 @@ x-webhooks: - name - full_name - private - repository: *941 - requester: *967 + repository: *942 + requester: *968 sender: *4 required: - action @@ -160560,11 +160664,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 + enterprise: *939 installation: *22 - organization: *940 - repositories: *968 - repository: *941 + organization: *941 + repositories: *969 + repository: *942 requester: nullable: true sender: *4 @@ -160640,11 +160744,11 @@ x-webhooks: type: string enum: - new_permissions_accepted - enterprise: *938 + enterprise: *939 installation: *22 - organization: *940 - repositories: *968 - repository: *941 + organization: *941 + repositories: *969 + repository: *942 requester: nullable: true sender: *4 @@ -160720,10 +160824,10 @@ x-webhooks: type: string enum: - added - enterprise: *938 + enterprise: *939 installation: *22 - organization: *940 - repositories_added: &969 + organization: *941 + repositories_added: &970 description: An array of repository objects, which were added to the installation. type: array @@ -160769,15 +160873,15 @@ x-webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *941 - repository_selection: &970 + repository: *942 + repository_selection: &971 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *967 + requester: *968 sender: *4 required: - action @@ -160856,10 +160960,10 @@ x-webhooks: type: string enum: - removed - enterprise: *938 + enterprise: *939 installation: *22 - organization: *940 - repositories_added: *969 + organization: *941 + repositories_added: *970 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -160886,9 +160990,9 @@ x-webhooks: - name - full_name - private - repository: *941 - repository_selection: *970 - requester: *967 + repository: *942 + repository_selection: *971 + requester: *968 sender: *4 required: - action @@ -160967,11 +161071,11 @@ x-webhooks: type: string enum: - suspend - enterprise: *938 + enterprise: *939 installation: *22 - organization: *940 - repositories: *968 - repository: *941 + organization: *941 + repositories: *969 + repository: *942 requester: nullable: true sender: *4 @@ -161150,10 +161254,10 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 target_type: type: string @@ -161232,11 +161336,11 @@ x-webhooks: type: string enum: - unsuspend - enterprise: *938 + enterprise: *939 installation: *22 - organization: *940 - repositories: *968 - repository: *941 + organization: *941 + repositories: *969 + repository: *942 requester: nullable: true sender: *4 @@ -161410,15 +161514,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *740 - required: *741 + properties: *741 + required: *742 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *742 - required: *743 + properties: *743 + required: *744 nullable: true user: title: User @@ -161503,8 +161607,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -162293,8 +162397,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 state: description: State of the issue; either 'open' or 'closed' type: string @@ -162310,7 +162414,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -162643,8 +162747,8 @@ x-webhooks: - state - locked - assignee - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -162724,7 +162828,7 @@ x-webhooks: type: string enum: - deleted - comment: &971 + comment: &972 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/issues/comments#get-an-issue-comment) itself. @@ -162881,15 +162985,15 @@ x-webhooks: description: Context around who pinned an issue comment and when it was pinned. type: object - properties: *740 - required: *741 + properties: *741 + required: *742 nullable: true minimized: title: Minimized Issue Comment description: Details about why an issue comment was minimized. type: object - properties: *742 - required: *743 + properties: *743 + required: *744 nullable: true required: - url @@ -162904,8 +163008,8 @@ x-webhooks: - performed_via_github_app - body - reactions - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -163690,8 +163794,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 state: description: State of the issue; either 'open' or 'closed' type: string @@ -163707,7 +163811,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -164042,8 +164146,8 @@ x-webhooks: - state - locked - assignee - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -164123,7 +164227,7 @@ x-webhooks: type: string enum: - edited - changes: &1001 + changes: &1002 description: The changes to the comment. type: object properties: @@ -164135,9 +164239,9 @@ x-webhooks: type: string required: - from - comment: *971 - enterprise: *938 - installation: *939 + comment: *972 + enterprise: *939 + installation: *940 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -164925,8 +165029,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 state: description: State of the issue; either 'open' or 'closed' type: string @@ -164942,7 +165046,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -165275,8 +165379,8 @@ x-webhooks: - state - locked - assignee - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -165357,9 +165461,9 @@ x-webhooks: type: string enum: - pinned - comment: *971 - enterprise: *938 - installation: *939 + comment: *972 + enterprise: *939 + installation: *940 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -166149,8 +166253,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 state: description: State of the issue; either 'open' or 'closed' type: string @@ -166166,7 +166270,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -166501,8 +166605,8 @@ x-webhooks: - state - locked - assignee - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -166582,9 +166686,9 @@ x-webhooks: type: string enum: - unpinned - comment: *971 - enterprise: *938 - installation: *939 + comment: *972 + enterprise: *939 + installation: *940 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) the comment belongs to. @@ -167374,8 +167478,8 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 state: description: State of the issue; either 'open' or 'closed' type: string @@ -167391,7 +167495,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -167726,8 +167830,8 @@ x-webhooks: - state - locked - assignee - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -167816,9 +167920,9 @@ x-webhooks: type: number blocking_issue: *235 blocking_issue_repo: *81 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -167907,9 +168011,9 @@ x-webhooks: type: number blocking_issue: *235 blocking_issue_repo: *81 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -167997,9 +168101,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *235 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -168088,9 +168192,9 @@ x-webhooks: description: The ID of the blocking issue. type: number blocking_issue: *235 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -168170,10 +168274,10 @@ x-webhooks: type: string enum: - assigned - assignee: *967 - enterprise: *938 - installation: *939 - issue: &972 + assignee: *968 + enterprise: *939 + installation: *940 + issue: &973 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -168965,11 +169069,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -168985,7 +169089,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -169086,8 +169190,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -169167,8 +169271,8 @@ x-webhooks: type: string enum: - closed - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -169965,11 +170069,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -169985,7 +170089,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -170221,8 +170325,8 @@ x-webhooks: required: - state - closed_at - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -170301,8 +170405,8 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -171090,11 +171194,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -171110,7 +171214,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -171210,8 +171314,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -171290,8 +171394,8 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -172101,11 +172205,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -172121,7 +172225,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -172200,7 +172304,7 @@ x-webhooks: format: uri user_view_type: type: string - milestone: &973 + milestone: &974 title: Milestone description: A collection of related issues and pull requests. type: object @@ -172338,8 +172442,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -172438,8 +172542,8 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -173231,11 +173335,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -173248,7 +173352,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *405 + type: *406 title: description: Title of the issue type: string @@ -173352,9 +173456,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *961 - organization: *940 - repository: *941 + label: *962 + organization: *941 + repository: *942 sender: *4 required: - action @@ -173434,9 +173538,9 @@ x-webhooks: type: string enum: - field_added - enterprise: *938 - installation: *939 - issue: *972 + enterprise: *939 + installation: *940 + issue: *973 issue_field: type: object description: The issue field whose value was set or updated on the @@ -173590,8 +173694,8 @@ x-webhooks: - id required: - from - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -173671,9 +173775,9 @@ x-webhooks: type: string enum: - field_removed - enterprise: *938 - installation: *939 - issue: *972 + enterprise: *939 + installation: *940 + issue: *973 issue_field: type: object description: The issue field whose value was cleared from the issue. @@ -173754,8 +173858,8 @@ x-webhooks: nullable: true required: - id - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -173835,8 +173939,8 @@ x-webhooks: type: string enum: - labeled - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -174627,11 +174731,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -174644,7 +174748,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *405 + type: *406 title: description: Title of the issue type: string @@ -174748,9 +174852,9 @@ x-webhooks: - active_lock_reason - body - reactions - label: *961 - organization: *940 - repository: *941 + label: *962 + organization: *941 + repository: *942 sender: *4 required: - action @@ -174830,8 +174934,8 @@ x-webhooks: type: string enum: - locked - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -175646,11 +175750,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -175663,7 +175767,7 @@ x-webhooks: timeline_url: type: string format: uri - type: *405 + type: *406 title: description: Title of the issue type: string @@ -175744,8 +175848,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -175824,8 +175928,8 @@ x-webhooks: type: string enum: - milestoned - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -176634,11 +176738,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -176654,7 +176758,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -176732,9 +176836,9 @@ x-webhooks: format: uri user_view_type: type: string - milestone: *973 - organization: *940 - repository: *941 + milestone: *974 + organization: *941 + repository: *942 sender: *4 required: - action @@ -177597,11 +177701,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -177702,7 +177806,7 @@ x-webhooks: required: - login - id - type: *405 + type: *406 required: - id - number @@ -178182,8 +178286,8 @@ x-webhooks: required: - old_issue - old_repository - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -178967,11 +179071,11 @@ x-webhooks: repository_url: type: string format: uri - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -178987,7 +179091,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -179095,8 +179199,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -179176,9 +179280,9 @@ x-webhooks: type: string enum: - pinned - enterprise: *938 - installation: *939 - issue: &974 + enterprise: *939 + installation: *940 + issue: &975 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) itself. @@ -179964,11 +180068,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -179984,7 +180088,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -180084,8 +180188,8 @@ x-webhooks: - active_lock_reason - body - reactions - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -180164,8 +180268,8 @@ x-webhooks: type: string enum: - reopened - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -180978,11 +181082,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -181076,9 +181180,9 @@ x-webhooks: format: uri user_view_type: type: string - type: *405 - organization: *940 - repository: *941 + type: *406 + organization: *941 + repository: *942 sender: *4 required: - action @@ -181947,11 +182051,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -181967,7 +182071,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -182546,11 +182650,11 @@ x-webhooks: required: - new_issue - new_repository - enterprise: *938 - installation: *939 - issue: *974 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + issue: *975 + organization: *941 + repository: *942 sender: *4 required: - action @@ -182630,12 +182734,12 @@ x-webhooks: type: string enum: - typed - enterprise: *938 - installation: *939 - issue: *972 - type: *405 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + issue: *973 + type: *406 + organization: *941 + repository: *942 sender: *4 required: - action @@ -182716,7 +182820,7 @@ x-webhooks: type: string enum: - unassigned - assignee: &1004 + assignee: &1005 title: User type: object nullable: true @@ -182786,11 +182890,11 @@ x-webhooks: required: - login - id - enterprise: *938 - installation: *939 - issue: *972 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + issue: *973 + organization: *941 + repository: *942 sender: *4 required: - action @@ -182869,12 +182973,12 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *938 - installation: *939 - issue: *972 - label: *961 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + issue: *973 + label: *962 + organization: *941 + repository: *942 sender: *4 required: - action @@ -182954,8 +183058,8 @@ x-webhooks: type: string enum: - unlocked - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest/rest/issues/issues#get-an-issue) @@ -183768,11 +183872,11 @@ x-webhooks: properties: *236 required: *237 nullable: true - sub_issues_summary: *874 - issue_dependencies_summary: *875 + sub_issues_summary: *875 + issue_dependencies_summary: *876 issue_field_values: type: array - items: *722 + items: *723 state: description: State of the issue; either 'open' or 'closed' type: string @@ -183788,7 +183892,7 @@ x-webhooks: title: description: Title of the issue type: string - type: *405 + type: *406 updated_at: type: string format: date-time @@ -183866,8 +183970,8 @@ x-webhooks: format: uri user_view_type: type: string - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -183947,11 +184051,11 @@ x-webhooks: type: string enum: - unpinned - enterprise: *938 - installation: *939 - issue: *974 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + issue: *975 + organization: *941 + repository: *942 sender: *4 required: - action @@ -184030,12 +184134,12 @@ x-webhooks: type: string enum: - untyped - enterprise: *938 - installation: *939 - issue: *972 - type: *405 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + issue: *973 + type: *406 + organization: *941 + repository: *942 sender: *4 required: - action @@ -184115,11 +184219,11 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - label: *961 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + label: *962 + organization: *941 + repository: *942 sender: *4 required: - action @@ -184197,11 +184301,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - label: *961 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + label: *962 + organization: *941 + repository: *942 sender: *4 required: - action @@ -184311,11 +184415,11 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - label: *961 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + label: *962 + organization: *941 + repository: *942 sender: *4 required: - action @@ -184397,9 +184501,9 @@ x-webhooks: - cancelled effective_date: type: string - enterprise: *938 - installation: *939 - marketplace_purchase: &975 + enterprise: *939 + installation: *940 + marketplace_purchase: &976 title: Marketplace Purchase type: object required: @@ -184482,8 +184586,8 @@ x-webhooks: type: integer unit_count: type: integer - organization: *940 - previous_marketplace_purchase: &976 + organization: *941 + previous_marketplace_purchase: &977 title: Marketplace Purchase type: object properties: @@ -184563,7 +184667,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *941 + repository: *942 sender: *4 required: - action @@ -184643,10 +184747,10 @@ x-webhooks: - changed effective_date: type: string - enterprise: *938 - installation: *939 - marketplace_purchase: *975 - organization: *940 + enterprise: *939 + installation: *940 + marketplace_purchase: *976 + organization: *941 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -184729,7 +184833,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *941 + repository: *942 sender: *4 required: - action @@ -184811,10 +184915,10 @@ x-webhooks: - pending_change effective_date: type: string - enterprise: *938 - installation: *939 - marketplace_purchase: *975 - organization: *940 + enterprise: *939 + installation: *940 + marketplace_purchase: *976 + organization: *941 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -184896,7 +185000,7 @@ x-webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *941 + repository: *942 sender: *4 required: - action @@ -184977,8 +185081,8 @@ x-webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 marketplace_purchase: title: Marketplace Purchase type: object @@ -185060,9 +185164,9 @@ x-webhooks: type: integer unit_count: type: integer - organization: *940 - previous_marketplace_purchase: *976 - repository: *941 + organization: *941 + previous_marketplace_purchase: *977 + repository: *942 sender: *4 required: - action @@ -185142,12 +185246,12 @@ x-webhooks: - purchased effective_date: type: string - enterprise: *938 - installation: *939 - marketplace_purchase: *975 - organization: *940 - previous_marketplace_purchase: *976 - repository: *941 + enterprise: *939 + installation: *940 + marketplace_purchase: *976 + organization: *941 + previous_marketplace_purchase: *977 + repository: *942 sender: *4 required: - action @@ -185249,11 +185353,11 @@ x-webhooks: type: string required: - to - enterprise: *938 - installation: *939 - member: *967 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + member: *968 + organization: *941 + repository: *942 sender: *4 required: - action @@ -185353,11 +185457,11 @@ x-webhooks: to: type: string nullable: true - enterprise: *938 - installation: *939 - member: *967 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + member: *968 + organization: *941 + repository: *942 sender: *4 required: - action @@ -185436,11 +185540,11 @@ x-webhooks: type: string enum: - removed - enterprise: *938 - installation: *939 - member: *967 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + member: *968 + organization: *941 + repository: *942 sender: *4 required: - action @@ -185518,11 +185622,11 @@ x-webhooks: type: string enum: - added - enterprise: *938 - installation: *939 - member: *967 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + member: *968 + organization: *941 + repository: *942 scope: description: The scope of the membership. Currently, can only be `team`. @@ -185598,7 +185702,7 @@ x-webhooks: required: - login - id - team: &977 + team: &978 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -185821,11 +185925,11 @@ x-webhooks: type: string enum: - removed - enterprise: *938 - installation: *939 - member: *967 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + member: *968 + organization: *941 + repository: *942 scope: description: The scope of the membership. Currently, can only be `team`. @@ -185902,7 +186006,7 @@ x-webhooks: required: - login - id - team: *977 + team: *978 required: - action - scope @@ -185984,8 +186088,8 @@ x-webhooks: type: string enum: - checks_requested - installation: *939 - merge_group: &979 + installation: *940 + merge_group: &980 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -186004,15 +186108,15 @@ x-webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *978 + head_commit: *979 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -186098,10 +186202,10 @@ x-webhooks: - merged - invalidated - dequeued - installation: *939 - merge_group: *979 - organization: *940 - repository: *941 + installation: *940 + merge_group: *980 + organization: *941 + repository: *942 sender: *4 required: - action @@ -186174,7 +186278,7 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 + enterprise: *939 hook: description: 'The deleted webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -186283,17 +186387,17 @@ x-webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *939 - organization: *940 + installation: *940 + organization: *941 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *980 - required: *981 - x-github-breaking-changes: *982 + properties: *981 + required: *982 + x-github-breaking-changes: *983 nullable: true sender: *4 required: @@ -186374,11 +186478,11 @@ x-webhooks: type: string enum: - closed - enterprise: *938 - installation: *939 - milestone: *973 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + milestone: *974 + organization: *941 + repository: *942 sender: *4 required: - action @@ -186457,9 +186561,9 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - milestone: &983 + enterprise: *939 + installation: *940 + milestone: &984 title: Milestone description: A collection of related issues and pull requests. type: object @@ -186596,8 +186700,8 @@ x-webhooks: - updated_at - due_on - closed_at - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -186676,11 +186780,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - milestone: *973 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + milestone: *974 + organization: *941 + repository: *942 sender: *4 required: - action @@ -186790,11 +186894,11 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - milestone: *973 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + milestone: *974 + organization: *941 + repository: *942 sender: *4 required: - action @@ -186874,11 +186978,11 @@ x-webhooks: type: string enum: - opened - enterprise: *938 - installation: *939 - milestone: *983 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + milestone: *984 + organization: *941 + repository: *942 sender: *4 required: - action @@ -186957,11 +187061,11 @@ x-webhooks: type: string enum: - blocked - blocked_user: *967 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + blocked_user: *968 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -187040,11 +187144,11 @@ x-webhooks: type: string enum: - unblocked - blocked_user: *967 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + blocked_user: *968 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -187120,7 +187224,7 @@ x-webhooks: enum: - created definition: *160 - enterprise: *938 + enterprise: *939 sender: *4 required: - action @@ -187200,8 +187304,8 @@ x-webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 sender: *4 required: - action @@ -187274,8 +187378,8 @@ x-webhooks: enum: - updated definition: *160 - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 sender: *4 required: - action @@ -187347,9 +187451,9 @@ x-webhooks: type: string enum: - updated - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 sender: *4 new_property_values: type: array @@ -187437,9 +187541,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - membership: &984 + enterprise: *939 + installation: *940 + membership: &985 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -187546,8 +187650,8 @@ x-webhooks: - role - organization_url - user - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 required: - action @@ -187625,11 +187729,11 @@ x-webhooks: type: string enum: - member_added - enterprise: *938 - installation: *939 - membership: *984 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + membership: *985 + organization: *941 + repository: *942 sender: *4 required: - action @@ -187708,8 +187812,8 @@ x-webhooks: type: string enum: - member_invited - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -187825,10 +187929,10 @@ x-webhooks: - inviter - team_count - invitation_teams_url - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 - user: *967 + user: *968 required: - action - invitation @@ -187906,11 +188010,11 @@ x-webhooks: type: string enum: - member_removed - enterprise: *938 - installation: *939 - membership: *984 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + membership: *985 + organization: *941 + repository: *942 sender: *4 required: - action @@ -187997,11 +188101,11 @@ x-webhooks: properties: from: type: string - enterprise: *938 - installation: *939 - membership: *984 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + membership: *985 + organization: *941 + repository: *942 sender: *4 required: - action @@ -188079,9 +188183,9 @@ x-webhooks: type: string enum: - published - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 package: description: Information about the package. type: object @@ -188580,7 +188684,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: &985 + items: &986 title: Ruby Gems metadata type: object properties: @@ -188675,7 +188779,7 @@ x-webhooks: - owner - package_version - registry - repository: *941 + repository: *942 sender: *4 required: - action @@ -188752,9 +188856,9 @@ x-webhooks: type: string enum: - updated - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 package: description: Information about the package. type: object @@ -189107,7 +189211,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *985 + items: *986 source_url: type: string format: uri @@ -189177,7 +189281,7 @@ x-webhooks: - owner - package_version - registry - repository: *941 + repository: *942 sender: *4 required: - action @@ -189353,12 +189457,12 @@ x-webhooks: - duration - created_at - updated_at - enterprise: *938 + enterprise: *939 id: type: integer - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - id @@ -189435,7 +189539,7 @@ x-webhooks: type: string enum: - approved - personal_access_token_request: &986 + personal_access_token_request: &987 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -189581,10 +189685,10 @@ x-webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *938 - organization: *940 + enterprise: *939 + organization: *941 sender: *4 - installation: *939 + installation: *940 required: - action - personal_access_token_request @@ -189661,11 +189765,11 @@ x-webhooks: type: string enum: - cancelled - personal_access_token_request: *986 - enterprise: *938 - organization: *940 + personal_access_token_request: *987 + enterprise: *939 + organization: *941 sender: *4 - installation: *939 + installation: *940 required: - action - personal_access_token_request @@ -189741,11 +189845,11 @@ x-webhooks: type: string enum: - created - personal_access_token_request: *986 - enterprise: *938 - organization: *940 + personal_access_token_request: *987 + enterprise: *939 + organization: *941 sender: *4 - installation: *939 + installation: *940 required: - action - personal_access_token_request @@ -189820,11 +189924,11 @@ x-webhooks: type: string enum: - denied - personal_access_token_request: *986 - organization: *940 - enterprise: *938 + personal_access_token_request: *987 + organization: *941 + enterprise: *939 sender: *4 - installation: *939 + installation: *940 required: - action - personal_access_token_request @@ -189929,7 +190033,7 @@ x-webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *987 + last_response: *988 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -189961,8 +190065,8 @@ x-webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 zen: description: Random string of GitHub zen. @@ -190207,10 +190311,10 @@ x-webhooks: - from required: - note - enterprise: *938 - installation: *939 - organization: *940 - project_card: &988 + enterprise: *939 + installation: *940 + organization: *941 + project_card: &989 title: Project Card type: object properties: @@ -190329,7 +190433,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *941 + repository: *942 sender: *4 required: - action @@ -190410,11 +190514,11 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - project_card: *988 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + project_card: *989 + repository: *942 sender: *4 required: - action @@ -190494,9 +190598,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 project_card: title: Project Card type: object @@ -190624,9 +190728,9 @@ x-webhooks: The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *980 - required: *981 - x-github-breaking-changes: *982 + properties: *981 + required: *982 + x-github-breaking-changes: *983 nullable: true sender: *4 required: @@ -190720,11 +190824,11 @@ x-webhooks: - from required: - note - enterprise: *938 - installation: *939 - organization: *940 - project_card: *988 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + project_card: *989 + repository: *942 sender: *4 required: - action @@ -190818,9 +190922,9 @@ x-webhooks: - from required: - column_id - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 project_card: allOf: - title: Project Card @@ -191010,7 +191114,7 @@ x-webhooks: type: string required: - after_id - repository: *941 + repository: *942 sender: *4 required: - action @@ -191090,10 +191194,10 @@ x-webhooks: type: string enum: - closed - enterprise: *938 - installation: *939 - organization: *940 - project: &990 + enterprise: *939 + installation: *940 + organization: *941 + project: &991 title: Project type: object properties: @@ -191217,7 +191321,7 @@ x-webhooks: - creator - created_at - updated_at - repository: *941 + repository: *942 sender: *4 required: - action @@ -191297,10 +191401,10 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - project_column: &989 + enterprise: *939 + installation: *940 + organization: *941 + project_column: &990 title: Project Column type: object properties: @@ -191339,7 +191443,7 @@ x-webhooks: - name - created_at - updated_at - repository: *941 + repository: *942 sender: *4 required: - action @@ -191418,19 +191522,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 - project_column: *989 + enterprise: *939 + installation: *940 + organization: *941 + project_column: *990 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *980 - required: *981 - x-github-breaking-changes: *982 + properties: *981 + required: *982 + x-github-breaking-changes: *983 nullable: true sender: *4 required: @@ -191520,11 +191624,11 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - organization: *940 - project_column: *989 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + project_column: *990 + repository: *942 sender: *4 required: - action @@ -191604,11 +191708,11 @@ x-webhooks: type: string enum: - moved - enterprise: *938 - installation: *939 - organization: *940 - project_column: *989 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + project_column: *990 + repository: *942 sender: *4 required: - action @@ -191688,11 +191792,11 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - project: *990 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + project: *991 + repository: *942 sender: *4 required: - action @@ -191772,19 +191876,19 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 - project: *990 + enterprise: *939 + installation: *940 + organization: *941 + project: *991 repository: title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property when the event occurs from activity in a repository. type: object - properties: *980 - required: *981 - x-github-breaking-changes: *982 + properties: *981 + required: *982 + x-github-breaking-changes: *983 nullable: true sender: *4 required: @@ -191886,11 +191990,11 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - organization: *940 - project: *990 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + project: *991 + repository: *942 sender: *4 required: - action @@ -191969,11 +192073,11 @@ x-webhooks: type: string enum: - reopened - enterprise: *938 - installation: *939 - organization: *940 - project: *990 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + project: *991 + repository: *942 sender: *4 required: - action @@ -192054,9 +192158,9 @@ x-webhooks: type: string enum: - closed - installation: *939 - organization: *940 - projects_v2: *437 + installation: *940 + organization: *941 + projects_v2: *438 sender: *4 required: - action @@ -192137,9 +192241,9 @@ x-webhooks: type: string enum: - created - installation: *939 - organization: *940 - projects_v2: *437 + installation: *940 + organization: *941 + projects_v2: *438 sender: *4 required: - action @@ -192220,9 +192324,9 @@ x-webhooks: type: string enum: - deleted - installation: *939 - organization: *940 - projects_v2: *437 + installation: *940 + organization: *941 + projects_v2: *438 sender: *4 required: - action @@ -192339,9 +192443,9 @@ x-webhooks: type: string to: type: string - installation: *939 - organization: *940 - projects_v2: *437 + installation: *940 + organization: *941 + projects_v2: *438 sender: *4 required: - action @@ -192424,7 +192528,7 @@ x-webhooks: type: string enum: - archived - changes: &994 + changes: &995 type: object properties: archived_at: @@ -192438,9 +192542,9 @@ x-webhooks: type: string nullable: true format: date-time - installation: *939 - organization: *940 - projects_v2_item: &991 + installation: *940 + organization: *941 + projects_v2_item: &992 title: Projects v2 Item description: An item belonging to a project type: object @@ -192458,7 +192562,7 @@ x-webhooks: type: string description: The node ID of the content represented by this item. - content_type: *444 + content_type: *445 creator: *4 created_at: type: string @@ -192575,9 +192679,9 @@ x-webhooks: nullable: true to: type: string - installation: *939 - organization: *940 - projects_v2_item: *991 + installation: *940 + organization: *941 + projects_v2_item: *992 sender: *4 required: - action @@ -192659,9 +192763,9 @@ x-webhooks: type: string enum: - created - installation: *939 - organization: *940 - projects_v2_item: *991 + installation: *940 + organization: *941 + projects_v2_item: *992 sender: *4 required: - action @@ -192742,9 +192846,9 @@ x-webhooks: type: string enum: - deleted - installation: *939 - organization: *940 - projects_v2_item: *991 + installation: *940 + organization: *941 + projects_v2_item: *992 sender: *4 required: - action @@ -192850,7 +192954,7 @@ x-webhooks: oneOf: - type: string - type: integer - - &992 + - &993 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -192872,7 +192976,7 @@ x-webhooks: required: - id - name - - &993 + - &994 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -192906,8 +193010,8 @@ x-webhooks: oneOf: - type: string - type: integer - - *992 - *993 + - *994 required: - field_value - type: object @@ -192923,9 +193027,9 @@ x-webhooks: nullable: true required: - body - installation: *939 - organization: *940 - projects_v2_item: *991 + installation: *940 + organization: *941 + projects_v2_item: *992 sender: *4 required: - action @@ -193020,9 +193124,9 @@ x-webhooks: to: type: string nullable: true - installation: *939 - organization: *940 - projects_v2_item: *991 + installation: *940 + organization: *941 + projects_v2_item: *992 sender: *4 required: - action @@ -193105,10 +193209,10 @@ x-webhooks: type: string enum: - restored - changes: *994 - installation: *939 - organization: *940 - projects_v2_item: *991 + changes: *995 + installation: *940 + organization: *941 + projects_v2_item: *992 sender: *4 required: - action @@ -193190,9 +193294,9 @@ x-webhooks: type: string enum: - reopened - installation: *939 - organization: *940 - projects_v2: *437 + installation: *940 + organization: *941 + projects_v2: *438 sender: *4 required: - action @@ -193273,14 +193377,14 @@ x-webhooks: type: string enum: - created - installation: *939 - organization: *940 - projects_v2_status_update: &997 + installation: *940 + organization: *941 + projects_v2_status_update: &998 title: Projects v2 Status Update description: An status update belonging to a project type: object - properties: *995 - required: *996 + properties: *996 + required: *997 sender: *4 required: - action @@ -193361,9 +193465,9 @@ x-webhooks: type: string enum: - deleted - installation: *939 - organization: *940 - projects_v2_status_update: *997 + installation: *940 + organization: *941 + projects_v2_status_update: *998 sender: *4 required: - action @@ -193499,9 +193603,9 @@ x-webhooks: type: string format: date nullable: true - installation: *939 - organization: *940 - projects_v2_status_update: *997 + installation: *940 + organization: *941 + projects_v2_status_update: *998 sender: *4 required: - action @@ -193572,10 +193676,10 @@ x-webhooks: title: public event type: object properties: - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - repository @@ -193652,13 +193756,13 @@ x-webhooks: type: string enum: - assigned - assignee: *967 - enterprise: *938 - installation: *939 - number: &998 + assignee: *968 + enterprise: *939 + installation: *940 + number: &999 description: The pull request number. type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -195837,7 +195941,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -195964,7 +196068,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -196061,11 +196165,11 @@ x-webhooks: type: string enum: - auto_merge_disabled - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -198237,7 +198341,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -198366,7 +198470,7 @@ x-webhooks: - draft reason: type: string - repository: *941 + repository: *942 sender: *4 required: - action @@ -198463,11 +198567,11 @@ x-webhooks: type: string enum: - auto_merge_enabled - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -200639,7 +200743,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -200768,7 +200872,7 @@ x-webhooks: - draft reason: type: string - repository: *941 + repository: *942 sender: *4 required: - action @@ -200865,13 +200969,13 @@ x-webhooks: type: string enum: - closed - enterprise: *938 - installation: *939 - number: *998 - organization: *940 - pull_request: &999 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 + pull_request: &1000 allOf: - - *779 + - *780 - type: object properties: allow_auto_merge: @@ -200933,7 +201037,7 @@ x-webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *941 + repository: *942 sender: *4 required: - action @@ -201014,12 +201118,12 @@ x-webhooks: type: string enum: - converted_to_draft - enterprise: *938 - installation: *939 - number: *998 - organization: *940 - pull_request: *999 - repository: *941 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 + pull_request: *1000 + repository: *942 sender: *4 required: - action @@ -201099,11 +201203,11 @@ x-webhooks: type: string enum: - demilestoned - enterprise: *938 - milestone: *760 - number: *998 - organization: *940 - pull_request: &1000 + enterprise: *939 + milestone: *761 + number: *999 + organization: *941 + pull_request: &1001 title: Pull Request type: object properties: @@ -203262,7 +203366,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -203431,7 +203535,7 @@ x-webhooks: - active_lock_reason - draft version: '2026-03-10' - repository: *941 + repository: *942 sender: *4 required: - action @@ -203510,11 +203614,11 @@ x-webhooks: type: string enum: - dequeued - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -205677,7 +205781,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -205819,7 +205923,7 @@ x-webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *941 + repository: *942 sender: *4 required: - action @@ -205951,12 +206055,12 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - number: *998 - organization: *940 - pull_request: *999 - repository: *941 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 + pull_request: *1000 + repository: *942 sender: *4 required: - action @@ -206036,11 +206140,11 @@ x-webhooks: type: string enum: - enqueued - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -208203,7 +208307,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -208330,7 +208434,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -208418,11 +208522,11 @@ x-webhooks: type: string enum: - labeled - enterprise: *938 - installation: *939 - label: *961 - number: *998 - organization: *940 + enterprise: *939 + installation: *940 + label: *962 + number: *999 + organization: *941 pull_request: title: Pull Request type: object @@ -210600,7 +210704,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -210727,7 +210831,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -210823,10 +210927,10 @@ x-webhooks: type: string enum: - locked - enterprise: *938 - installation: *939 - number: *998 - organization: *940 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 pull_request: title: Pull Request type: object @@ -213002,7 +213106,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -213129,7 +213233,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -213224,12 +213328,12 @@ x-webhooks: type: string enum: - milestoned - enterprise: *938 - milestone: *760 - number: *998 - organization: *940 - pull_request: *1000 - repository: *941 + enterprise: *939 + milestone: *761 + number: *999 + organization: *941 + pull_request: *1001 + repository: *942 sender: *4 required: - action @@ -213308,12 +213412,12 @@ x-webhooks: type: string enum: - opened - enterprise: *938 - installation: *939 - number: *998 - organization: *940 - pull_request: *999 - repository: *941 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 + pull_request: *1000 + repository: *942 sender: *4 required: - action @@ -213394,12 +213498,12 @@ x-webhooks: type: string enum: - ready_for_review - enterprise: *938 - installation: *939 - number: *998 - organization: *940 - pull_request: *999 - repository: *941 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 + pull_request: *1000 + repository: *942 sender: *4 required: - action @@ -213479,12 +213583,12 @@ x-webhooks: type: string enum: - reopened - enterprise: *938 - installation: *939 - number: *998 - organization: *940 - pull_request: *999 - repository: *941 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 + pull_request: *1000 + repository: *942 sender: *4 required: - action @@ -213850,9 +213954,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pull_request: type: object properties: @@ -215923,7 +216027,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: type: string enum: @@ -216045,7 +216149,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *941 + repository: *942 sender: *4 required: - action @@ -216140,7 +216244,7 @@ x-webhooks: type: string enum: - deleted - comment: &1002 + comment: &1003 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-cloud@latest/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -216425,9 +216529,9 @@ x-webhooks: - start_side - side - reactions - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pull_request: type: object properties: @@ -218486,7 +218590,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: type: string enum: @@ -218608,7 +218712,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *941 + repository: *942 sender: *4 required: - action @@ -218703,11 +218807,11 @@ x-webhooks: type: string enum: - edited - changes: *1001 - comment: *1002 - enterprise: *938 - installation: *939 - organization: *940 + changes: *1002 + comment: *1003 + enterprise: *939 + installation: *940 + organization: *941 pull_request: type: object properties: @@ -220769,7 +220873,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: type: string enum: @@ -220891,7 +220995,7 @@ x-webhooks: - _links - author_association - active_lock_reason - repository: *941 + repository: *942 sender: *4 required: - action @@ -220987,9 +221091,9 @@ x-webhooks: type: string enum: - dismissed - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pull_request: title: Simple Pull Request type: object @@ -223061,7 +223165,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: type: string enum: @@ -223185,7 +223289,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *941 + repository: *942 review: description: The review that was affected. type: object @@ -223447,9 +223551,9 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pull_request: title: Simple Pull Request type: object @@ -225503,8 +225607,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *941 - review: &1003 + repository: *942 + review: &1004 description: The review that was affected. type: object properties: @@ -225745,12 +225849,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: description: The pull request number. type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -227929,7 +228033,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. @@ -228056,7 +228160,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 requested_reviewer: title: User type: object @@ -228140,12 +228244,12 @@ x-webhooks: type: string enum: - review_request_removed - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: description: The pull request number. type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -230331,7 +230435,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. @@ -230458,7 +230562,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 requested_team: title: Team description: Groups of organization members that gives permissions @@ -230673,12 +230777,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: description: The pull request number. type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -232858,7 +232962,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. @@ -232986,7 +233090,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 requested_reviewer: title: User type: object @@ -233071,12 +233175,12 @@ x-webhooks: type: string enum: - review_requested - enterprise: *938 - installation: *939 + enterprise: *939 + installation: *940 number: description: The pull request number. type: integer - organization: *940 + organization: *941 pull_request: title: Pull Request type: object @@ -235247,7 +235351,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. @@ -235375,7 +235479,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 requested_team: title: Team description: Groups of organization members that gives permissions @@ -235579,9 +235683,9 @@ x-webhooks: type: string enum: - submitted - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pull_request: title: Simple Pull Request type: object @@ -237655,7 +237759,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: type: string enum: @@ -237779,8 +237883,8 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *941 - review: *1003 + repository: *942 + review: *1004 sender: *4 required: - action @@ -237875,9 +237979,9 @@ x-webhooks: type: string enum: - resolved - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pull_request: title: Simple Pull Request type: object @@ -239846,7 +239950,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: type: string enum: @@ -239970,7 +240074,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *941 + repository: *942 sender: *4 thread: type: object @@ -240365,9 +240469,9 @@ x-webhooks: type: string enum: - unresolved - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 pull_request: title: Simple Pull Request type: object @@ -242323,7 +242427,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: type: string enum: @@ -242446,7 +242550,7 @@ x-webhooks: - author_association - auto_merge - active_lock_reason - repository: *941 + repository: *942 sender: *4 thread: type: object @@ -242838,11 +242942,11 @@ x-webhooks: type: string enum: - stacked - enterprise: *938 - installation: *939 - stack: *776 - number: *998 - organization: *940 + enterprise: *939 + installation: *940 + stack: *777 + number: *999 + organization: *941 pull_request: title: Pull Request type: object @@ -245020,7 +245124,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -245147,7 +245251,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -245248,10 +245352,10 @@ x-webhooks: type: string before: type: string - enterprise: *938 - installation: *939 - number: *998 - organization: *940 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 pull_request: title: Pull Request type: object @@ -247418,7 +247522,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -247545,7 +247649,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -247642,11 +247746,11 @@ x-webhooks: type: string enum: - unassigned - assignee: *1004 - enterprise: *938 - installation: *939 - number: *998 - organization: *940 + assignee: *1005 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 pull_request: title: Pull Request type: object @@ -249825,7 +249929,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -249952,7 +250056,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -250046,11 +250150,11 @@ x-webhooks: type: string enum: - unlabeled - enterprise: *938 - installation: *939 - label: *961 - number: *998 - organization: *940 + enterprise: *939 + installation: *940 + label: *962 + number: *999 + organization: *941 pull_request: title: Pull Request type: object @@ -252219,7 +252323,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -252346,7 +252450,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -252442,10 +252546,10 @@ x-webhooks: type: string enum: - unlocked - enterprise: *938 - installation: *939 - number: *998 - organization: *940 + enterprise: *939 + installation: *940 + number: *999 + organization: *941 pull_request: title: Pull Request type: object @@ -254607,7 +254711,7 @@ x-webhooks: review_comments_url: type: string format: uri - stack: *776 + stack: *777 state: description: State of this Pull Request. Either `open` or `closed`. type: string @@ -254733,7 +254837,7 @@ x-webhooks: - auto_merge - active_lock_reason - draft - repository: *941 + repository: *942 sender: *4 required: - action @@ -254948,7 +255052,7 @@ x-webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *938 + enterprise: *939 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -255040,8 +255144,8 @@ x-webhooks: - url - author - committer - installation: *939 - organization: *940 + installation: *940 + organization: *941 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -255627,9 +255731,9 @@ x-webhooks: type: string enum: - published - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 registry_package: type: object properties: @@ -256075,7 +256179,7 @@ x-webhooks: type: string rubygems_metadata: type: array - items: *985 + items: *986 summary: type: string tag_name: @@ -256129,7 +256233,7 @@ x-webhooks: - owner - package_version - registry - repository: *941 + repository: *942 sender: *4 required: - action @@ -256207,9 +256311,9 @@ x-webhooks: type: string enum: - updated - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 registry_package: type: object properties: @@ -256517,7 +256621,7 @@ x-webhooks: - published_at rubygems_metadata: type: array - items: *985 + items: *986 summary: type: string tag_name: @@ -256566,7 +256670,7 @@ x-webhooks: - owner - package_version - registry - repository: *941 + repository: *942 sender: *4 required: - action @@ -256643,10 +256747,10 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - release: &1005 + enterprise: *939 + installation: *940 + organization: *941 + release: &1006 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -256964,7 +257068,7 @@ x-webhooks: - updated_at - zipball_url - body - repository: *941 + repository: *942 sender: *4 required: - action @@ -257041,11 +257145,11 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 - release: *1005 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + release: *1006 + repository: *942 sender: *4 required: - action @@ -257162,11 +257266,11 @@ x-webhooks: type: boolean required: - to - enterprise: *938 - installation: *939 - organization: *940 - release: *1005 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + release: *1006 + repository: *942 sender: *4 required: - action @@ -257244,9 +257348,9 @@ x-webhooks: type: string enum: - prereleased - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) @@ -257568,7 +257672,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *941 + repository: *942 sender: *4 required: - action @@ -257644,10 +257748,10 @@ x-webhooks: type: string enum: - published - enterprise: *938 - installation: *939 - organization: *940 - release: &1006 + enterprise: *939 + installation: *940 + organization: *941 + release: &1007 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest/rest/releases/releases/#get-a-release) object. @@ -257966,7 +258070,7 @@ x-webhooks: type: string nullable: true format: uri - repository: *941 + repository: *942 sender: *4 required: - action @@ -258042,11 +258146,11 @@ x-webhooks: type: string enum: - released - enterprise: *938 - installation: *939 - organization: *940 - release: *1005 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + release: *1006 + repository: *942 sender: *4 required: - action @@ -258122,11 +258226,11 @@ x-webhooks: type: string enum: - unpublished - enterprise: *938 - installation: *939 - organization: *940 - release: *1006 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + release: *1007 + repository: *942 sender: *4 required: - action @@ -258202,11 +258306,11 @@ x-webhooks: type: string enum: - published - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - repository_advisory: *834 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + repository_advisory: *835 sender: *4 required: - action @@ -258282,11 +258386,11 @@ x-webhooks: type: string enum: - reported - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - repository_advisory: *834 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + repository_advisory: *835 sender: *4 required: - action @@ -258362,10 +258466,10 @@ x-webhooks: type: string enum: - archived - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -258442,10 +258546,10 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -258523,10 +258627,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -258610,10 +258714,10 @@ x-webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -258725,10 +258829,10 @@ x-webhooks: nullable: true items: type: string - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -258800,10 +258904,10 @@ x-webhooks: title: repository_import event type: object properties: - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 status: type: string @@ -258884,10 +258988,10 @@ x-webhooks: type: string enum: - privatized - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -258964,10 +259068,10 @@ x-webhooks: type: string enum: - publicized - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -259061,10 +259165,10 @@ x-webhooks: - name required: - repository - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -259144,10 +259248,10 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 repository_ruleset: *199 sender: *4 required: @@ -259226,10 +259330,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 repository_ruleset: *199 sender: *4 required: @@ -259308,10 +259412,10 @@ x-webhooks: type: string enum: - edited - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 repository_ruleset: *199 changes: type: object @@ -259373,16 +259477,16 @@ x-webhooks: properties: added: type: array - items: *801 + items: *802 deleted: type: array - items: *801 + items: *802 updated: type: array items: type: object properties: - rule: *801 + rule: *802 changes: type: object properties: @@ -259616,10 +259720,10 @@ x-webhooks: - from required: - owner - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -259697,10 +259801,10 @@ x-webhooks: type: string enum: - unarchived - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -259778,7 +259882,7 @@ x-webhooks: type: string enum: - create - alert: &1007 + alert: &1008 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -259900,10 +260004,10 @@ x-webhooks: enum: - auto_dismissed - open - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -260109,10 +260213,10 @@ x-webhooks: type: string enum: - dismissed - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -260190,11 +260294,11 @@ x-webhooks: type: string enum: - reopen - alert: *1007 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1008 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -260393,10 +260497,10 @@ x-webhooks: enum: - fixed - open - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -260474,7 +260578,7 @@ x-webhooks: type: string enum: - assigned - alert: &1009 + alert: &1010 type: object properties: number: *136 @@ -260624,12 +260728,12 @@ x-webhooks: properties: *20 required: *21 nullable: true - metadata: *1008 + metadata: *1009 assignee: *4 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -260707,11 +260811,11 @@ x-webhooks: type: string enum: - created - alert: *1009 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1010 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -260792,11 +260896,11 @@ x-webhooks: type: string enum: - created - alert: *1009 - installation: *939 - location: *1010 - organization: *940 - repository: *941 + alert: *1010 + installation: *940 + location: *1011 + organization: *941 + repository: *942 sender: *4 required: - location @@ -261034,11 +261138,11 @@ x-webhooks: type: string enum: - metadata_created - alert: *1009 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1010 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -261115,11 +261219,11 @@ x-webhooks: type: string enum: - metadata_removed - alert: *1009 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1010 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -261196,11 +261300,11 @@ x-webhooks: type: string enum: - publicly_leaked - alert: *1009 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1010 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -261278,11 +261382,11 @@ x-webhooks: type: string enum: - reopened - alert: *1009 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1010 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -261360,11 +261464,11 @@ x-webhooks: type: string enum: - resolved - alert: *1009 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1010 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -261442,12 +261546,12 @@ x-webhooks: type: string enum: - unassigned - alert: *1009 + alert: *1010 assignee: *4 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -261525,11 +261629,11 @@ x-webhooks: type: string enum: - validated - alert: *1009 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + alert: *1010 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -261655,10 +261759,10 @@ x-webhooks: - organization - enterprise nullable: true - repository: *941 - enterprise: *938 - installation: *939 - organization: *940 + repository: *942 + enterprise: *939 + installation: *940 + organization: *941 sender: *4 required: - action @@ -261736,11 +261840,11 @@ x-webhooks: type: string enum: - published - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - security_advisory: &1011 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + security_advisory: &1012 description: The details of the security advisory, including summary, description, and severity. type: object @@ -261941,11 +262045,11 @@ x-webhooks: type: string enum: - updated - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 - security_advisory: *1011 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 + security_advisory: *1012 sender: *4 required: - action @@ -262018,10 +262122,10 @@ x-webhooks: type: string enum: - withdrawn - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -262213,11 +262317,11 @@ x-webhooks: from: type: object properties: - security_and_analysis: *455 - enterprise: *938 - installation: *939 - organization: *940 - repository: *517 + security_and_analysis: *456 + enterprise: *939 + installation: *940 + organization: *941 + repository: *518 sender: *4 required: - changes @@ -262295,12 +262399,12 @@ x-webhooks: type: string enum: - cancelled - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - sponsorship: &1012 + sponsorship: &1013 type: object properties: created_at: @@ -262601,12 +262705,12 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - sponsorship: *1012 + sponsorship: *1013 required: - action - sponsorship @@ -262694,12 +262798,12 @@ x-webhooks: type: string required: - from - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - sponsorship: *1012 + sponsorship: *1013 required: - action - changes @@ -262776,17 +262880,17 @@ x-webhooks: type: string enum: - pending_cancellation - effective_date: &1013 + effective_date: &1014 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: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - sponsorship: *1012 + sponsorship: *1013 required: - action - sponsorship @@ -262860,7 +262964,7 @@ x-webhooks: type: string enum: - pending_tier_change - changes: &1014 + changes: &1015 type: object properties: tier: @@ -262904,13 +263008,13 @@ x-webhooks: - from required: - tier - effective_date: *1013 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + effective_date: *1014 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - sponsorship: *1012 + sponsorship: *1013 required: - action - changes @@ -262987,13 +263091,13 @@ x-webhooks: type: string enum: - tier_changed - changes: *1014 - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + changes: *1015 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - sponsorship: *1012 + sponsorship: *1013 required: - action - changes @@ -263067,10 +263171,10 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -263153,10 +263257,10 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -263576,15 +263680,15 @@ x-webhooks: status. type: string nullable: true - enterprise: *938 + enterprise: *939 id: description: The unique identifier of the status. type: integer - installation: *939 + installation: *940 name: type: string - organization: *940 - repository: *941 + organization: *941 + repository: *942 sender: *4 sha: description: The Commit SHA. @@ -263699,9 +263803,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *235 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -263790,9 +263894,9 @@ x-webhooks: description: The ID of the sub-issue. type: number sub_issue: *235 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -263881,9 +263985,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *235 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -263972,9 +264076,9 @@ x-webhooks: description: The ID of the parent issue. type: number parent_issue: *235 - installation: *939 - organization: *940 - repository: *941 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -264050,12 +264154,12 @@ x-webhooks: title: team_add event type: object properties: - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 - team: &1015 + team: &1016 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -264278,9 +264382,9 @@ x-webhooks: type: string enum: - added_to_repository - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 repository: title: Repository description: A git repository @@ -264738,7 +264842,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1015 + team: *1016 required: - action - team @@ -264814,9 +264918,9 @@ x-webhooks: type: string enum: - created - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 repository: title: Repository description: A git repository @@ -265274,7 +265378,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1015 + team: *1016 required: - action - team @@ -265351,9 +265455,9 @@ x-webhooks: type: string enum: - deleted - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 repository: title: Repository description: A git repository @@ -265811,7 +265915,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1015 + team: *1016 required: - action - team @@ -265955,9 +266059,9 @@ x-webhooks: - from required: - permissions - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 repository: title: Repository description: A git repository @@ -266415,7 +266519,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1015 + team: *1016 required: - action - changes @@ -266493,9 +266597,9 @@ x-webhooks: type: string enum: - removed_from_repository - enterprise: *938 - installation: *939 - organization: *940 + enterprise: *939 + installation: *940 + organization: *941 repository: title: Repository description: A git repository @@ -266953,7 +267057,7 @@ x-webhooks: - topics - visibility sender: *4 - team: *1015 + team: *1016 required: - action - team @@ -267029,10 +267133,10 @@ x-webhooks: type: string enum: - started - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 required: - action @@ -267105,16 +267209,16 @@ x-webhooks: title: workflow_dispatch event type: object properties: - enterprise: *938 + enterprise: *939 inputs: type: object nullable: true additionalProperties: true - installation: *939 - organization: *940 + installation: *940 + organization: *941 ref: type: string - repository: *941 + repository: *942 sender: *4 workflow: type: string @@ -267196,10 +267300,10 @@ x-webhooks: type: string enum: - completed - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 workflow_job: allOf: @@ -267436,7 +267540,7 @@ x-webhooks: type: string required: - conclusion - deployment: *660 + deployment: *661 required: - action - repository @@ -267515,10 +267619,10 @@ x-webhooks: type: string enum: - in_progress - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 workflow_job: allOf: @@ -267778,7 +267882,7 @@ x-webhooks: required: - status - steps - deployment: *660 + deployment: *661 required: - action - repository @@ -267857,10 +267961,10 @@ x-webhooks: type: string enum: - queued - enterprise: *938 - installation: *939 - organization: *940 - repository: *941 + enterprise: *939 + installation: *940 + organization: *941 + repository: *942 sender: *4 workflow_job: type: object @@ -267995,7 +268099,7 @@ x-webhooks: - workflow_name {"code":"deadline_exceeded","msg":"operation timed out"}