diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.json b/descriptions-next/api.github.com/api.github.com.2022-11-28.json index af6ae92ce3..45feb496f4 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.json +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.json @@ -16016,6 +16016,230 @@ } } }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/issue-type" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-create-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-update-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/delete-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "responses": { + "204": { + "description": "Response" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, "/orgs/{org}/issues": { "get": { "summary": "List organization issues assigned to the authenticated user", @@ -16068,6 +16292,15 @@ { "$ref": "#/components/parameters/labels" }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -19659,7 +19892,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -46466,6 +46699,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -46660,6 +46902,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -47525,6 +47777,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -95794,7 +96056,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -99618,6 +99880,73 @@ "updated_at" ] }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "author-association": { "title": "author_association", "type": "string", @@ -99975,6 +100304,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -106381,6 +106713,98 @@ "limit" ] }, + "organization-create-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "organization-update-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -107694,6 +108118,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -129002,6 +129441,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "anyOf": [ { @@ -135742,6 +136184,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -137195,6 +137640,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -161295,6 +161743,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -162947,6 +163398,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -164608,6 +165062,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -166303,6 +166760,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -167812,6 +168272,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -169128,6 +169591,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -170431,6 +170897,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -171731,6 +172200,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -173059,6 +173531,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -174355,6 +174830,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -177531,6 +178009,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -178995,6 +179476,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -180153,6 +180637,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -182199,6 +182686,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -283668,6 +284158,36 @@ } ] }, + "issue-type-items": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + }, + "issue-type": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + }, "codespace": { "value": { "id": 1, @@ -307479,6 +307999,15 @@ "type": "integer" } }, + "issue-type-id": { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, "codespace-name": { "name": "codespace_name", "in": "path", diff --git a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml index 528b69180f..485cc3a673 100644 --- a/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml +++ b/descriptions-next/api.github.com/api.github.com.2022-11-28.yaml @@ -11626,6 +11626,160 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type-items" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-create-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-update-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + responses: + '204': + description: Response + '422': + "$ref": "#/components/responses/validation_failed_simple" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -11679,6 +11833,12 @@ paths: - all default: open - "$ref": "#/components/parameters/labels" + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -14275,6 +14435,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -33990,6 +34154,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -34130,6 +34302,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -34739,6 +34918,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -69234,7 +69421,7 @@ components: - write dependabot_secrets: type: string - description: The leve of permission to grant the access token to manage + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -72219,6 +72406,58 @@ components: - url - created_at - updated_at + issue-type: + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description author-association: title: author_association type: string @@ -72468,6 +72707,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -77272,6 +77513,80 @@ components: "$ref": "#/components/schemas/interaction-expiry" required: - limit + organization-create-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + organization-update-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -78258,6 +78573,17 @@ components: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type custom-property-value: @@ -93505,6 +93831,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: anyOf: - type: 'null' @@ -98497,6 +98825,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -99577,6 +99907,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -117219,6 +117551,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -118430,6 +118764,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -119648,6 +119984,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -120891,6 +121229,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -121993,6 +122333,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -122976,6 +123318,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -123938,6 +124282,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -124905,6 +125251,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -125896,6 +126244,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -126859,6 +127209,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -129223,6 +129575,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -130314,6 +130668,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -131172,6 +131528,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -132700,6 +133058,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -209743,6 +210103,28 @@ components: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: + issue-type-items: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + issue-type: + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' codespace: value: id: 1 @@ -230338,6 +230720,13 @@ components: required: true schema: type: integer + issue-type-id: + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer codespace-name: name: codespace_name in: path diff --git a/descriptions-next/api.github.com/api.github.com.json b/descriptions-next/api.github.com/api.github.com.json index af6ae92ce3..45feb496f4 100644 --- a/descriptions-next/api.github.com/api.github.com.json +++ b/descriptions-next/api.github.com/api.github.com.json @@ -16016,6 +16016,230 @@ } } }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/issue-type" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-create-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-update-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/delete-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "responses": { + "204": { + "description": "Response" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, "/orgs/{org}/issues": { "get": { "summary": "List organization issues assigned to the authenticated user", @@ -16068,6 +16292,15 @@ { "$ref": "#/components/parameters/labels" }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -19659,7 +19892,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -46466,6 +46699,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -46660,6 +46902,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -47525,6 +47777,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -95794,7 +96056,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -99618,6 +99880,73 @@ "updated_at" ] }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "author-association": { "title": "author_association", "type": "string", @@ -99975,6 +100304,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -106381,6 +106713,98 @@ "limit" ] }, + "organization-create-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "organization-update-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -107694,6 +108118,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -129002,6 +129441,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "anyOf": [ { @@ -135742,6 +136184,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -137195,6 +137640,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -161295,6 +161743,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -162947,6 +163398,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -164608,6 +165062,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -166303,6 +166760,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -167812,6 +168272,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -169128,6 +169591,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -170431,6 +170897,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -171731,6 +172200,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -173059,6 +173531,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -174355,6 +174830,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -177531,6 +178009,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -178995,6 +179476,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -180153,6 +180637,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -182199,6 +182686,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -283668,6 +284158,36 @@ } ] }, + "issue-type-items": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + }, + "issue-type": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + }, "codespace": { "value": { "id": 1, @@ -307479,6 +307999,15 @@ "type": "integer" } }, + "issue-type-id": { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, "codespace-name": { "name": "codespace_name", "in": "path", diff --git a/descriptions-next/api.github.com/api.github.com.yaml b/descriptions-next/api.github.com/api.github.com.yaml index 528b69180f..485cc3a673 100644 --- a/descriptions-next/api.github.com/api.github.com.yaml +++ b/descriptions-next/api.github.com/api.github.com.yaml @@ -11626,6 +11626,160 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type-items" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-create-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-update-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + responses: + '204': + description: Response + '422': + "$ref": "#/components/responses/validation_failed_simple" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -11679,6 +11833,12 @@ paths: - all default: open - "$ref": "#/components/parameters/labels" + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -14275,6 +14435,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -33990,6 +34154,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -34130,6 +34302,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -34739,6 +34918,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -69234,7 +69421,7 @@ components: - write dependabot_secrets: type: string - description: The leve of permission to grant the access token to manage + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -72219,6 +72406,58 @@ components: - url - created_at - updated_at + issue-type: + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description author-association: title: author_association type: string @@ -72468,6 +72707,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -77272,6 +77513,80 @@ components: "$ref": "#/components/schemas/interaction-expiry" required: - limit + organization-create-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + organization-update-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -78258,6 +78573,17 @@ components: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type custom-property-value: @@ -93505,6 +93831,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: anyOf: - type: 'null' @@ -98497,6 +98825,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -99577,6 +99907,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -117219,6 +117551,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -118430,6 +118764,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -119648,6 +119984,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -120891,6 +121229,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -121993,6 +122333,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -122976,6 +123318,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -123938,6 +124282,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -124905,6 +125251,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -125896,6 +126244,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -126859,6 +127209,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -129223,6 +129575,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -130314,6 +130668,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -131172,6 +131528,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -132700,6 +133058,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -209743,6 +210103,28 @@ components: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: + issue-type-items: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + issue-type: + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' codespace: value: id: 1 @@ -230338,6 +230720,13 @@ components: required: true schema: type: integer + issue-type-id: + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer codespace-name: name: codespace_name in: path diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json index e1275ea6a7..e6c3d083bd 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.json @@ -5485,7 +5485,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -6570,7 +6570,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7434,7 +7434,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7863,7 +7863,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -10138,7 +10138,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -11261,7 +11261,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12248,7 +12248,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12938,7 +12938,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -27264,6 +27264,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -45356,6 +45423,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -52072,6 +52206,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -94842,6 +95043,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -101819,7 +102087,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -102919,7 +103187,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -104958,25 +105226,1001 @@ } }, "x-github": { - "triggersNotification": true, + "triggersNotification": true, + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/invitations/{invitation_id}/teams": { + "get": { + "summary": "List organization invitation teams", + "description": "List all teams associated with an invitation. In order to see invitations in an organization, the authenticated user must be an organization owner.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-invitation-teams", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/members#list-organization-invitation-teams" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "invitation_id", + "description": "The unique identifier of the invitation.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VGVhbTE=" + ] + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1" + ] + }, + "members_url": { + "type": "string", + "examples": [ + "https://api.github.com/organizations/1/team/1/members{/member}" + ] + }, + "name": { + "description": "Name of the team", + "type": "string", + "examples": [ + "Justice League" + ] + }, + "description": { + "description": "Description of the team", + "type": [ + "string", + "null" + ], + "examples": [ + "A great team." + ] + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "examples": [ + "admin" + ] + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "examples": [ + "closed" + ] + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "examples": [ + "notifications_enabled" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "repositories_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1/repos" + ] + }, + "slug": { + "type": "string", + "examples": [ + "justice-league" + ] + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "type": "string", + "examples": [ + "uid=example,ou=users,dc=github,dc=com" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 1, + "node_id": "MDQ6VGVhbTE=", + "url": "https://api.github.com/teams/1", + "html_url": "https://github.com/orgs/github/teams/justice-league", + "name": "Justice League", + "slug": "justice-league", + "description": "A great team.", + "privacy": "closed", + "notification_setting": "notifications_enabled", + "permission": "admin", + "members_url": "https://api.github.com/teams/1/members{/member}", + "repositories_url": "https://api.github.com/teams/1/repos", + "parent": null + } + ] + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } - } - }, - "/orgs/{org}/invitations/{invitation_id}/teams": { - "get": { - "summary": "List organization invitation teams", - "description": "List all teams associated with an invitation. In order to see invitations in an organization, the authenticated user must be an organization owner.", + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", "tags": [ "orgs" ], - "operationId": "orgs/list-invitation-teams", + "operationId": "orgs/delete-issue-type", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/members#list-organization-invitation-teams" + "url": "https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization" }, "parameters": [ { @@ -104989,281 +106233,47 @@ } }, { - "name": "invitation_id", - "description": "The unique identifier of the invitation.", + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", "in": "path", "required": true, "schema": { "type": "integer" } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "name": "page", - "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } } ], "responses": { - "200": { - "description": "Response", + "204": { + "description": "Response" + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", "content": { "application/json": { "schema": { - "type": "array", - "items": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "slug": { - "type": "string" - }, - "description": { - "type": [ - "string", - "null" - ] - }, - "privacy": { - "type": "string" - }, - "notification_setting": { - "type": "string" - }, - "permission": { - "type": "string" - }, - "permissions": { - "type": "object", - "properties": { - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - }, - "admin": { - "type": "boolean" - } - }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] - }, - "url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "anyOf": [ - { - "type": "null" - }, - { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "examples": [ - 1 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDQ6VGVhbTE=" - ] - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1" - ] - }, - "members_url": { - "type": "string", - "examples": [ - "https://api.github.com/organizations/1/team/1/members{/member}" - ] - }, - "name": { - "description": "Name of the team", - "type": "string", - "examples": [ - "Justice League" - ] - }, - "description": { - "description": "Description of the team", - "type": [ - "string", - "null" - ], - "examples": [ - "A great team." - ] - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "examples": [ - "admin" - ] - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "examples": [ - "closed" - ] - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "examples": [ - "notifications_enabled" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "repositories_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1/repos" - ] - }, - "slug": { - "type": "string", - "examples": [ - "justice-league" - ] - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "type": "string", - "examples": [ - "uid=example,ou=users,dc=github,dc=com" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ] - } - ] - } + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "parent" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 1, - "node_id": "MDQ6VGVhbTE=", - "url": "https://api.github.com/teams/1", - "html_url": "https://github.com/orgs/github/teams/justice-league", - "name": "Justice League", - "slug": "justice-league", - "description": "A great team.", - "privacy": "closed", - "notification_setting": "notifications_enabled", - "permission": "admin", - "members_url": "https://api.github.com/teams/1/members{/member}", - "repositories_url": "https://api.github.com/teams/1/repos", - "parent": null + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" } - ] + } } } } - }, - "headers": { - "Link": { - "example": "; rel=\"next\", ; rel=\"last\"", - "schema": { - "type": "string" - } - } } }, "404": { @@ -105297,7 +106307,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -105365,6 +106375,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -106671,6 +107690,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -133908,7 +134994,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -134597,6 +135683,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -314058,6 +315159,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -331716,7 +332884,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -335772,6 +336940,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -337105,6 +338282,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -339010,6 +340254,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -340280,6 +341534,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -347704,6 +349025,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -352466,6 +353854,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -357025,6 +358480,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -358914,6 +360436,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -360182,6 +361714,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -363350,6 +364949,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -366315,6 +367981,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -385993,6 +387726,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -389055,6 +390855,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -392085,6 +393952,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -395220,6 +397154,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -409055,6 +411056,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -526743,6 +528811,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "performed_via_github_app": { "anyOf": [ { @@ -571931,7 +574066,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -575817,6 +577952,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -610112,6 +612314,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -613877,6 +616146,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -617644,6 +619980,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -622162,7 +624565,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -628733,6 +631136,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -632500,6 +634970,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -802862,7 +805399,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -805922,7 +808459,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -808887,7 +811424,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -811852,7 +814389,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -814951,7 +817488,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -818057,7 +820594,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -823158,7 +825695,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -827560,6 +830097,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -831796,6 +834400,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -836056,6 +838727,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -839753,6 +842491,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -843003,6 +845808,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -846458,6 +849330,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -849720,6 +852659,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -853159,6 +856165,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -856445,6 +859518,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -859759,6 +862899,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -863001,6 +866208,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -868313,6 +871587,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -871551,6 +874892,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -874925,6 +878333,73 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -877920,6 +881395,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -879929,6 +883471,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -883275,6 +886884,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -886520,6 +890196,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -889832,6 +893575,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -893047,6 +896857,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -1303713,6 +1307590,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1307373,6 +1311317,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1311987,6 +1315998,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1315647,6 +1319725,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1320261,6 +1324406,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1323921,6 +1328133,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1328535,6 +1332814,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1332195,6 +1336541,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml index c2f16b14f2..b0df5e8a44 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.2022-11-28.deref.yaml @@ -897,7 +897,7 @@ paths: - subscriptions_url - type - url - type: &238 + type: &241 type: string description: The type of credit the user is receiving. enum: @@ -1063,7 +1063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &554 + - &557 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -2364,7 +2364,7 @@ paths: - write dependabot_secrets: type: string - description: The leve of permission to grant the access + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -8951,7 +8951,7 @@ paths: - direct - transitive - - security_advisory: &406 + security_advisory: &409 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9219,7 +9219,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &407 + auto_dismissed_at: &410 type: - string - 'null' @@ -9593,7 +9593,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &229 + - &232 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9604,7 +9604,7 @@ paths: enum: - open - resolved - - &230 + - &233 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9614,7 +9614,7 @@ paths: required: false schema: type: string - - &231 + - &234 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9623,7 +9623,7 @@ paths: required: false schema: type: string - - &232 + - &235 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. @@ -9639,7 +9639,7 @@ paths: - *17 - *37 - *38 - - &233 + - &236 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9648,7 +9648,7 @@ paths: required: false schema: type: string - - &234 + - &237 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9657,7 +9657,7 @@ paths: schema: type: boolean default: false - - &235 + - &238 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9673,7 +9673,7 @@ paths: application/json: schema: type: array - items: &236 + items: &239 type: object properties: number: *52 @@ -9689,14 +9689,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &546 + state: &549 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: &547 + resolution: &550 type: - string - 'null' @@ -9801,7 +9801,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &237 + default: &240 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10254,7 +10254,7 @@ paths: milestone: anyOf: - type: 'null' - - &394 + - &397 title: Milestone description: A collection of related issues and pull requests. @@ -10426,6 +10426,59 @@ paths: timeline_url: type: string format: uri + type: &181 + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description repository: *59 performed_via_github_app: anyOf: @@ -10518,7 +10571,7 @@ paths: - author_association - created_at - updated_at - comment: &453 + comment: &456 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11093,7 +11146,7 @@ paths: url: type: string format: uri - user: &577 + user: &580 title: Public User description: Public User type: object @@ -12988,7 +13041,7 @@ paths: - closed - all default: open - - &181 + - &184 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13039,7 +13092,7 @@ paths: type: array items: *74 examples: - default: &182 + default: &185 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14450,14 +14503,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &262 + - &265 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &263 + - &266 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14528,7 +14581,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &274 + '301': &277 description: Moved permanently content: application/json: @@ -14550,7 +14603,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &482 + - &485 name: all description: If `true`, show notifications marked as read. in: query @@ -14558,7 +14611,7 @@ paths: schema: type: boolean default: false - - &483 + - &486 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14568,7 +14621,7 @@ paths: type: boolean default: false - *64 - - &484 + - &487 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: @@ -14939,7 +14992,7 @@ paths: type: boolean examples: - false - security_and_analysis: &219 + security_and_analysis: &222 type: - object - 'null' @@ -15086,7 +15139,7 @@ paths: - url - subscription_url examples: - default: &485 + default: &488 value: - id: '1' repository: @@ -15707,7 +15760,7 @@ paths: - avatar_url - description examples: - default: &594 + default: &597 value: - login: github id: 1 @@ -16683,7 +16736,7 @@ paths: type: integer repository_cache_usages: type: array - items: &279 + items: &282 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17581,7 +17634,7 @@ paths: - all - local_only - selected - selected_actions_url: &285 + selected_actions_url: &288 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` @@ -17671,7 +17724,7 @@ paths: type: array items: *59 examples: - default: &588 + default: &591 value: total_count: 1 repositories: @@ -17999,7 +18052,7 @@ paths: description: Response content: application/json: - schema: &289 + schema: &292 type: object properties: default_workflow_permissions: &108 @@ -18050,7 +18103,7 @@ paths: required: false content: application/json: - schema: &290 + schema: &293 type: object properties: default_workflow_permissions: *108 @@ -18543,7 +18596,7 @@ paths: type: array items: *115 examples: - default: &580 + default: &583 value: total_count: 1 repositories: @@ -19190,7 +19243,7 @@ paths: application/json: schema: type: array - items: &291 + items: &294 title: Runner Application description: Runner Application type: object @@ -19215,7 +19268,7 @@ paths: - download_url - filename examples: - default: &292 + default: &295 value: - os: osx architecture: x64 @@ -19301,7 +19354,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &293 + '201': &296 description: Response content: application/json: @@ -19416,7 +19469,7 @@ paths: - token - expires_at examples: - default: &294 + default: &297 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19455,7 +19508,7 @@ paths: application/json: schema: *119 examples: - default: &295 + default: &298 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19489,7 +19542,7 @@ paths: application/json: schema: *117 examples: - default: &296 + default: &299 value: id: 23 name: MBP @@ -19714,7 +19767,7 @@ paths: - *90 - *116 responses: - '200': &297 + '200': &300 description: Response content: application/json: @@ -19771,7 +19824,7 @@ paths: parameters: - *90 - *116 - - &298 + - &301 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19903,7 +19956,7 @@ paths: description: Response content: application/json: - schema: &310 + schema: &313 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19938,7 +19991,7 @@ paths: - key_id - key examples: - default: &311 + default: &314 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20351,7 +20404,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *90 - - &284 + - &287 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -20891,7 +20944,7 @@ paths: bundle_url: type: string examples: - default: &324 + default: &327 value: attestations: - bundle: @@ -21010,7 +21063,7 @@ paths: type: array items: *4 examples: - default: &183 + default: &186 value: - login: octocat id: 1 @@ -21128,7 +21181,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *90 - - &349 + - &352 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`, @@ -21138,7 +21191,7 @@ paths: schema: &131 type: string description: The name of the tool used to generate the code scanning analysis. - - &350 + - &353 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 @@ -21162,7 +21215,7 @@ paths: be returned. in: query required: false - schema: &352 + schema: &355 type: string description: State of a code scanning alert. enum: @@ -21185,7 +21238,7 @@ paths: be returned. in: query required: false - schema: &353 + schema: &356 type: string description: Severity of a code scanning alert. enum: @@ -21211,7 +21264,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: &354 + instances_url: &357 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -21233,7 +21286,7 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: &355 + dismissed_reason: &358 type: - string - 'null' @@ -21244,14 +21297,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &356 + dismissed_comment: &359 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &357 + rule: &360 type: object properties: id: @@ -21312,7 +21365,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &358 + tool: &361 type: object properties: name: *131 @@ -21323,15 +21376,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *132 - most_recent_instance: &359 + most_recent_instance: &362 type: object properties: - ref: &351 + ref: &354 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &369 + analysis_key: &372 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -21342,7 +21395,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &370 + category: &373 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22586,7 +22639,7 @@ paths: type: integer codespaces: type: array - items: &184 + items: &187 type: object title: Codespace description: A codespace. @@ -22621,7 +22674,7 @@ paths: machine: anyOf: - type: 'null' - - &382 + - &385 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -22908,7 +22961,7 @@ paths: - pulls_url - recent_folders examples: - default: &185 + default: &188 value: total_count: 3 codespaces: @@ -23573,7 +23626,7 @@ paths: - updated_at - visibility examples: - default: &383 + default: &386 value: total_count: 2 secrets: @@ -23611,7 +23664,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &387 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -23646,7 +23699,7 @@ paths: - key_id - key examples: - default: &385 + default: &388 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23678,7 +23731,7 @@ paths: application/json: schema: *141 examples: - default: &387 + default: &390 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -24145,7 +24198,7 @@ paths: currently being billed. seats: type: array - items: &187 + items: &190 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -24219,7 +24272,7 @@ paths: parent: anyOf: - type: 'null' - - &195 + - &198 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -24873,7 +24926,7 @@ paths: application/json: schema: type: array - items: &242 + items: &245 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -25188,7 +25241,7 @@ paths: - date additionalProperties: true examples: - default: &243 + default: &246 value: - date: '2024-06-24' total_active_users: 24 @@ -25290,7 +25343,7 @@ paths: '500': *140 '403': *27 '404': *6 - '422': &244 + '422': &247 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -25358,7 +25411,7 @@ paths: application/json: schema: type: array - items: &245 + items: &248 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -25446,7 +25499,7 @@ paths: - breakdown additionalProperties: false examples: - default: &246 + default: &249 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -25681,7 +25734,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &413 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25700,7 +25753,7 @@ paths: - key_id - key examples: - default: &411 + default: &414 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26027,7 +26080,7 @@ paths: application/json: schema: type: array - items: &197 + items: &200 title: Package description: A software package type: object @@ -26098,7 +26151,7 @@ paths: - created_at - updated_at examples: - default: &198 + default: &201 value: - id: 197 name: hello_docker @@ -27521,7 +27574,7 @@ paths: application/json: schema: *20 examples: - default: &449 + default: &452 value: id: 1 account: @@ -27749,7 +27802,7 @@ paths: required: true content: application/json: - schema: &450 + schema: &453 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -28035,7 +28088,7 @@ paths: type: array items: *180 examples: - default: &196 + default: &199 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -28058,6 +28111,243 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - *90 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *181 + examples: + default: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - *90 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *181 + examples: + default: &182 + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - *90 + - &183 + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *181 + examples: + default: *182 + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - *90 + - *183 + responses: + '204': + description: Response + '422': *7 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -28110,7 +28400,13 @@ paths: - closed - all default: open - - *181 + - *184 + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -28135,7 +28431,7 @@ paths: type: array items: *74 examples: - default: *182 + default: *185 headers: Link: *57 '404': *6 @@ -28193,7 +28489,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '422': *15 @@ -28289,9 +28585,9 @@ paths: type: integer codespaces: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 '304': *35 '500': *140 '401': *23 @@ -28318,7 +28614,7 @@ paths: parameters: - *90 - *128 - - &186 + - &189 name: codespace_name in: path required: true @@ -28353,15 +28649,15 @@ paths: parameters: - *90 - *128 - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: &381 + default: &384 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -28541,7 +28837,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *187 + schema: *190 examples: default: value: @@ -28616,7 +28912,7 @@ paths: description: Response content: application/json: - schema: &188 + schema: &191 title: Org Membership description: Org Membership type: object @@ -28669,7 +28965,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &189 + response-if-user-has-an-active-admin-membership-with-organization: &192 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -28766,9 +29062,9 @@ paths: description: Response content: application/json: - schema: *188 + schema: *191 examples: - response-if-user-already-had-membership-with-organization: *189 + response-if-user-already-had-membership-with-organization: *192 '422': *15 '403': *27 x-github: @@ -28837,7 +29133,7 @@ paths: application/json: schema: type: array - items: &190 + items: &193 title: Migration description: A migration. type: object @@ -29175,7 +29471,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -29354,7 +29650,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *90 - - &191 + - &194 name: migration_id description: The unique identifier of the migration. in: path @@ -29382,7 +29678,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -29552,7 +29848,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *90 - - *191 + - *194 responses: '302': description: Response @@ -29574,7 +29870,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *90 - - *191 + - *194 responses: '204': description: Response @@ -29598,8 +29894,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *90 - - *191 - - &593 + - *194 + - &596 name: repo_name description: repo_name parameter in: path @@ -29627,7 +29923,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *90 - - *191 + - *194 - *17 - *19 responses: @@ -29639,7 +29935,7 @@ paths: type: array items: *115 examples: - default: &203 + default: &206 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -29792,7 +30088,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &194 + items: &197 title: Organization Role description: Organization roles type: object @@ -29942,7 +30238,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *90 - - &192 + - &195 name: team_slug description: The slug of the team name. in: path @@ -29974,8 +30270,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *90 - - *192 - - &193 + - *195 + - &196 name: role_id description: The unique identifier of the role. in: path @@ -30011,8 +30307,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *90 - - *192 - - *193 + - *195 + - *196 responses: '204': description: Response @@ -30065,7 +30361,7 @@ paths: parameters: - *90 - *128 - - *193 + - *196 responses: '204': description: Response @@ -30097,7 +30393,7 @@ paths: parameters: - *90 - *128 - - *193 + - *196 responses: '204': description: Response @@ -30126,13 +30422,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *90 - - *193 + - *196 responses: '200': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -30183,7 +30479,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *90 - - *193 + - *196 - *17 - *19 responses: @@ -30262,7 +30558,7 @@ paths: parent: anyOf: - type: 'null' - - *195 + - *198 required: - id - node_id @@ -30276,7 +30572,7 @@ paths: - slug - parent examples: - default: *196 + default: *199 headers: Link: *57 '404': @@ -30306,7 +30602,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *90 - - *193 + - *196 - *17 - *19 responses: @@ -30335,7 +30631,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *195 + items: *198 name: type: - string @@ -30452,7 +30748,7 @@ paths: - type - url examples: - default: *183 + default: *186 headers: Link: *57 '404': @@ -30500,7 +30796,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -30642,7 +30938,7 @@ paths: - nuget - container - *90 - - &595 + - &598 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30678,12 +30974,12 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *198 + default: *201 '403': *27 '401': *23 - '400': &597 + '400': &600 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -30705,7 +31001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &199 + - &202 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 @@ -30723,7 +31019,7 @@ paths: - docker - nuget - container - - &200 + - &203 name: package_name description: The name of the package. in: path @@ -30736,7 +31032,7 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: default: value: @@ -30788,8 +31084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *199 - - *200 + - *202 + - *203 - *90 responses: '204': @@ -30822,8 +31118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *199 - - *200 + - *202 + - *203 - *90 - name: token description: package token @@ -30856,8 +31152,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: - - *199 - - *200 + - *202 + - *203 - *90 - *19 - *17 @@ -30878,7 +31174,7 @@ paths: application/json: schema: type: array - items: &201 + items: &204 title: Package Version description: A version of a software package type: object @@ -31013,10 +31309,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *199 - - *200 + - *202 + - *203 - *90 - - &202 + - &205 name: package_version_id description: Unique identifier of the package version. in: path @@ -31028,7 +31324,7 @@ paths: description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -31064,10 +31360,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *199 - - *200 - - *90 - *202 + - *203 + - *90 + - *205 responses: '204': description: Response @@ -31099,10 +31395,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *199 - - *200 - - *90 - *202 + - *203 + - *90 + - *205 responses: '204': description: Response @@ -31132,7 +31428,7 @@ paths: - *90 - *17 - *19 - - &204 + - &207 name: sort description: The property by which to sort the results. in: query @@ -31143,7 +31439,7 @@ paths: - created_at default: created_at - *46 - - &205 + - &208 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -31155,7 +31451,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &206 + - &209 name: repository description: The name of the repository to use to filter the results. in: query @@ -31164,7 +31460,7 @@ paths: type: string examples: - Hello-World - - &207 + - &210 name: permission description: The permission to use to filter the results. in: query @@ -31173,7 +31469,7 @@ paths: type: string examples: - issues_read - - &208 + - &211 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) @@ -31183,7 +31479,7 @@ paths: schema: type: string format: date-time - - &209 + - &212 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) @@ -31193,7 +31489,7 @@ paths: schema: type: string format: date-time - - &210 + - &213 name: token_id description: The ID of the token in: query @@ -31512,7 +31808,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -31538,14 +31834,14 @@ paths: - *90 - *17 - *19 - - *204 - - *46 - - *205 - - *206 - *207 + - *46 - *208 - *209 - *210 + - *211 + - *212 + - *213 responses: '500': *140 '422': *15 @@ -31829,7 +32125,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -31873,7 +32169,7 @@ paths: type: integer configurations: type: array - items: &211 + items: &214 title: Organization private registry description: Private registry configuration for an organization type: object @@ -32085,7 +32381,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &212 + org-private-registry-with-selected-visibility: &215 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -32187,9 +32483,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *211 + schema: *214 examples: - default: *212 + default: *215 '404': *6 x-github: githubCloudOnly: false @@ -32340,7 +32636,7 @@ paths: application/json: schema: type: array - items: &213 + items: &216 title: Project description: Projects are a way to organize columns and cards of work. @@ -32522,7 +32818,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: default: value: @@ -32560,7 +32856,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &271 + '410': &274 description: Gone content: application/json: @@ -32595,7 +32891,7 @@ paths: application/json: schema: type: array - items: &214 + items: &217 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -32671,7 +32967,7 @@ paths: - property_name - value_type examples: - default: &215 + default: &218 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32705,6 +33001,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -32726,7 +33026,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *214 + items: *217 minItems: 1 maxItems: 100 required: @@ -32756,9 +33056,9 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 '403': *27 '404': *6 x-github: @@ -32780,7 +33080,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *90 - - &216 + - &219 name: custom_property_name description: The custom property name in: path @@ -32792,9 +33092,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: &217 + default: &220 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32829,7 +33129,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *90 - - *216 + - *219 requestBody: required: true content: @@ -32879,6 +33179,17 @@ paths: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type examples: @@ -32896,9 +33207,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *217 + default: *220 '403': *27 '404': *6 x-github: @@ -32922,7 +33233,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *90 - - *216 + - *219 responses: '204': *137 '403': *27 @@ -32986,7 +33297,7 @@ paths: - octocat/Hello-World properties: type: array - items: &218 + items: &221 title: Custom Property Value description: Custom property name and associated value type: object @@ -33076,7 +33387,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *218 + items: *221 required: - repository_names - properties @@ -33129,7 +33440,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -33268,7 +33579,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -33471,7 +33782,7 @@ paths: description: Response content: application/json: - schema: &273 + schema: &276 title: Full Repository description: Full Repository type: object @@ -33936,7 +34247,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &400 + code_of_conduct: &403 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -33966,7 +34277,7 @@ paths: - key - name - html_url - security_and_analysis: *219 + security_and_analysis: *222 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -34050,7 +34361,7 @@ paths: - network_count - subscribers_count examples: - default: &275 + default: &278 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34571,7 +34882,7 @@ paths: - *90 - *17 - *19 - - &531 + - &534 name: targets description: | A comma-separated list of rule targets to filter by. @@ -34590,7 +34901,7 @@ paths: application/json: schema: type: array - items: &226 + items: &229 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -34625,7 +34936,7 @@ paths: source: type: string description: The name of the source - enforcement: &222 + enforcement: &225 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -34638,7 +34949,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &223 + items: &226 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -34704,7 +35015,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &220 + - &223 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -34728,7 +35039,7 @@ paths: match. items: type: string - - &224 + - &227 title: Organization ruleset conditions type: object description: |- @@ -34742,7 +35053,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *220 + - *223 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -34776,7 +35087,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *220 + - *223 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -34798,7 +35109,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *220 + - *223 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -34811,7 +35122,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &221 + items: &224 title: Repository ruleset property targeting definition type: object @@ -34844,7 +35155,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *221 + items: *224 required: - repository_property type: @@ -34852,12 +35163,12 @@ paths: - object rules: type: array - items: &225 + items: &228 title: Repository Rule type: object description: A repository rule. oneOf: - - &513 + - &516 title: creation description: Only allow users with bypass permission to create matching refs. @@ -34869,7 +35180,7 @@ paths: type: string enum: - creation - - &514 + - &517 title: update description: Only allow users with bypass permission to update matching refs. @@ -34890,7 +35201,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &516 + - &519 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -34902,7 +35213,7 @@ paths: type: string enum: - deletion - - &517 + - &520 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -34914,7 +35225,7 @@ paths: type: string enum: - required_linear_history - - &518 + - &521 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34992,7 +35303,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &519 + - &522 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -35016,7 +35327,7 @@ paths: type: string required: - required_deployment_environments - - &520 + - &523 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -35028,7 +35339,7 @@ paths: type: string enum: - required_signatures - - &521 + - &524 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -35081,7 +35392,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &522 + - &525 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -35129,7 +35440,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &523 + - &526 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -35141,7 +35452,7 @@ paths: type: string enum: - non_fast_forward - - &524 + - &527 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -35177,7 +35488,7 @@ paths: required: - operator - pattern - - &525 + - &528 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -35213,7 +35524,7 @@ paths: required: - operator - pattern - - &526 + - &529 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -35249,7 +35560,7 @@ paths: required: - operator - pattern - - &527 + - &530 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -35285,7 +35596,7 @@ paths: required: - operator - pattern - - &528 + - &531 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -35411,7 +35722,7 @@ paths: maximum: 100 required: - max_file_size - - &529 + - &532 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -35461,7 +35772,7 @@ paths: - repository_id required: - workflows - - &530 + - &533 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -35595,16 +35906,16 @@ paths: - push - repository default: branch - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *224 + items: *226 + conditions: *227 rules: type: array description: An array of rules within the ruleset. - items: *225 + items: *228 required: - name - enforcement @@ -35642,9 +35953,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: &227 + default: &230 value: id: 21 name: super cool ruleset @@ -35699,7 +36010,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &532 + - &535 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 @@ -35714,7 +36025,7 @@ paths: in: query schema: type: string - - &533 + - &536 name: time_period description: |- The time period to filter by. @@ -35730,14 +36041,14 @@ paths: - week - month default: day - - &534 + - &537 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 - - &535 + - &538 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -35757,7 +36068,7 @@ paths: description: Response content: application/json: - schema: &536 + schema: &539 title: Rule Suites description: Response type: array @@ -35813,7 +36124,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &537 + default: &540 value: - id: 21 actor_id: 12 @@ -35857,7 +36168,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &538 + - &541 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -35873,7 +36184,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &542 title: Rule Suite description: Response type: object @@ -35980,7 +36291,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &540 + default: &543 value: id: 21 actor_id: 12 @@ -36053,9 +36364,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *227 + default: *230 '404': *6 '500': *140 put: @@ -36099,16 +36410,16 @@ paths: - tag - push - repository - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *224 + items: *226 + conditions: *227 rules: description: An array of rules within the ruleset. type: array - items: *225 + items: *228 examples: default: value: @@ -36143,9 +36454,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *227 + default: *230 '404': *6 '500': *140 delete: @@ -36202,7 +36513,7 @@ paths: application/json: schema: type: array - items: &228 + items: &231 title: Ruleset version type: object description: The historical version of a ruleset @@ -36226,7 +36537,7 @@ paths: type: string format: date-time examples: - default: &542 + default: &545 value: - version_id: 3 actor: @@ -36279,9 +36590,9 @@ paths: description: Response content: application/json: - schema: &543 + schema: &546 allOf: - - *228 + - *231 - type: object required: - state @@ -36351,14 +36662,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *229 - - *230 - - *231 - *232 + - *233 + - *234 + - *235 - *46 - *19 - *17 - - &544 + - &547 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 @@ -36368,7 +36679,7 @@ paths: required: false schema: type: string - - &545 + - &548 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 @@ -36378,9 +36689,9 @@ paths: required: false schema: type: string - - *233 - - *234 - - *235 + - *236 + - *237 + - *238 responses: '200': description: Response @@ -36388,9 +36699,9 @@ paths: application/json: schema: type: array - items: *236 + items: *239 examples: - default: *237 + default: *240 headers: Link: *57 '404': *6 @@ -36460,7 +36771,7 @@ paths: application/json: schema: type: array - items: &552 + items: &555 description: A repository security advisory. type: object properties: @@ -36704,7 +37015,7 @@ paths: login: type: string description: The username of the user credited. - type: *238 + type: *241 credits_detailed: type: - array @@ -36715,7 +37026,7 @@ paths: type: object properties: user: *4 - type: *238 + type: *241 state: type: string description: The state of the user's acceptance of the @@ -36779,7 +37090,7 @@ paths: - private_fork additionalProperties: false examples: - default: &553 + default: &556 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -37166,9 +37477,9 @@ paths: application/json: schema: type: array - items: *195 + items: *198 examples: - default: *196 + default: *199 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37192,7 +37503,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *90 - - *192 + - *195 responses: '204': description: Response @@ -37218,7 +37529,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *90 - - *192 + - *195 responses: '204': description: Response @@ -37253,7 +37564,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &614 type: object properties: total_minutes_used: @@ -37323,7 +37634,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &612 + default: &615 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -37359,7 +37670,7 @@ paths: description: Response content: application/json: - schema: &613 + schema: &616 type: object properties: total_gigabytes_bandwidth_used: @@ -37377,7 +37688,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &614 + default: &617 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -37409,7 +37720,7 @@ paths: description: Response content: application/json: - schema: &615 + schema: &618 type: object properties: days_left_in_billing_cycle: @@ -37427,7 +37738,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &616 + default: &619 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -37469,7 +37780,7 @@ paths: type: integer network_configurations: type: array - items: &239 + items: &242 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -37594,9 +37905,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *242 examples: - default: &240 + default: &243 value: id: 123456789ABCDEF name: My network configuration @@ -37625,7 +37936,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - &241 + - &244 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -37637,9 +37948,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *242 examples: - default: *240 + default: *243 headers: Link: *57 x-github: @@ -37661,7 +37972,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - *241 + - *244 requestBody: required: true content: @@ -37700,9 +38011,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *242 examples: - default: *240 + default: *243 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37722,7 +38033,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *90 - - *241 + - *244 responses: '204': description: Response @@ -37835,7 +38146,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *90 - - *192 + - *195 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37867,13 +38178,13 @@ paths: application/json: schema: type: array - items: *242 + items: *245 examples: - default: *243 + default: *246 '500': *140 '403': *27 '404': *6 - '422': *244 + '422': *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37908,7 +38219,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *90 - - *192 + - *195 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37940,9 +38251,9 @@ paths: application/json: schema: type: array - items: *245 + items: *248 examples: - default: *246 + default: *249 '500': *140 '401': *23 '403': *27 @@ -37976,7 +38287,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 headers: Link: *57 '403': *27 @@ -38070,7 +38381,7 @@ paths: description: Response content: application/json: - schema: &247 + schema: &250 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -38144,7 +38455,7 @@ paths: parent: anyOf: - type: 'null' - - *195 + - *198 members_count: type: integer examples: @@ -38450,7 +38761,7 @@ paths: - repos_count - organization examples: - default: &248 + default: &251 value: id: 1 node_id: MDQ6VGVhbTE= @@ -38521,15 +38832,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *90 - - *192 + - *195 responses: '200': description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 x-github: githubCloudOnly: false @@ -38551,7 +38862,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *90 - - *192 + - *195 requestBody: required: false content: @@ -38614,16 +38925,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '201': description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 '422': *15 '403': *27 @@ -38649,7 +38960,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *90 - - *192 + - *195 responses: '204': description: Response @@ -38676,7 +38987,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *90 - - *192 + - *195 - *46 - *17 - *19 @@ -38693,7 +39004,7 @@ paths: application/json: schema: type: array - items: &249 + items: &252 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -38804,7 +39115,7 @@ paths: - updated_at - url examples: - default: &567 + default: &570 value: - author: login: octocat @@ -38879,7 +39190,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *90 - - *192 + - *195 requestBody: required: true content: @@ -38913,9 +39224,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: &250 + default: &253 value: author: login: octocat @@ -38988,8 +39299,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *90 - - *192 - - &251 + - *195 + - &254 name: discussion_number description: The number that identifies the discussion. in: path @@ -39001,9 +39312,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *250 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39026,8 +39337,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 requestBody: required: false content: @@ -39050,9 +39361,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: &568 + default: &571 value: author: login: octocat @@ -39123,8 +39434,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 responses: '204': description: Response @@ -39151,8 +39462,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *90 - - *192 - - *251 + - *195 + - *254 - *46 - *17 - *19 @@ -39163,7 +39474,7 @@ paths: application/json: schema: type: array - items: &252 + items: &255 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -39243,7 +39554,7 @@ paths: - updated_at - url examples: - default: &569 + default: &572 value: - author: login: octocat @@ -39312,8 +39623,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 + - *254 requestBody: required: true content: @@ -39335,9 +39646,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: &253 + default: &256 value: author: login: octocat @@ -39404,9 +39715,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *90 - - *192 - - *251 - - &254 + - *195 + - *254 + - &257 name: comment_number description: The number that identifies the comment. in: path @@ -39418,9 +39729,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39443,9 +39754,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 requestBody: required: true content: @@ -39467,9 +39778,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: &570 + default: &573 value: author: login: octocat @@ -39534,9 +39845,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 responses: '204': description: Response @@ -39563,9 +39874,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -39591,7 +39902,7 @@ paths: application/json: schema: type: array - items: &255 + items: &258 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -39635,7 +39946,7 @@ paths: - content - created_at examples: - default: &257 + default: &260 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39686,9 +39997,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 requestBody: required: true content: @@ -39721,9 +40032,9 @@ paths: team discussion comment content: application/json: - schema: *255 + schema: *258 examples: - default: &256 + default: &259 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39752,9 +40063,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39778,10 +40089,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *90 - - *192 - - *251 + - *195 - *254 - - &258 + - *257 + - &261 name: reaction_id description: The unique identifier of the reaction. in: path @@ -39814,8 +40125,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -39841,9 +40152,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 x-github: @@ -39870,8 +40181,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 requestBody: required: true content: @@ -39903,16 +40214,16 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -39936,9 +40247,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *90 - - *192 - - *251 - - *258 + - *195 + - *254 + - *261 responses: '204': description: Response @@ -39963,7 +40274,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -39998,7 +40309,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *90 - - *192 + - *195 - name: role description: Filters members returned by their role in the team. in: query @@ -40021,7 +40332,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -40052,14 +40363,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *90 - - *192 + - *195 - *128 responses: '200': description: Response content: application/json: - schema: &259 + schema: &262 title: Team Membership description: Team Membership type: object @@ -40087,7 +40398,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &571 + response-if-user-is-a-team-maintainer: &574 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -40124,7 +40435,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *90 - - *192 + - *195 - *128 requestBody: required: false @@ -40150,9 +40461,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - response-if-users-membership-with-team-is-now-pending: &572 + response-if-users-membership-with-team-is-now-pending: &575 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -40188,7 +40499,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *90 - - *192 + - *195 - *128 responses: '204': @@ -40215,7 +40526,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -40225,7 +40536,7 @@ paths: application/json: schema: type: array - items: &260 + items: &263 title: Team Project description: A team's access to a project. type: object @@ -40294,7 +40605,7 @@ paths: - updated_at - permissions examples: - default: &573 + default: &576 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40358,8 +40669,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *90 - - *192 - - &261 + - *195 + - &264 name: project_id description: The unique identifier of the project. in: path @@ -40371,9 +40682,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: &574 + default: &577 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40436,8 +40747,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *90 - - *192 - - *261 + - *195 + - *264 requestBody: required: false content: @@ -40505,8 +40816,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *90 - - *192 - - *261 + - *195 + - *264 responses: '204': description: Response @@ -40534,7 +40845,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -40546,7 +40857,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -40576,15 +40887,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *90 - - *192 - - *262 - - *263 + - *195 + - *265 + - *266 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &575 + schema: &578 title: Team Repository description: A team's access to a repository. type: object @@ -41226,9 +41537,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *90 - - *192 - - *262 - - *263 + - *195 + - *265 + - *266 requestBody: required: false content: @@ -41274,9 +41585,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *90 - - *192 - - *262 - - *263 + - *195 + - *265 + - *266 responses: '204': description: Response @@ -41301,7 +41612,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -41313,7 +41624,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: &576 + response-if-child-teams-exist: &579 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -41440,7 +41751,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &264 + - &267 name: card_id description: The unique identifier of the card. in: path @@ -41452,7 +41763,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &268 title: Project Card description: Project cards represent a scope of work. type: object @@ -41527,7 +41838,7 @@ paths: - created_at - updated_at examples: - default: &266 + default: &269 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -41583,7 +41894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *264 + - *267 requestBody: required: false content: @@ -41613,9 +41924,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 '304': *35 '403': *27 '401': *23 @@ -41642,7 +41953,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *264 + - *267 responses: '204': description: Response @@ -41686,7 +41997,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *264 + - *267 requestBody: required: true content: @@ -41799,7 +42110,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &267 + - &270 name: column_id description: The unique identifier of the column. in: path @@ -41811,7 +42122,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &271 title: Project Column description: Project columns contain cards of work. type: object @@ -41865,7 +42176,7 @@ paths: - created_at - updated_at examples: - default: &269 + default: &272 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -41900,7 +42211,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *267 + - *270 requestBody: required: true content: @@ -41925,9 +42236,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '304': *35 '403': *27 '401': *23 @@ -41952,7 +42263,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *267 + - *270 responses: '204': description: Response @@ -41981,7 +42292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *267 + - *270 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -42002,7 +42313,7 @@ paths: application/json: schema: type: array - items: *265 + items: *268 examples: default: value: @@ -42061,7 +42372,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *267 + - *270 requestBody: required: true content: @@ -42105,9 +42416,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 '304': *35 '403': *27 '401': *23 @@ -42163,7 +42474,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *267 + - *270 requestBody: required: true content: @@ -42224,15 +42535,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *261 + - *264 responses: '200': description: Response content: application/json: - schema: *213 + schema: *216 examples: - default: &270 + default: &273 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -42289,7 +42600,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *261 + - *264 requestBody: required: false content: @@ -42338,9 +42649,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: - default: *270 + default: *273 '404': description: Not Found if the authenticated user does not have access to the project @@ -42361,7 +42672,7 @@ paths: items: type: string '401': *23 - '410': *271 + '410': *274 '422': *7 x-github: githubCloudOnly: false @@ -42384,7 +42695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *261 + - *264 responses: '204': description: Delete Success @@ -42405,7 +42716,7 @@ paths: items: type: string '401': *23 - '410': *271 + '410': *274 '404': *6 x-github: githubCloudOnly: false @@ -42429,7 +42740,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *261 + - *264 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -42456,7 +42767,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '404': *6 @@ -42486,7 +42797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *261 + - *264 - *128 requestBody: required: false @@ -42541,7 +42852,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *261 + - *264 - *128 responses: '204': @@ -42573,7 +42884,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *261 + - *264 - *128 responses: '200': @@ -42644,7 +42955,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *261 + - *264 - *17 - *19 responses: @@ -42654,7 +42965,7 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: default: value: @@ -42692,7 +43003,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *261 + - *264 requestBody: required: true content: @@ -42716,7 +43027,7 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: default: value: @@ -42780,7 +43091,7 @@ paths: resources: type: object properties: - core: &272 + core: &275 title: Rate Limit type: object properties: @@ -42797,20 +43108,20 @@ paths: - remaining - reset - used - graphql: *272 - search: *272 - code_search: *272 - source_import: *272 - integration_manifest: *272 - code_scanning_upload: *272 - actions_runner_registration: *272 - scim: *272 - dependency_snapshots: *272 - code_scanning_autofix: *272 + graphql: *275 + search: *275 + code_search: *275 + source_import: *275 + integration_manifest: *275 + code_scanning_upload: *275 + actions_runner_registration: *275 + scim: *275 + dependency_snapshots: *275 + code_scanning_autofix: *275 required: - core - search - rate: *272 + rate: *275 required: - rate - resources @@ -42914,14 +43225,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: default-response: summary: Default response @@ -43422,7 +43733,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *274 + '301': *277 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43440,8 +43751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -43678,10 +43989,10 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 - '307': &276 + default: *278 + '307': &279 description: Temporary Redirect content: application/json: @@ -43710,8 +44021,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -43733,7 +44044,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *276 + '307': *279 '404': *6 x-github: githubCloudOnly: false @@ -43756,11 +44067,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - - &302 + - &305 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -43783,7 +44094,7 @@ paths: type: integer artifacts: type: array - items: &277 + items: &280 title: Artifact description: An artifact type: object @@ -43878,7 +44189,7 @@ paths: - expires_at - updated_at examples: - default: &303 + default: &306 value: total_count: 2 artifacts: @@ -43939,9 +44250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *262 - - *263 - - &278 + - *265 + - *266 + - &281 name: artifact_id description: The unique identifier of the artifact. in: path @@ -43953,7 +44264,7 @@ paths: description: Response content: application/json: - schema: *277 + schema: *280 examples: default: value: @@ -43991,9 +44302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *262 - - *263 - - *278 + - *265 + - *266 + - *281 responses: '204': description: Response @@ -44017,9 +44328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *262 - - *263 - - *278 + - *265 + - *266 + - *281 - name: archive_format in: path required: true @@ -44033,7 +44344,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44056,14 +44367,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *279 + schema: *282 examples: default: value: @@ -44089,11 +44400,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - - &280 + - &283 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 @@ -44127,7 +44438,7 @@ paths: description: Response content: application/json: - schema: &281 + schema: &284 title: Repository actions caches description: Repository actions caches type: object @@ -44177,7 +44488,7 @@ paths: - total_count - actions_caches examples: - default: &282 + default: &285 value: total_count: 1 actions_caches: @@ -44209,23 +44520,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: - - *262 - - *263 + - *265 + - *266 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *280 + - *283 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *282 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44245,8 +44556,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: - - *262 - - *263 + - *265 + - *266 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -44277,9 +44588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *262 - - *263 - - &283 + - *265 + - *266 + - &286 name: job_id description: The unique identifier of the job. in: path @@ -44291,7 +44602,7 @@ paths: description: Response content: application/json: - schema: &306 + schema: &309 title: Job description: Information of a job execution in a workflow run type: object @@ -44638,9 +44949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *262 - - *263 - - *283 + - *265 + - *266 + - *286 responses: '302': description: Response @@ -44668,9 +44979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *262 - - *263 - - *283 + - *265 + - *266 + - *286 requestBody: required: false content: @@ -44716,8 +45027,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Status response @@ -44767,8 +45078,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -44831,8 +45142,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -44850,7 +45161,7 @@ paths: type: integer secrets: type: array - items: &308 + items: &311 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -44871,7 +45182,7 @@ paths: - created_at - updated_at examples: - default: &309 + default: &312 value: total_count: 2 secrets: @@ -44904,9 +45215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *262 - - *263 - - *284 + - *265 + - *266 + - *287 - *19 responses: '200': @@ -44923,7 +45234,7 @@ paths: type: integer variables: type: array - items: &312 + items: &315 title: Actions Variable type: object properties: @@ -44957,7 +45268,7 @@ paths: - created_at - updated_at examples: - default: &313 + default: &316 value: total_count: 2 variables: @@ -44990,8 +45301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -45000,11 +45311,11 @@ paths: schema: type: object properties: - enabled: &286 + enabled: &289 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *104 - selected_actions_url: *285 + selected_actions_url: *288 required: - enabled examples: @@ -45031,8 +45342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -45043,7 +45354,7 @@ paths: schema: type: object properties: - enabled: *286 + enabled: *289 allowed_actions: *104 required: - enabled @@ -45073,14 +45384,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: &287 + schema: &290 type: object properties: access_level: @@ -45097,7 +45408,7 @@ paths: required: - access_level examples: - default: &288 + default: &291 value: access_level: organization x-github: @@ -45121,15 +45432,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: application/json: - schema: *287 + schema: *290 examples: - default: *288 + default: *291 responses: '204': description: Response @@ -45153,8 +45464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -45181,8 +45492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -45214,14 +45525,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *289 + schema: *292 examples: default: *110 x-github: @@ -45244,8 +45555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Success response @@ -45256,7 +45567,7 @@ paths: required: true content: application/json: - schema: *290 + schema: *293 examples: default: *110 x-github: @@ -45285,8 +45596,8 @@ paths: in: query schema: type: string - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -45330,8 +45641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -45339,9 +45650,9 @@ paths: application/json: schema: type: array - items: *291 + items: *294 examples: - default: *292 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45363,8 +45674,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -45407,7 +45718,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *293 + '201': *296 '404': *6 '422': *7 '409': *44 @@ -45438,8 +45749,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '201': description: Response @@ -45447,7 +45758,7 @@ paths: application/json: schema: *119 examples: - default: *294 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45475,8 +45786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '201': description: Response @@ -45484,7 +45795,7 @@ paths: application/json: schema: *119 examples: - default: *295 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45506,8 +45817,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: '200': @@ -45516,7 +45827,7 @@ paths: application/json: schema: *117 examples: - default: *296 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45537,8 +45848,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: '204': @@ -45564,8 +45875,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: '200': *121 @@ -45590,8 +45901,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: - - *262 - - *263 + - *265 + - *266 - *116 requestBody: required: true @@ -45640,8 +45951,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: - - *262 - - *263 + - *265 + - *266 - *116 requestBody: required: true @@ -45691,11 +46002,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: - '200': *297 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -45722,10 +46033,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: - - *262 - - *263 + - *265 + - *266 - *116 - - *298 + - *301 responses: '200': *121 '404': *6 @@ -45753,9 +46064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *262 - - *263 - - &316 + - *265 + - *266 + - &319 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. @@ -45763,7 +46074,7 @@ paths: required: false schema: type: string - - &317 + - &320 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -45771,7 +46082,7 @@ paths: required: false schema: type: string - - &318 + - &321 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -45780,7 +46091,7 @@ paths: required: false schema: type: string - - &319 + - &322 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 @@ -45807,7 +46118,7 @@ paths: - pending - *17 - *19 - - &320 + - &323 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)." @@ -45816,7 +46127,7 @@ paths: schema: type: string format: date-time - - &299 + - &302 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -45825,13 +46136,13 @@ paths: schema: type: boolean default: false - - &321 + - &324 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &322 + - &325 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -45854,7 +46165,7 @@ paths: type: integer workflow_runs: type: array - items: &300 + items: &303 title: Workflow Run description: An invocation of a workflow type: object @@ -45971,7 +46282,7 @@ paths: type: - array - 'null' - items: &341 + items: &344 title: Pull Request Minimal type: object properties: @@ -46098,7 +46409,7 @@ paths: head_commit: anyOf: - type: 'null' - - &345 + - &348 title: Simple Commit description: A commit. type: object @@ -46213,7 +46524,7 @@ paths: - workflow_url - pull_requests examples: - default: &323 + default: &326 value: total_count: 1 workflow_runs: @@ -46449,24 +46760,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *262 - - *263 - - &301 + - *265 + - *266 + - &304 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *299 + - *302 responses: '200': description: Response content: application/json: - schema: *300 + schema: *303 examples: - default: &304 + default: &307 value: id: 30433642 name: Build @@ -46707,9 +47018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '204': description: Response @@ -46732,9 +47043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '200': description: Response @@ -46862,9 +47173,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: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '201': description: Response @@ -46897,12 +47208,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 - *17 - *19 - - *302 + - *305 responses: '200': description: Response @@ -46918,9 +47229,9 @@ paths: type: integer artifacts: type: array - items: *277 + items: *280 examples: - default: *303 + default: *306 headers: Link: *57 x-github: @@ -46944,25 +47255,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *262 - - *263 - - *301 - - &305 + - *265 + - *266 + - *304 + - &308 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *299 + - *302 responses: '200': description: Response content: application/json: - schema: *300 + schema: *303 examples: - default: *304 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46985,10 +47296,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *262 - - *263 - - *301 - - *305 + - *265 + - *266 + - *304 + - *308 - *17 - *19 responses: @@ -47006,9 +47317,9 @@ paths: type: integer jobs: type: array - items: *306 + items: *309 examples: - default: &307 + default: &310 value: total_count: 1 jobs: @@ -47121,10 +47432,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *262 - - *263 - - *301 - - *305 + - *265 + - *266 + - *304 + - *308 responses: '302': description: Response @@ -47152,9 +47463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '202': description: Response @@ -47187,9 +47498,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: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: true content: @@ -47256,9 +47567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '202': description: Response @@ -47291,9 +47602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 - 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 @@ -47323,9 +47634,9 @@ paths: type: integer jobs: type: array - items: *306 + items: *309 examples: - default: *307 + default: *310 headers: Link: *57 x-github: @@ -47350,9 +47661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '302': description: Response @@ -47379,9 +47690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '204': description: Response @@ -47408,9 +47719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '200': description: Response @@ -47479,7 +47790,7 @@ paths: items: type: object properties: - type: &419 + type: &422 type: string description: The type of reviewer. enum: @@ -47565,9 +47876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: true content: @@ -47617,7 +47928,7 @@ paths: application/json: schema: type: array - items: &414 + items: &417 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -47729,7 +48040,7 @@ paths: - created_at - updated_at examples: - default: &415 + default: &418 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -47785,9 +48096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: false content: @@ -47832,9 +48143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: false content: @@ -47888,9 +48199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '200': description: Response @@ -48027,8 +48338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -48046,9 +48357,9 @@ paths: type: integer secrets: type: array - items: *308 + items: *311 examples: - default: *309 + default: *312 headers: Link: *57 x-github: @@ -48073,16 +48384,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *310 + schema: *313 examples: - default: *311 + default: *314 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48104,17 +48415,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '200': description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: &432 + default: &435 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48140,8 +48451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 requestBody: required: true @@ -48199,8 +48510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '204': @@ -48226,9 +48537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *262 - - *263 - - *284 + - *265 + - *266 + - *287 - *19 responses: '200': @@ -48245,9 +48556,9 @@ paths: type: integer variables: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 headers: Link: *57 x-github: @@ -48270,8 +48581,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -48323,17 +48634,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 responses: '200': description: Response content: application/json: - schema: *312 + schema: *315 examples: - default: &433 + default: &436 value: name: USERNAME value: octocat @@ -48359,8 +48670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 requestBody: required: true @@ -48403,8 +48714,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 responses: '204': @@ -48430,8 +48741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -48449,7 +48760,7 @@ paths: type: integer workflows: type: array - items: &314 + items: &317 title: Workflow description: A GitHub Actions workflow type: object @@ -48567,9 +48878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *262 - - *263 - - &315 + - *265 + - *266 + - &318 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -48584,7 +48895,7 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: default: value: @@ -48617,9 +48928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '204': description: Response @@ -48644,9 +48955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '204': description: Response @@ -48697,9 +49008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '204': description: Response @@ -48726,19 +49037,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *262 - - *263 - - *315 - - *316 - - *317 + - *265 + - *266 - *318 - *319 - - *17 - - *19 - *320 - - *299 - *321 - *322 + - *17 + - *19 + - *323 + - *302 + - *324 + - *325 responses: '200': description: Response @@ -48754,9 +49065,9 @@ paths: type: integer workflow_runs: type: array - items: *300 + items: *303 examples: - default: *323 + default: *326 headers: Link: *57 x-github: @@ -48788,9 +49099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '200': description: Response @@ -48851,8 +49162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *262 - - *263 + - *265 + - *266 - *46 - *17 - *37 @@ -49020,8 +49331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -49033,7 +49344,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '404': *6 @@ -49058,8 +49369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *262 - - *263 + - *265 + - *266 - name: assignee in: path required: true @@ -49095,8 +49406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -49208,8 +49519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *37 - *38 @@ -49263,7 +49574,7 @@ paths: bundle_url: type: string examples: - default: *324 + default: *327 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49283,8 +49594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -49292,7 +49603,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 title: Autolink reference description: An autolink reference. type: object @@ -49346,8 +49657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -49386,9 +49697,9 @@ paths: description: response content: application/json: - schema: *325 + schema: *328 examples: - default: &326 + default: &329 value: id: 1 key_prefix: TICKET- @@ -49419,9 +49730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *262 - - *263 - - &327 + - *265 + - *266 + - &330 name: autolink_id description: The unique identifier of the autolink. in: path @@ -49433,9 +49744,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: - default: *326 + default: *329 '404': *6 x-github: githubCloudOnly: false @@ -49455,9 +49766,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *262 - - *263 - - *327 + - *265 + - *266 + - *330 responses: '204': description: Response @@ -49481,8 +49792,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response if Dependabot is enabled @@ -49532,8 +49843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -49554,8 +49865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -49575,8 +49886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *262 - - *263 + - *265 + - *266 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -49614,7 +49925,7 @@ paths: - url protected: type: boolean - protection: &329 + protection: &332 title: Branch Protection description: Branch Protection type: object @@ -49657,7 +49968,7 @@ paths: required: - contexts - checks - enforce_admins: &332 + enforce_admins: &335 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -49674,7 +49985,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &334 + required_pull_request_reviews: &337 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -49758,7 +50069,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &331 + restrictions: &334 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -50083,9 +50394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *262 - - *263 - - &330 + - *265 + - *266 + - &333 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). @@ -50099,14 +50410,14 @@ paths: description: Response content: application/json: - schema: &340 + schema: &343 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &390 + commit: &393 title: Commit description: Commit type: object @@ -50145,7 +50456,7 @@ paths: author: anyOf: - type: 'null' - - &328 + - &331 title: Git User description: Metaproperties for Git author/committer information. @@ -50166,7 +50477,7 @@ paths: committer: anyOf: - type: 'null' - - *328 + - *331 message: type: string examples: @@ -50190,7 +50501,7 @@ paths: required: - sha - url - verification: &439 + verification: &442 title: Verification type: object properties: @@ -50270,7 +50581,7 @@ paths: type: integer files: type: array - items: &402 + items: &405 title: Diff Entry description: Diff Entry type: object @@ -50364,7 +50675,7 @@ paths: - self protected: type: boolean - protection: *329 + protection: *332 protection_url: type: string format: uri @@ -50473,7 +50784,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *274 + '301': *277 '404': *6 x-github: githubCloudOnly: false @@ -50495,15 +50806,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -50697,9 +51008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -50959,7 +51270,7 @@ paths: url: type: string format: uri - required_status_checks: &337 + required_status_checks: &340 title: Status Check Policy description: Status Check Policy type: object @@ -51118,7 +51429,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *331 + restrictions: *334 required_conversation_resolution: type: object properties: @@ -51230,9 +51541,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51257,17 +51568,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: &333 + default: &336 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -51289,17 +51600,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *333 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51318,9 +51629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51345,17 +51656,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: &335 + default: &338 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -51451,9 +51762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -51551,9 +51862,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 '422': *15 x-github: githubCloudOnly: false @@ -51574,9 +51885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51603,17 +51914,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: &336 + default: &339 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -51636,17 +51947,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *336 + default: *339 '404': *6 x-github: githubCloudOnly: false @@ -51666,9 +51977,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51693,17 +52004,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: &338 + default: &341 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -51729,9 +52040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -51783,9 +52094,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: *338 + default: *341 '404': *6 '422': *15 x-github: @@ -51807,9 +52118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51833,9 +52144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -51869,9 +52180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -51938,9 +52249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -52004,9 +52315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: content: application/json: @@ -52072,15 +52383,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: default: value: @@ -52171,9 +52482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -52196,9 +52507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -52208,7 +52519,7 @@ paths: type: array items: *5 examples: - default: &339 + default: &342 value: - id: 1 slug: octoapp @@ -52265,9 +52576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52301,7 +52612,7 @@ paths: type: array items: *5 examples: - default: *339 + default: *342 '422': *15 x-github: githubCloudOnly: false @@ -52322,9 +52633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52358,7 +52669,7 @@ paths: type: array items: *5 examples: - default: *339 + default: *342 '422': *15 x-github: githubCloudOnly: false @@ -52379,9 +52690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52415,7 +52726,7 @@ paths: type: array items: *5 examples: - default: *339 + default: *342 '422': *15 x-github: githubCloudOnly: false @@ -52437,9 +52748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -52449,7 +52760,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '404': *6 x-github: githubCloudOnly: false @@ -52469,9 +52780,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -52509,7 +52820,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '422': *15 x-github: githubCloudOnly: false @@ -52530,9 +52841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -52570,7 +52881,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '422': *15 x-github: githubCloudOnly: false @@ -52591,9 +52902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: content: application/json: @@ -52630,7 +52941,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '422': *15 x-github: githubCloudOnly: false @@ -52652,9 +52963,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -52664,7 +52975,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '404': *6 x-github: githubCloudOnly: false @@ -52688,9 +52999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52723,7 +53034,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '422': *15 x-github: githubCloudOnly: false @@ -52748,9 +53059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52783,7 +53094,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '422': *15 x-github: githubCloudOnly: false @@ -52808,9 +53119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52843,7 +53154,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '422': *15 x-github: githubCloudOnly: false @@ -52870,9 +53181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52894,7 +53205,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *343 examples: default: value: @@ -53010,8 +53321,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -53290,7 +53601,7 @@ paths: description: Response content: application/json: - schema: &342 + schema: &345 title: CheckRun description: A check performed on the code of a given code change type: object @@ -53425,8 +53736,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *341 - deployment: &625 + items: *344 + deployment: &628 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -53713,9 +54024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *262 - - *263 - - &343 + - *265 + - *266 + - &346 name: check_run_id description: The unique identifier of the check run. in: path @@ -53727,9 +54038,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: &344 + default: &347 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -53829,9 +54140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *262 - - *263 - - *343 + - *265 + - *266 + - *346 requestBody: required: true content: @@ -54071,9 +54382,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *344 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54093,9 +54404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *262 - - *263 - - *343 + - *265 + - *266 + - *346 - *17 - *19 responses: @@ -54207,9 +54518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *262 - - *263 - - *343 + - *265 + - *266 + - *346 responses: '201': description: Response @@ -54253,8 +54564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -54276,7 +54587,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &346 + schema: &349 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -54358,7 +54669,7 @@ paths: type: - array - 'null' - items: *341 + items: *344 app: anyOf: - type: 'null' @@ -54374,7 +54685,7 @@ paths: - string - 'null' format: date-time - head_commit: *345 + head_commit: *348 latest_check_runs_count: type: integer check_runs_url: @@ -54402,7 +54713,7 @@ paths: - check_runs_url - pull_requests examples: - default: &347 + default: &350 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54693,9 +55004,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *346 + schema: *349 examples: - default: *347 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54714,8 +55025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -55024,9 +55335,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *262 - - *263 - - &348 + - *265 + - *266 + - &351 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -55038,9 +55349,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *349 examples: - default: *347 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55063,17 +55374,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *262 - - *263 - - *348 - - &397 + - *265 + - *266 + - *351 + - &400 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &398 + - &401 name: status description: Returns check runs with the specified `status`. in: query @@ -55112,9 +55423,9 @@ paths: type: integer check_runs: type: array - items: *342 + items: *345 examples: - default: &399 + default: &402 value: total_count: 1 check_runs: @@ -55216,9 +55527,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *262 - - *263 - - *348 + - *265 + - *266 + - *351 responses: '201': description: Response @@ -55251,21 +55562,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *262 - - *263 - - *349 - - *350 + - *265 + - *266 + - *352 + - *353 - *19 - *17 - - &367 + - &370 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: *351 - - &368 + schema: *354 + - &371 name: pr description: The number of the pull request for the results you want to list. in: query @@ -55290,13 +55601,13 @@ paths: be returned. in: query required: false - schema: *352 + schema: *355 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *353 + schema: *356 responses: '200': description: Response @@ -55312,7 +55623,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *354 + instances_url: *357 state: *133 fixed_at: *129 dismissed_by: @@ -55320,11 +55631,11 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *355 - dismissed_comment: *356 - rule: *357 - tool: *358 - most_recent_instance: *359 + dismissed_reason: *358 + dismissed_comment: *359 + rule: *360 + tool: *361 + most_recent_instance: *362 dismissal_approved_by: anyOf: - type: 'null' @@ -55444,7 +55755,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &360 + '403': &363 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -55471,9 +55782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *262 - - *263 - - &361 + - *265 + - *266 + - &364 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -55487,7 +55798,7 @@ paths: description: Response content: application/json: - schema: &362 + schema: &365 type: object properties: number: *52 @@ -55495,7 +55806,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *354 + instances_url: *357 state: *133 fixed_at: *129 dismissed_by: @@ -55503,8 +55814,8 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *355 - dismissed_comment: *356 + dismissed_reason: *358 + dismissed_comment: *359 rule: type: object properties: @@ -55566,8 +55877,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *358 - most_recent_instance: *359 + tool: *361 + most_recent_instance: *362 dismissal_approved_by: anyOf: - type: 'null' @@ -55660,7 +55971,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -55680,9 +55991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 requestBody: required: true content: @@ -55697,8 +56008,8 @@ paths: enum: - open - dismissed - dismissed_reason: *355 - dismissed_comment: *356 + dismissed_reason: *358 + dismissed_comment: *359 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -55717,7 +56028,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *365 examples: default: value: @@ -55793,7 +56104,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &366 + '403': &369 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -55820,15 +56131,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: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 responses: '200': description: Response content: application/json: - schema: &363 + schema: &366 type: object properties: status: @@ -55855,13 +56166,13 @@ paths: - description - started_at examples: - default: &364 + default: &367 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &365 + '400': &368 description: Bad Request content: application/json: @@ -55872,7 +56183,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': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -55897,29 +56208,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: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 responses: '200': description: OK content: application/json: - schema: *363 + schema: *366 examples: - default: *364 + default: *367 '202': description: Accepted content: application/json: - schema: *363 + schema: *366 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *365 + '400': *368 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -55951,9 +56262,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: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 requestBody: required: false content: @@ -55999,8 +56310,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *365 - '403': *366 + '400': *368 + '403': *369 '404': *6 '422': description: Unprocessable Entity @@ -56024,13 +56335,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 - *19 - *17 - - *367 - - *368 + - *370 + - *371 responses: '200': description: Response @@ -56038,7 +56349,7 @@ paths: application/json: schema: type: array - items: *359 + items: *362 examples: default: value: @@ -56077,7 +56388,7 @@ paths: end_column: 50 classifications: - source - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56111,25 +56422,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *262 - - *263 - - *349 - - *350 + - *265 + - *266 + - *352 + - *353 - *19 - *17 - - *368 + - *371 - 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: *351 + schema: *354 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &371 + schema: &374 type: string description: An identifier for the upload. examples: @@ -56151,23 +56462,23 @@ paths: application/json: schema: type: array - items: &372 + items: &375 type: object properties: - ref: *351 - commit_sha: &380 + ref: *354 + commit_sha: &383 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *369 + analysis_key: *372 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *370 + category: *373 error: type: string examples: @@ -56192,8 +56503,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *371 - tool: *358 + sarif_id: *374 + tool: *361 deletable: type: boolean warning: @@ -56255,7 +56566,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56291,8 +56602,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: - - *262 - - *263 + - *265 + - *266 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56305,7 +56616,7 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: response: summary: application/json response @@ -56359,7 +56670,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56441,8 +56752,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: - - *262 - - *263 + - *265 + - *266 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56498,7 +56809,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': *366 + '403': *369 '404': *6 '503': *62 x-github: @@ -56520,8 +56831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -56529,7 +56840,7 @@ paths: application/json: schema: type: array - items: &373 + items: &376 title: CodeQL Database description: A CodeQL database. type: object @@ -56641,7 +56952,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': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56670,8 +56981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: language in: path description: The language of the CodeQL database. @@ -56683,7 +56994,7 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: default: value: @@ -56715,9 +57026,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': &404 + '302': &407 description: Found - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56739,8 +57050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *262 - - *263 + - *265 + - *266 - name: language in: path description: The language of the CodeQL database. @@ -56750,7 +57061,7 @@ paths: responses: '204': description: Response - '403': *366 + '403': *369 '404': *6 '503': *62 x-github: @@ -56778,8 +57089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -56788,7 +57099,7 @@ paths: type: object additionalProperties: false properties: - language: &374 + language: &377 type: string description: The language targeted by the CodeQL query enum: @@ -56866,7 +57177,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &378 + schema: &381 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -56876,7 +57187,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *374 + query_language: *377 query_pack_url: type: string description: The download url for the query pack. @@ -56924,7 +57235,7 @@ paths: items: type: object properties: - repository: &375 + repository: &378 title: Repository Identifier description: Repository Identifier type: object @@ -56966,7 +57277,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &379 + analysis_status: &382 type: string description: The new status of the CodeQL variant analysis repository task. @@ -56998,7 +57309,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &376 + access_mismatch_repos: &379 type: object properties: repository_count: @@ -57013,7 +57324,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: *375 + items: *378 required: - repository_count - repositories @@ -57036,8 +57347,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *376 - over_limit_repos: *376 + no_codeql_db_repos: *379 + over_limit_repos: *379 required: - access_mismatch_repos - not_found_repos @@ -57053,7 +57364,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &377 + value: &380 summary: Default response value: id: 1 @@ -57205,10 +57516,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *377 + value: *380 repository_lists: summary: Response for a successful variant analysis submission - value: *377 + value: *380 '404': *6 '422': description: Unable to process variant analysis submission @@ -57236,8 +57547,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: - - *262 - - *263 + - *265 + - *266 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -57249,9 +57560,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *381 examples: - default: *377 + default: *380 '404': *6 '503': *62 x-github: @@ -57274,7 +57585,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: - - *262 + - *265 - name: repo in: path description: The name of the controller repository. @@ -57309,7 +57620,7 @@ paths: type: object properties: repository: *51 - analysis_status: *379 + analysis_status: *382 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -57434,8 +57745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -57517,7 +57828,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -57538,8 +57849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -57623,7 +57934,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *366 + '403': *369 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -57688,8 +57999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -57697,7 +58008,7 @@ paths: schema: type: object properties: - commit_sha: *380 + commit_sha: *383 ref: type: string description: |- @@ -57757,7 +58068,7 @@ paths: schema: type: object properties: - id: *371 + id: *374 url: type: string description: The REST API URL for checking the status of the upload. @@ -57771,7 +58082,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': *366 + '403': *369 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -57794,8 +58105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *262 - - *263 + - *265 + - *266 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -57843,7 +58154,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': *360 + '403': *363 '404': description: Not Found if the sarif id does not match any upload '503': *62 @@ -57868,8 +58179,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -57950,8 +58261,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *262 - - *263 + - *265 + - *266 - 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 @@ -58079,8 +58390,8 @@ paths: parameters: - *17 - *19 - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -58096,7 +58407,7 @@ paths: type: integer codespaces: type: array - items: *184 + items: *187 examples: default: value: @@ -58394,8 +58705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -58459,17 +58770,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '400': *14 '401': *23 '403': *27 @@ -58498,8 +58809,8 @@ paths: parameters: - *17 - *19 - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -58563,8 +58874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -58601,9 +58912,9 @@ paths: type: integer machines: type: array - items: *382 + items: *385 examples: - default: &583 + default: &586 value: total_count: 2 machines: @@ -58643,8 +58954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *262 - - *263 + - *265 + - *266 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -58731,8 +59042,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: - - *262 - - *263 + - *265 + - *266 - 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 @@ -58801,8 +59112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -58820,7 +59131,7 @@ paths: type: integer secrets: type: array - items: &386 + items: &389 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -58841,7 +59152,7 @@ paths: - created_at - updated_at examples: - default: *383 + default: *386 headers: Link: *57 x-github: @@ -58864,16 +59175,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -58893,17 +59204,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *387 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58923,8 +59234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 requestBody: required: true @@ -58977,8 +59288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '204': @@ -59007,8 +59318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *262 - - *263 + - *265 + - *266 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -59046,7 +59357,7 @@ paths: application/json: schema: type: array - items: &388 + items: &391 title: Collaborator description: Collaborator type: object @@ -59239,8 +59550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *262 - - *263 + - *265 + - *266 - *128 responses: '204': @@ -59283,8 +59594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *262 - - *263 + - *265 + - *266 - *128 requestBody: required: false @@ -59311,7 +59622,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &452 + schema: &455 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -59532,8 +59843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *262 - - *263 + - *265 + - *266 - *128 responses: '204': @@ -59563,8 +59874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *262 - - *263 + - *265 + - *266 - *128 responses: '200': @@ -59585,7 +59896,7 @@ paths: user: anyOf: - type: 'null' - - *388 + - *391 required: - permission - role_name @@ -59639,8 +59950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -59650,7 +59961,7 @@ paths: application/json: schema: type: array - items: &389 + items: &392 title: Commit Comment description: Commit Comment type: object @@ -59708,7 +60019,7 @@ paths: - created_at - updated_at examples: - default: &392 + default: &395 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59767,17 +60078,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: &393 + default: &396 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59834,8 +60145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -59858,7 +60169,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -59909,8 +60220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '204': @@ -59932,8 +60243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -59960,9 +60271,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -59983,8 +60294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -60017,16 +60328,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -60048,10 +60359,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *262 - - *263 + - *265 + - *266 - *73 - - *258 + - *261 responses: '204': description: Response @@ -60100,8 +60411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *262 - - *263 + - *265 + - *266 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -60157,9 +60468,9 @@ paths: application/json: schema: type: array - items: *390 + items: *393 examples: - default: &500 + default: &503 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60253,9 +60564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *262 - - *263 - - &391 + - *265 + - *266 + - &394 name: commit_sha description: The SHA of the commit. in: path @@ -60327,9 +60638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 - *17 - *19 responses: @@ -60339,9 +60650,9 @@ paths: application/json: schema: type: array - items: *389 + items: *392 examples: - default: *392 + default: *395 headers: Link: *57 x-github: @@ -60369,9 +60680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 requestBody: required: true content: @@ -60406,9 +60717,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *393 + default: *396 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60436,9 +60747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 - *17 - *19 responses: @@ -60448,7 +60759,7 @@ paths: application/json: schema: type: array - items: &491 + items: &494 title: Pull Request Simple description: Pull Request Simple type: object @@ -60568,7 +60879,7 @@ paths: milestone: anyOf: - type: 'null' - - *394 + - *397 active_lock_reason: type: - string @@ -60667,7 +60978,7 @@ paths: _links: type: object properties: - comments: &395 + comments: &398 title: Link description: Hypermedia Link type: object @@ -60676,13 +60987,13 @@ paths: type: string required: - href - commits: *395 - statuses: *395 - html: *395 - issue: *395 - review_comments: *395 - review_comment: *395 - self: *395 + commits: *398 + statuses: *398 + html: *398 + issue: *398 + review_comments: *398 + review_comment: *398 + self: *398 required: - comments - commits @@ -60693,7 +61004,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: &493 + auto_merge: &496 title: Auto merge description: The status of auto merging a pull request. type: @@ -60758,7 +61069,7 @@ paths: - author_association - auto_merge examples: - default: &492 + default: &495 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -61295,11 +61606,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *262 - - *263 + - *265 + - *266 - *19 - *17 - - &396 + - &399 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)" @@ -61314,9 +61625,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *393 examples: - default: &479 + default: &482 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -61429,11 +61740,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *262 - - *263 - - *396 - - *397 - - *398 + - *265 + - *266 + - *399 + - *400 + - *401 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -61467,9 +61778,9 @@ paths: type: integer check_runs: type: array - items: *342 + items: *345 examples: - default: *399 + default: *402 headers: Link: *57 x-github: @@ -61494,9 +61805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *262 - - *263 - - *396 + - *265 + - *266 + - *399 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -61504,7 +61815,7 @@ paths: schema: type: integer example: 1 - - *397 + - *400 - *17 - *19 responses: @@ -61522,7 +61833,7 @@ paths: type: integer check_suites: type: array - items: *346 + items: *349 examples: default: value: @@ -61722,9 +62033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *262 - - *263 - - *396 + - *265 + - *266 + - *399 - *17 - *19 responses: @@ -61926,9 +62237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *262 - - *263 - - *396 + - *265 + - *266 + - *399 - *17 - *19 responses: @@ -61938,7 +62249,7 @@ paths: application/json: schema: type: array - items: &557 + items: &560 title: Status description: The status of a commit. type: object @@ -62019,7 +62330,7 @@ paths: site_admin: false headers: Link: *57 - '301': *274 + '301': *277 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62047,8 +62358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -62081,11 +62392,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *400 + - *403 code_of_conduct_file: anyOf: - type: 'null' - - &401 + - &404 title: Community Health File type: object properties: @@ -62105,19 +62416,19 @@ paths: contributing: anyOf: - type: 'null' - - *401 + - *404 readme: anyOf: - type: 'null' - - *401 + - *404 issue_template: anyOf: - type: 'null' - - *401 + - *404 pull_request_template: anyOf: - type: 'null' - - *401 + - *404 required: - code_of_conduct - code_of_conduct_file @@ -62246,8 +62557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *262 - - *263 + - *265 + - *266 - *19 - *17 - name: basehead @@ -62295,8 +62606,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *390 - merge_base_commit: *390 + base_commit: *393 + merge_base_commit: *393 status: type: string enum: @@ -62320,10 +62631,10 @@ paths: - 6 commits: type: array - items: *390 + items: *393 files: type: array - items: *402 + items: *405 required: - url - html_url @@ -62609,8 +62920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *262 - - *263 + - *265 + - *266 - name: path description: path parameter in: path @@ -62761,7 +63072,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &403 + response-if-content-is-a-file: &406 summary: Response if content is a file value: type: file @@ -62898,7 +63209,7 @@ paths: - size - type - url - - &505 + - &508 title: Content File description: Content File type: object @@ -63116,7 +63427,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *403 + response-if-content-is-a-file: *406 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -63185,7 +63496,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *404 + '302': *407 '304': *35 x-github: githubCloudOnly: false @@ -63208,8 +63519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *262 - - *263 + - *265 + - *266 - name: path description: path parameter in: path @@ -63304,7 +63615,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &408 title: File Commit description: File Commit type: object @@ -63460,7 +63771,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: example-for-creating-a-file: value: @@ -63514,7 +63825,7 @@ paths: schema: oneOf: - *3 - - &434 + - &437 description: Repository rule violation was detected type: object properties: @@ -63535,7 +63846,7 @@ paths: items: type: object properties: - placeholder_id: &549 + placeholder_id: &552 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -63567,8 +63878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *262 - - *263 + - *265 + - *266 - name: path description: path parameter in: path @@ -63629,7 +63940,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: default: value: @@ -63684,8 +63995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *262 - - *263 + - *265 + - *266 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -63809,8 +64120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *143 - *144 - *145 @@ -63852,7 +64163,7 @@ paths: application/json: schema: type: array - items: &408 + items: &411 type: object description: A Dependabot alert. properties: @@ -63902,7 +64213,7 @@ paths: - direct - transitive - - security_advisory: *406 + security_advisory: *409 security_vulnerability: *50 url: *55 html_url: *56 @@ -63933,7 +64244,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: *407 + auto_dismissed_at: *410 required: - number - state @@ -64163,9 +64474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *262 - - *263 - - &409 + - *265 + - *266 + - &412 name: alert_number in: path description: |- @@ -64180,7 +64491,7 @@ paths: description: Response content: application/json: - schema: *408 + schema: *411 examples: default: value: @@ -64293,9 +64604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *262 - - *263 - - *409 + - *265 + - *266 + - *412 requestBody: required: true content: @@ -64340,7 +64651,7 @@ paths: description: Response content: application/json: - schema: *408 + schema: *411 examples: default: value: @@ -64469,8 +64780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -64488,7 +64799,7 @@ paths: type: integer secrets: type: array - items: &412 + items: &415 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64542,16 +64853,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: *411 + default: *414 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64571,15 +64882,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '200': description: Response content: application/json: - schema: *412 + schema: *415 examples: default: value: @@ -64605,8 +64916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 requestBody: required: true @@ -64659,8 +64970,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '204': @@ -64683,8 +64994,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: - - *262 - - *263 + - *265 + - *266 - 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 @@ -64858,8 +65169,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -65119,8 +65430,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -65203,7 +65514,7 @@ paths: - version - url additionalProperties: false - metadata: &413 + metadata: &416 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -65242,7 +65553,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *413 + metadata: *416 resolved: type: object description: A collection of resolved package dependencies. @@ -65256,7 +65567,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *413 + metadata: *416 relationship: type: string description: A notation of whether a dependency is requested @@ -65389,8 +65700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *262 - - *263 + - *265 + - *266 - name: sha description: The SHA recorded at creation time. in: query @@ -65431,9 +65742,9 @@ paths: application/json: schema: type: array - items: *414 + items: *417 examples: - default: *415 + default: *418 headers: Link: *57 x-github: @@ -65499,8 +65810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -65582,7 +65893,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *417 examples: simple-example: summary: Simple example @@ -65655,9 +65966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *262 - - *263 - - &416 + - *265 + - *266 + - &419 name: deployment_id description: deployment_id parameter in: path @@ -65669,7 +65980,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *417 examples: default: value: @@ -65734,9 +66045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 responses: '204': description: Response @@ -65758,9 +66069,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 - *17 - *19 responses: @@ -65770,7 +66081,7 @@ paths: application/json: schema: type: array - items: &417 + items: &420 title: Deployment Status description: The status of a deployment. type: object @@ -65934,9 +66245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 requestBody: required: true content: @@ -66011,9 +66322,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *420 examples: - default: &418 + default: &421 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -66069,9 +66380,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 - name: status_id in: path required: true @@ -66082,9 +66393,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *420 examples: - default: *418 + default: *421 '404': *6 x-github: githubCloudOnly: false @@ -66109,8 +66420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -66167,8 +66478,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -66186,7 +66497,7 @@ paths: - 5 environments: type: array - items: &420 + items: &423 title: Environment description: Details of a deployment environment type: object @@ -66248,7 +66559,7 @@ paths: type: string examples: - wait_timer - wait_timer: &422 + wait_timer: &425 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -66290,7 +66601,7 @@ paths: items: type: object properties: - type: *419 + type: *422 reviewer: anyOf: - *4 @@ -66317,7 +66628,7 @@ paths: - id - node_id - type - deployment_branch_policy: &423 + deployment_branch_policy: &426 type: - object - 'null' @@ -66434,9 +66745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *262 - - *263 - - &421 + - *265 + - *266 + - &424 name: environment_name in: path required: true @@ -66449,9 +66760,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: &424 + default: &427 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66535,9 +66846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 requestBody: required: false content: @@ -66547,7 +66858,7 @@ paths: - object - 'null' properties: - wait_timer: *422 + wait_timer: *425 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -66566,14 +66877,14 @@ paths: items: type: object properties: - type: *419 + type: *422 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *423 + deployment_branch_policy: *426 additionalProperties: false examples: default: @@ -66593,9 +66904,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: *424 + default: *427 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -66619,9 +66930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 responses: '204': description: Default response @@ -66646,9 +66957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *17 - *19 responses: @@ -66667,7 +66978,7 @@ paths: - 2 branch_policies: type: array - items: &425 + items: &428 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -66728,9 +67039,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 requestBody: required: true content: @@ -66778,9 +67089,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - example-wildcard: &426 + example-wildcard: &429 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -66822,10 +67133,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 - - &427 + - *265 + - *266 + - *424 + - &430 name: branch_policy_id in: path required: true @@ -66837,9 +67148,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: *426 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66858,10 +67169,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 - - *427 + - *265 + - *266 + - *424 + - *430 requestBody: required: true content: @@ -66890,9 +67201,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: *426 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66911,10 +67222,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 - - *427 + - *265 + - *266 + - *424 + - *430 responses: '204': description: Response @@ -66939,9 +67250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *421 - - *263 - - *262 + - *424 + - *266 + - *265 responses: '200': description: List of deployment protection rules @@ -66958,7 +67269,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &428 + items: &431 title: Deployment protection rule description: Deployment protection rule type: object @@ -66980,7 +67291,7 @@ paths: for the environment. examples: - true - app: &429 + app: &432 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -67083,9 +67394,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: - - *421 - - *263 - - *262 + - *424 + - *266 + - *265 requestBody: content: application/json: @@ -67106,9 +67417,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *428 + schema: *431 examples: - default: &430 + default: &433 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -67143,9 +67454,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: - - *421 - - *263 - - *262 + - *424 + - *266 + - *265 - *19 - *17 responses: @@ -67165,7 +67476,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *429 + items: *432 examples: default: value: @@ -67200,10 +67511,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *262 - - *263 - - *421 - - &431 + - *265 + - *266 + - *424 + - &434 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -67215,9 +67526,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *431 examples: - default: *430 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67238,10 +67549,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *421 - - *263 - - *262 - - *431 + - *424 + - *266 + - *265 + - *434 responses: '204': description: Response @@ -67267,9 +67578,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *17 - *19 responses: @@ -67287,9 +67598,9 @@ paths: type: integer secrets: type: array - items: *308 + items: *311 examples: - default: *309 + default: *312 headers: Link: *57 x-github: @@ -67314,17 +67625,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 responses: '200': description: Response content: application/json: - schema: *310 + schema: *313 examples: - default: *311 + default: *314 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67346,18 +67657,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *123 responses: '200': description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: *432 + default: *435 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67379,9 +67690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *123 requestBody: required: true @@ -67439,9 +67750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *123 responses: '204': @@ -67467,10 +67778,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *262 - - *263 - - *421 - - *284 + - *265 + - *266 + - *424 + - *287 - *19 responses: '200': @@ -67487,9 +67798,9 @@ paths: type: integer variables: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 headers: Link: *57 x-github: @@ -67512,9 +67823,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 requestBody: required: true content: @@ -67566,18 +67877,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *126 responses: '200': description: Response content: application/json: - schema: *312 + schema: *315 examples: - default: *433 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67598,10 +67909,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 - - *421 + - *424 requestBody: required: true content: @@ -67643,10 +67954,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 - - *421 + - *424 responses: '204': description: Response @@ -67668,8 +67979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -67746,8 +68057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *262 - - *263 + - *265 + - *266 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -67906,8 +68217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -67940,9 +68251,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 '400': *14 '422': *15 '403': *27 @@ -67963,8 +68274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68024,7 +68335,7 @@ paths: schema: oneOf: - *93 - - *434 + - *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68049,8 +68360,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *262 - - *263 + - *265 + - *266 - name: file_sha in: path required: true @@ -68150,8 +68461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68260,7 +68571,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &438 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -68487,15 +68798,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 responses: '200': description: Response content: application/json: - schema: *435 + schema: *438 examples: default: value: @@ -68551,9 +68862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *262 - - *263 - - &436 + - *265 + - *266 + - &439 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. @@ -68570,7 +68881,7 @@ paths: application/json: schema: type: array - items: &437 + items: &440 title: Git Reference description: Git references within a repository type: object @@ -68646,17 +68957,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *262 - - *263 - - *436 + - *265 + - *266 + - *439 responses: '200': description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: &438 + default: &441 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -68685,8 +68996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68715,9 +69026,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: *438 + default: *441 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -68743,9 +69054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *262 - - *263 - - *436 + - *265 + - *266 + - *439 requestBody: required: true content: @@ -68774,9 +69085,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: *438 + default: *441 '422': *15 '409': *44 x-github: @@ -68794,9 +69105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *262 - - *263 - - *436 + - *265 + - *266 + - *439 responses: '204': description: Response @@ -68849,8 +69160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68917,7 +69228,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &443 title: Git Tag description: Metadata for a Git tag type: object @@ -68973,7 +69284,7 @@ paths: - sha - type - url - verification: *439 + verification: *442 required: - sha - url @@ -68983,7 +69294,7 @@ paths: - tag - message examples: - default: &441 + default: &444 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69056,8 +69367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *262 - - *263 + - *265 + - *266 - name: tag_sha in: path required: true @@ -69068,9 +69379,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *443 examples: - default: *441 + default: *444 '404': *6 '409': *44 x-github: @@ -69094,8 +69405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -69169,7 +69480,7 @@ paths: description: Response content: application/json: - schema: &442 + schema: &445 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -69287,8 +69598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *262 - - *263 + - *265 + - *266 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -69311,7 +69622,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *445 examples: default-response: summary: Default response @@ -69370,8 +69681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -69381,7 +69692,7 @@ paths: application/json: schema: type: array - items: &443 + items: &446 title: Webhook description: Webhooks for repositories. type: object @@ -69444,7 +69755,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &656 + last_response: &659 title: Hook Response type: object properties: @@ -69521,8 +69832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -69575,9 +69886,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: &444 + default: &447 value: type: Repository id: 12345678 @@ -69625,17 +69936,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '200': description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *444 + default: *447 '404': *6 x-github: githubCloudOnly: false @@ -69655,8 +69966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 requestBody: required: true @@ -69702,9 +70013,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *444 + default: *447 '422': *15 '404': *6 x-github: @@ -69725,8 +70036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '204': @@ -69751,8 +70062,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '200': @@ -69780,8 +70091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *157 requestBody: required: false @@ -69826,8 +70137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 - *17 - *158 @@ -69859,8 +70170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 - *16 responses: @@ -69889,8 +70200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 - *16 responses: @@ -69914,8 +70225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '204': @@ -69941,8 +70252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '204': @@ -70001,14 +70312,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: &445 + schema: &448 title: Import description: A repository import from an external source. type: object @@ -70115,7 +70426,7 @@ paths: - html_url - authors_url examples: - default: &448 + default: &451 value: vcs: subversion use_lfs: true @@ -70131,7 +70442,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': &446 + '503': &449 description: Unavailable due to service under maintenance. content: application/json: @@ -70160,8 +70471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -70209,7 +70520,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: default: value: @@ -70234,7 +70545,7 @@ paths: type: string '422': *15 '404': *6 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70262,8 +70573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -70315,7 +70626,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: example-1: summary: Example 1 @@ -70363,7 +70674,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': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70386,12 +70697,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70417,9 +70728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *262 - - *263 - - &606 + - *265 + - *266 + - &609 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -70433,7 +70744,7 @@ paths: application/json: schema: type: array - items: &447 + items: &450 title: Porter Author description: Porter Author type: object @@ -70487,7 +70798,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': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70512,8 +70823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *262 - - *263 + - *265 + - *266 - name: author_id in: path required: true @@ -70543,7 +70854,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *450 examples: default: value: @@ -70556,7 +70867,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70580,8 +70891,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -70622,7 +70933,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70650,8 +70961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -70678,11 +70989,11 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: *448 + default: *451 '422': *15 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70705,8 +71016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -70714,8 +71025,8 @@ paths: application/json: schema: *20 examples: - default: *449 - '301': *274 + default: *452 + '301': *277 '404': *6 x-github: githubCloudOnly: false @@ -70735,8 +71046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -70749,7 +71060,7 @@ paths: properties: {} additionalProperties: false examples: - default: &451 + default: &454 value: limit: collaborators_only origin: repository @@ -70774,13 +71085,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: application/json: - schema: *450 + schema: *453 examples: default: summary: Example request body @@ -70794,7 +71105,7 @@ paths: application/json: schema: *175 examples: - default: *451 + default: *454 '409': description: Response x-github: @@ -70816,8 +71127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -70840,8 +71151,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -70851,9 +71162,9 @@ paths: application/json: schema: type: array - items: *452 + items: *455 examples: - default: &599 + default: &602 value: - id: 1 repository: @@ -70984,8 +71295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *262 - - *263 + - *265 + - *266 - *179 requestBody: required: false @@ -71015,7 +71326,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *455 examples: default: value: @@ -71146,8 +71457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *262 - - *263 + - *265 + - *266 - *179 responses: '204': @@ -71179,8 +71490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *262 - - *263 + - *265 + - *266 - 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 @@ -71208,6 +71519,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -71220,7 +71539,7 @@ paths: required: false schema: type: string - - *181 + - *184 - name: sort description: What to sort results by. in: query @@ -71245,7 +71564,7 @@ paths: type: array items: *74 examples: - default: &461 + default: &464 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71393,7 +71712,7 @@ paths: state_reason: completed headers: Link: *57 - '301': *274 + '301': *277 '422': *15 '404': *6 x-github: @@ -71422,8 +71741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -71487,6 +71806,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -71506,7 +71832,7 @@ paths: application/json: schema: *74 examples: - default: &456 + default: &459 value: id: 1 node_id: MDU6SXNzdWUx @@ -71662,7 +71988,7 @@ paths: '422': *15 '503': *62 '404': *6 - '410': *271 + '410': *274 x-github: triggersNotification: true githubCloudOnly: false @@ -71690,8 +72016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *83 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -71712,9 +72038,9 @@ paths: application/json: schema: type: array - items: *453 + items: *456 examples: - default: &458 + default: &461 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71772,17 +72098,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '200': description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: &454 + default: &457 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71836,8 +72162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -71860,9 +72186,9 @@ paths: description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: *454 + default: *457 '422': *15 x-github: githubCloudOnly: false @@ -71880,8 +72206,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '204': @@ -71902,8 +72228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71930,9 +72256,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -71953,8 +72279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -71987,16 +72313,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -72018,10 +72344,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *262 - - *263 + - *265 + - *266 - *73 - - *258 + - *261 responses: '204': description: Response @@ -72041,8 +72367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -72052,7 +72378,7 @@ paths: application/json: schema: type: array - items: &455 + items: &458 title: Issue Event description: Issue Event type: object @@ -72391,8 +72717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *262 - - *263 + - *265 + - *266 - name: event_id in: path required: true @@ -72403,7 +72729,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *458 examples: default: value: @@ -72596,7 +72922,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *271 + '410': *274 '403': *27 x-github: githubCloudOnly: false @@ -72630,9 +72956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *262 - - *263 - - &457 + - *265 + - *266 + - &460 name: issue_number description: The number that identifies the issue. in: path @@ -72646,10 +72972,10 @@ paths: application/json: schema: *74 examples: - default: *456 - '301': *274 + default: *459 + '301': *277 '404': *6 - '410': *271 + '410': *274 '304': *35 x-github: githubCloudOnly: false @@ -72674,9 +73000,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -72768,6 +73094,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -72786,13 +73120,13 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 '422': *15 '503': *62 '403': *27 - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72810,9 +73144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -72840,7 +73174,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72856,9 +73190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: content: application/json: @@ -72885,7 +73219,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72907,9 +73241,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: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - name: assignee in: path required: true @@ -72949,9 +73283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *64 - *17 - *19 @@ -72962,13 +73296,13 @@ paths: application/json: schema: type: array - items: *453 + items: *456 examples: - default: *458 + default: *461 headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72997,9 +73331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -73021,16 +73355,16 @@ paths: description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: *454 + default: *457 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *271 + '410': *274 '422': *15 '404': *6 x-github: @@ -73050,9 +73384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -73066,7 +73400,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &462 + - &465 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -73115,7 +73449,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &463 + - &466 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73243,7 +73577,7 @@ paths: - performed_via_github_app - assignee - assigner - - &464 + - &467 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73289,7 +73623,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &465 + - &468 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73335,7 +73669,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &466 + - &469 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73384,7 +73718,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &467 + - &470 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -73426,7 +73760,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &468 + - &471 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -73468,7 +73802,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &469 + - &472 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -73524,7 +73858,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &470 + - &473 title: Locked Issue Event description: Locked Issue Event type: object @@ -73569,7 +73903,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &471 + - &474 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -73630,7 +73964,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &472 + - &475 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -73691,7 +74025,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &473 + - &476 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -73752,7 +74086,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &474 + - &477 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -73845,7 +74179,7 @@ paths: color: red headers: Link: *57 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73862,9 +74196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -73874,7 +74208,7 @@ paths: application/json: schema: type: array - items: &459 + items: &462 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -73929,7 +74263,7 @@ paths: - color - default examples: - default: &460 + default: &463 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -73947,9 +74281,9 @@ paths: default: false headers: Link: *57 - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73966,9 +74300,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -74027,12 +74361,12 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 - '301': *274 + default: *463 + '301': *277 '404': *6 - '410': *271 + '410': *274 '422': *15 x-github: githubCloudOnly: false @@ -74049,9 +74383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -74111,12 +74445,12 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 - '301': *274 + default: *463 + '301': *277 '404': *6 - '410': *271 + '410': *274 '422': *15 x-github: githubCloudOnly: false @@ -74133,15 +74467,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 responses: '204': description: Response - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74160,9 +74494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - name: name in: path required: true @@ -74175,7 +74509,7 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: default: value: @@ -74186,9 +74520,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74208,9 +74542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -74239,7 +74573,7 @@ paths: '204': description: Response '403': *27 - '410': *271 + '410': *274 '404': *6 '422': *15 x-github: @@ -74257,9 +74591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 responses: '204': description: Response @@ -74281,9 +74615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - 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. @@ -74309,13 +74643,13 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74333,9 +74667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74367,16 +74701,16 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -74398,10 +74732,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *262 - - *263 - - *457 - - *258 + - *265 + - *266 + - *460 + - *261 responses: '204': description: Response @@ -74430,9 +74764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74456,7 +74790,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -74489,9 +74823,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -74503,11 +74837,11 @@ paths: type: array items: *74 examples: - default: *461 + default: *464 headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74535,9 +74869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74566,14 +74900,14 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *271 + '410': *274 '422': *15 '404': *6 x-github: @@ -74593,9 +74927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74628,7 +74962,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 '403': *27 '404': *6 '422': *7 @@ -74650,9 +74984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -74667,9 +75001,6 @@ paths: description: Timeline Event type: object anyOf: - - *462 - - *463 - - *464 - *465 - *466 - *467 @@ -74680,6 +75011,9 @@ paths: - *472 - *473 - *474 + - *475 + - *476 + - *477 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -75003,7 +75337,7 @@ paths: type: string comments: type: array - items: &494 + items: &497 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -75241,7 +75575,7 @@ paths: type: string comments: type: array - items: *389 + items: *392 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -75516,7 +75850,7 @@ paths: headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75533,8 +75867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -75544,7 +75878,7 @@ paths: application/json: schema: type: array - items: &475 + items: &478 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -75611,8 +75945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -75648,9 +75982,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *478 examples: - default: &476 + default: &479 value: id: 1 key: ssh-rsa AAA... @@ -75684,9 +76018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *262 - - *263 - - &477 + - *265 + - *266 + - &480 name: key_id description: The unique identifier of the key. in: path @@ -75698,9 +76032,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *478 examples: - default: *476 + default: *479 '404': *6 x-github: githubCloudOnly: false @@ -75718,9 +76052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *262 - - *263 - - *477 + - *265 + - *266 + - *480 responses: '204': description: Response @@ -75740,8 +76074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -75751,9 +76085,9 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 + default: *463 headers: Link: *57 '404': *6 @@ -75774,8 +76108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -75811,9 +76145,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: &478 + default: &481 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75845,8 +76179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *262 - - *263 + - *265 + - *266 - name: name in: path required: true @@ -75857,9 +76191,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *478 + default: *481 '404': *6 x-github: githubCloudOnly: false @@ -75876,8 +76210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *262 - - *263 + - *265 + - *266 - name: name in: path required: true @@ -75916,7 +76250,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: default: value: @@ -75942,8 +76276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *262 - - *263 + - *265 + - *266 - name: name in: path required: true @@ -75969,8 +76303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -76009,9 +76343,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *262 - - *263 - - *367 + - *265 + - *266 + - *370 responses: '200': description: Response @@ -76158,8 +76492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76224,8 +76558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76259,9 +76593,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *390 + schema: *393 examples: - default: *479 + default: *482 '204': description: Response when already merged '404': @@ -76286,8 +76620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *262 - - *263 + - *265 + - *266 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -76328,7 +76662,7 @@ paths: application/json: schema: type: array - items: *394 + items: *397 examples: default: value: @@ -76384,8 +76718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76425,9 +76759,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: &480 + default: &483 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -76486,9 +76820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *262 - - *263 - - &481 + - *265 + - *266 + - &484 name: milestone_number description: The number that identifies the milestone. in: path @@ -76500,9 +76834,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *480 + default: *483 '404': *6 x-github: githubCloudOnly: false @@ -76519,9 +76853,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *262 - - *263 - - *481 + - *265 + - *266 + - *484 requestBody: required: false content: @@ -76559,9 +76893,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *480 + default: *483 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76577,9 +76911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *262 - - *263 - - *481 + - *265 + - *266 + - *484 responses: '204': description: Response @@ -76600,9 +76934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *262 - - *263 - - *481 + - *265 + - *266 + - *484 - *17 - *19 responses: @@ -76612,9 +76946,9 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 + default: *463 headers: Link: *57 x-github: @@ -76633,12 +76967,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *262 - - *263 - - *482 - - *483 + - *265 + - *266 + - *485 + - *486 - *64 - - *484 + - *487 - *17 - *19 responses: @@ -76650,7 +76984,7 @@ paths: type: array items: *86 examples: - default: *485 + default: *488 headers: Link: *57 x-github: @@ -76674,8 +77008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -76733,14 +77067,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: &486 + schema: &489 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -76884,7 +77218,7 @@ paths: - custom_404 - public examples: - default: &487 + default: &490 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76925,8 +77259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76981,9 +77315,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *489 examples: - default: *487 + default: *490 '422': *15 '409': *44 x-github: @@ -77006,8 +77340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -77107,8 +77441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -77134,8 +77468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -77145,7 +77479,7 @@ paths: application/json: schema: type: array - items: &488 + items: &491 title: Page Build description: Page Build type: object @@ -77237,8 +77571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *262 - - *263 + - *265 + - *266 responses: '201': description: Response @@ -77285,16 +77619,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *488 + schema: *491 examples: - default: &489 + default: &492 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -77342,8 +77676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *262 - - *263 + - *265 + - *266 - name: build_id in: path required: true @@ -77354,9 +77688,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *491 examples: - default: *489 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77376,8 +77710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -77485,9 +77819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *262 - - *263 - - &490 + - *265 + - *266 + - &493 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -77545,9 +77879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *262 - - *263 - - *490 + - *265 + - *266 + - *493 responses: '204': *137 '404': *6 @@ -77574,8 +77908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -77870,8 +78204,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Private vulnerability reporting status @@ -77908,8 +78242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': *137 '422': *14 @@ -77930,8 +78264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': *137 '422': *14 @@ -77954,8 +78288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *262 - - *263 + - *265 + - *266 - name: state description: Indicates the state of the projects to return. in: query @@ -77976,7 +78310,7 @@ paths: application/json: schema: type: array - items: *213 + items: *216 examples: default: value: @@ -78016,7 +78350,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *271 + '410': *274 '422': *7 x-github: githubCloudOnly: false @@ -78039,8 +78373,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -78066,13 +78400,13 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: - default: *270 + default: *273 '401': *23 '403': *27 '404': *6 - '410': *271 + '410': *274 '422': *7 x-github: githubCloudOnly: false @@ -78095,8 +78429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -78104,7 +78438,7 @@ paths: application/json: schema: type: array - items: *218 + items: *221 examples: default: value: @@ -78135,8 +78469,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -78148,7 +78482,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *218 + items: *221 required: - properties examples: @@ -78198,8 +78532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *262 - - *263 + - *265 + - *266 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -78259,9 +78593,9 @@ paths: application/json: schema: type: array - items: *491 + items: *494 examples: - default: *492 + default: *495 headers: Link: *57 '304': *35 @@ -78293,8 +78627,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -78361,7 +78695,7 @@ paths: description: Response content: application/json: - schema: &496 + schema: &499 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -78490,7 +78824,7 @@ paths: milestone: anyOf: - type: 'null' - - *394 + - *397 active_lock_reason: type: - string @@ -78545,7 +78879,7 @@ paths: type: - array - 'null' - items: *195 + items: *198 head: type: object properties: @@ -78583,14 +78917,14 @@ paths: _links: type: object properties: - comments: *395 - commits: *395 - statuses: *395 - html: *395 - issue: *395 - review_comments: *395 - review_comment: *395 - self: *395 + comments: *398 + commits: *398 + statuses: *398 + html: *398 + issue: *398 + review_comments: *398 + review_comment: *398 + self: *398 required: - comments - commits @@ -78601,7 +78935,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: *493 + auto_merge: *496 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -78703,7 +79037,7 @@ paths: - merged_by - review_comments examples: - default: &497 + default: &500 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79230,8 +79564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: sort in: query required: false @@ -79260,9 +79594,9 @@ paths: application/json: schema: type: array - items: *494 + items: *497 examples: - default: &499 + default: &502 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79339,17 +79673,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '200': description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: &495 + default: &498 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79424,8 +79758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -79448,9 +79782,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79466,8 +79800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '204': @@ -79489,8 +79823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -79517,9 +79851,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -79540,8 +79874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -79574,16 +79908,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -79605,10 +79939,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *262 - - *263 + - *265 + - *266 - *73 - - *258 + - *261 responses: '204': description: Response @@ -79651,9 +79985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *262 - - *263 - - &498 + - *265 + - *266 + - &501 name: pull_number description: The number that identifies the pull request. in: path @@ -79666,9 +80000,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '304': *35 '404': *6 '406': @@ -79703,9 +80037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -79747,9 +80081,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '422': *15 '403': *27 x-github: @@ -79771,9 +80105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: true content: @@ -79834,17 +80168,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '401': *23 '403': *27 '404': *6 @@ -79874,9 +80208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *83 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -79897,9 +80231,9 @@ paths: application/json: schema: type: array - items: *494 + items: *497 examples: - default: *499 + default: *502 headers: Link: *57 x-github: @@ -79932,9 +80266,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: true content: @@ -80040,7 +80374,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: example-for-a-multi-line-comment: value: @@ -80128,9 +80462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *73 requestBody: required: true @@ -80153,7 +80487,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: default: value: @@ -80239,9 +80573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *17 - *19 responses: @@ -80251,9 +80585,9 @@ paths: application/json: schema: type: array - items: *390 + items: *393 examples: - default: *500 + default: *503 headers: Link: *57 x-github: @@ -80283,9 +80617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *17 - *19 responses: @@ -80295,7 +80629,7 @@ paths: application/json: schema: type: array - items: *402 + items: *405 examples: default: value: @@ -80333,9 +80667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 responses: '204': description: Response if pull request has been merged @@ -80358,9 +80692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -80472,9 +80806,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 responses: '200': description: Response @@ -80549,9 +80883,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -80588,7 +80922,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -81124,9 +81458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: true content: @@ -81160,7 +81494,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -81665,9 +81999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *17 - *19 responses: @@ -81677,7 +82011,7 @@ paths: application/json: schema: type: array - items: &501 + items: &504 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -81833,9 +82167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -81925,9 +82259,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: &503 + default: &506 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81990,10 +82324,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - &502 + - *265 + - *266 + - *501 + - &505 name: review_id description: The unique identifier of the review. in: path @@ -82005,9 +82339,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: &504 + default: &507 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -82066,10 +82400,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 requestBody: required: true content: @@ -82092,7 +82426,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -82154,18 +82488,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *503 + default: *506 '422': *7 '404': *6 x-github: @@ -82192,10 +82526,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 - *17 - *19 responses: @@ -82293,9 +82627,9 @@ paths: _links: type: object properties: - self: *395 - html: *395 - pull_request: *395 + self: *398 + html: *398 + pull_request: *398 required: - self - html @@ -82446,10 +82780,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 requestBody: required: true content: @@ -82478,7 +82812,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -82541,10 +82875,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 requestBody: required: true content: @@ -82579,9 +82913,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *504 + default: *507 '404': *6 '422': *7 '403': *27 @@ -82603,9 +82937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -82669,8 +83003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *262 - - *263 + - *265 + - *266 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -82683,9 +83017,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *508 examples: - default: &506 + default: &509 value: type: file encoding: base64 @@ -82727,8 +83061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *262 - - *263 + - *265 + - *266 - name: dir description: The alternate path to look for a README file in: path @@ -82748,9 +83082,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *508 examples: - default: *506 + default: *509 '404': *6 '422': *15 x-github: @@ -82772,8 +83106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -82783,7 +83117,7 @@ paths: application/json: schema: type: array - items: &507 + items: &510 title: Release description: A release. type: object @@ -82855,7 +83189,7 @@ paths: author: *4 assets: type: array - items: &508 + items: &511 title: Release Asset description: Data related to a release. type: object @@ -83035,8 +83369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -83112,9 +83446,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: &511 + default: &514 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -83217,9 +83551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *262 - - *263 - - &509 + - *265 + - *266 + - &512 name: asset_id description: The unique identifier of the asset. in: path @@ -83231,9 +83565,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *511 examples: - default: &510 + default: &513 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 @@ -83267,7 +83601,7 @@ paths: type: User site_admin: false '404': *6 - '302': *404 + '302': *407 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83283,9 +83617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *262 - - *263 - - *509 + - *265 + - *266 + - *512 requestBody: required: false content: @@ -83314,9 +83648,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *511 examples: - default: *510 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83332,9 +83666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *262 - - *263 - - *509 + - *265 + - *266 + - *512 responses: '204': description: Response @@ -83358,8 +83692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -83445,16 +83779,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83471,8 +83805,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *262 - - *263 + - *265 + - *266 - name: tag description: tag parameter in: path @@ -83485,9 +83819,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -83509,9 +83843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *262 - - *263 - - &512 + - *265 + - *266 + - &515 name: release_id description: The unique identifier of the release. in: path @@ -83525,9 +83859,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: *507 + schema: *510 examples: - default: *511 + default: *514 '401': description: Unauthorized x-github: @@ -83545,9 +83879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 requestBody: required: false content: @@ -83611,9 +83945,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 '404': description: Not Found if the discussion category name is invalid content: @@ -83634,9 +83968,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 responses: '204': description: Response @@ -83656,9 +83990,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 - *17 - *19 responses: @@ -83668,7 +84002,7 @@ paths: application/json: schema: type: array - items: *508 + items: *511 examples: default: value: @@ -83748,9 +84082,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: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 - name: name in: query required: true @@ -83776,7 +84110,7 @@ paths: description: Response for successful upload content: application/json: - schema: *508 + schema: *511 examples: response-for-successful-upload: value: @@ -83830,9 +84164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 - 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. @@ -83856,9 +84190,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -83879,9 +84213,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 requestBody: required: true content: @@ -83911,16 +84245,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -83942,10 +84276,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *262 - - *263 - - *512 - - *258 + - *265 + - *266 + - *515 + - *261 responses: '204': description: Response @@ -83969,9 +84303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 - *17 - *19 responses: @@ -83987,8 +84321,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *513 - - &515 + - *516 + - &518 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -84007,54 +84341,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *514 - - *515 - - allOf: - - *516 - - *515 - allOf: - *517 - - *515 - - allOf: - *518 - - *515 - allOf: - *519 - - *515 + - *518 - allOf: - *520 - - *515 + - *518 - allOf: - *521 - - *515 + - *518 - allOf: - *522 - - *515 + - *518 - allOf: - *523 - - *515 + - *518 - allOf: - *524 - - *515 + - *518 - allOf: - *525 - - *515 + - *518 - allOf: - *526 - - *515 + - *518 - allOf: - *527 - - *515 + - *518 - allOf: - *528 - - *515 + - *518 - allOf: - *529 - - *515 + - *518 - allOf: - *530 - - *515 + - *518 + - allOf: + - *531 + - *518 + - allOf: + - *532 + - *518 + - allOf: + - *533 + - *518 examples: default: value: @@ -84093,8 +84427,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - name: includes_parents @@ -84105,7 +84439,7 @@ paths: schema: type: boolean default: true - - *531 + - *534 responses: '200': description: Response @@ -84113,7 +84447,7 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: default: value: @@ -84160,8 +84494,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 requestBody: description: Request body required: true @@ -84181,16 +84515,16 @@ paths: - tag - push default: branch - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *220 + items: *226 + conditions: *223 rules: type: array description: An array of rules within the ruleset. - items: *225 + items: *228 required: - name - enforcement @@ -84221,9 +84555,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: &541 + default: &544 value: id: 42 name: super cool ruleset @@ -84270,12 +84604,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *262 - - *263 - - *532 - - *533 - - *534 + - *265 + - *266 - *535 + - *536 + - *537 + - *538 - *17 - *19 responses: @@ -84283,9 +84617,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *539 examples: - default: *537 + default: *540 '404': *6 '500': *140 x-github: @@ -84306,17 +84640,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *262 - - *263 - - *538 + - *265 + - *266 + - *541 responses: '200': description: Response content: application/json: - schema: *539 + schema: *542 examples: - default: *540 + default: *543 '404': *6 '500': *140 x-github: @@ -84344,8 +84678,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84365,9 +84699,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *541 + default: *544 '404': *6 '500': *140 put: @@ -84385,8 +84719,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84411,16 +84745,16 @@ paths: - branch - tag - push - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *220 + items: *226 + conditions: *223 rules: description: An array of rules within the ruleset. type: array - items: *225 + items: *228 examples: default: value: @@ -84448,9 +84782,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *541 + default: *544 '404': *6 '500': *140 delete: @@ -84468,8 +84802,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84492,8 +84826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - name: ruleset_id @@ -84509,9 +84843,9 @@ paths: application/json: schema: type: array - items: *228 + items: *231 examples: - default: *542 + default: *545 '404': *6 '500': *140 x-github: @@ -84530,8 +84864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84549,7 +84883,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: default: value: @@ -84604,20 +84938,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *262 - - *263 - - *229 - - *230 - - *231 + - *265 + - *266 - *232 - - *46 - - *19 - - *17 - - *544 - - *545 - *233 - *234 - *235 + - *46 + - *19 + - *17 + - *547 + - *548 + - *236 + - *237 + - *238 responses: '200': description: Response @@ -84625,7 +84959,7 @@ paths: application/json: schema: type: array - items: &548 + items: &551 type: object properties: number: *52 @@ -84641,8 +84975,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *546 - resolution: *547 + state: *549 + resolution: *550 resolved_at: type: - string @@ -84861,15 +85195,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 responses: '200': description: Response content: application/json: - schema: *548 + schema: *551 examples: default: value: @@ -84921,9 +85255,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 requestBody: required: true content: @@ -84931,8 +85265,8 @@ paths: schema: type: object properties: - state: *546 - resolution: *547 + state: *549 + resolution: *550 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -84951,7 +85285,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *551 examples: default: value: @@ -85026,9 +85360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 - *19 - *17 responses: @@ -85039,7 +85373,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &677 + items: &680 type: object properties: type: @@ -85418,8 +85752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -85427,14 +85761,14 @@ paths: schema: type: object properties: - reason: &550 + reason: &553 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *549 + placeholder_id: *552 required: - reason - placeholder_id @@ -85451,7 +85785,7 @@ paths: schema: type: object properties: - reason: *550 + reason: *553 expire_at: type: - string @@ -85495,8 +85829,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: - - *262 - - *263 + - *265 + - *266 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -85511,7 +85845,7 @@ paths: properties: incremental_scans: type: array - items: &551 + items: &554 description: Information on a single scan performed by secret scanning on the repository type: object @@ -85539,15 +85873,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *551 + items: *554 backfill_scans: type: array - items: *551 + items: *554 custom_pattern_backfill_scans: type: array items: allOf: - - *551 + - *554 - type: object properties: pattern_name: @@ -85617,8 +85951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *262 - - *263 + - *265 + - *266 - *46 - name: sort description: The property to sort the results by. @@ -85662,9 +85996,9 @@ paths: application/json: schema: type: array - items: *552 + items: *555 examples: - default: *553 + default: *556 '400': *14 '404': *6 x-github: @@ -85687,8 +86021,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -85768,7 +86102,7 @@ paths: login: type: string description: The username of the user credited. - type: *238 + type: *241 required: - login - type @@ -85858,9 +86192,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *555 examples: - default: &555 + default: &558 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -86093,8 +86427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -86207,7 +86541,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *555 examples: default: value: @@ -86354,17 +86688,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 responses: '200': description: Response content: application/json: - schema: *552 + schema: *555 examples: - default: *555 + default: *558 '403': *27 '404': *6 x-github: @@ -86388,9 +86722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 requestBody: required: true content: @@ -86470,7 +86804,7 @@ paths: login: type: string description: The username of the user credited. - type: *238 + type: *241 required: - login - type @@ -86561,10 +86895,10 @@ paths: description: Response content: application/json: - schema: *552 + schema: *555 examples: - default: *555 - add_credit: *555 + default: *558 + add_credit: *558 '403': *27 '404': *6 '422': @@ -86602,9 +86936,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: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 responses: '202': *45 '400': *14 @@ -86631,17 +86965,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 responses: '202': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 '400': *14 '422': *15 '403': *27 @@ -86667,8 +87001,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -86764,8 +87098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -86774,7 +87108,7 @@ paths: application/json: schema: type: array - items: &556 + items: &559 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86807,8 +87141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -86886,8 +87220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -86981,8 +87315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -87136,8 +87470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -87147,7 +87481,7 @@ paths: application/json: schema: type: array - items: *556 + items: *559 examples: default: value: @@ -87180,8 +87514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *262 - - *263 + - *265 + - *266 - name: sha in: path required: true @@ -87237,7 +87571,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *560 examples: default: value: @@ -87291,8 +87625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -87304,7 +87638,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -87324,14 +87658,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &558 + schema: &561 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87404,8 +87738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -87431,7 +87765,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *561 examples: default: value: @@ -87458,8 +87792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -87479,8 +87813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -87562,8 +87896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -87571,7 +87905,7 @@ paths: application/json: schema: type: array - items: &559 + items: &562 title: Tag protection description: Tag protection type: object @@ -87628,8 +87962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -87652,7 +87986,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *562 examples: default: value: @@ -87683,8 +88017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -87721,8 +88055,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *262 - - *263 + - *265 + - *266 - name: ref in: path required: true @@ -87758,8 +88092,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -87771,7 +88105,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 headers: Link: *57 '404': *6 @@ -87791,8 +88125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *262 - - *263 + - *265 + - *266 - *19 - *17 responses: @@ -87800,7 +88134,7 @@ paths: description: Response content: application/json: - schema: &560 + schema: &563 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -87812,7 +88146,7 @@ paths: required: - names examples: - default: &561 + default: &564 value: names: - octocat @@ -87835,8 +88169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -87867,9 +88201,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *561 + default: *564 '404': *6 '422': *7 x-github: @@ -87890,9 +88224,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *262 - - *263 - - &562 + - *265 + - *266 + - &565 name: per description: The time frame to display results for. in: query @@ -87923,7 +88257,7 @@ paths: - 128 clones: type: array - items: &563 + items: &566 title: Traffic type: object properties: @@ -88010,8 +88344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -88105,8 +88439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -88169,9 +88503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *262 - - *263 - - *562 + - *265 + - *266 + - *565 responses: '200': description: Response @@ -88192,7 +88526,7 @@ paths: - 3782 views: type: array - items: *563 + items: *566 required: - uniques - count @@ -88269,8 +88603,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -88544,8 +88878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -88568,8 +88902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -88591,8 +88925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -88618,8 +88952,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *262 - - *263 + - *265 + - *266 - name: ref in: path required: true @@ -88711,9 +89045,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88962,7 +89296,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &564 + text_matches: &567 title: Search Result Text Matches type: array items: @@ -89125,7 +89459,7 @@ paths: enum: - author-date - committer-date - - &565 + - &568 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 @@ -89194,7 +89528,7 @@ paths: committer: anyOf: - type: 'null' - - *328 + - *331 comment_count: type: integer message: @@ -89213,7 +89547,7 @@ paths: url: type: string format: uri - verification: *439 + verification: *442 required: - author - committer @@ -89228,7 +89562,7 @@ paths: committer: anyOf: - type: 'null' - - *328 + - *331 parents: type: array items: @@ -89245,7 +89579,7 @@ paths: type: number node_id: type: string - text_matches: *564 + text_matches: *567 required: - sha - node_id @@ -89427,7 +89761,7 @@ paths: - interactions - created - updated - - *565 + - *568 - *17 - *19 - name: advanced_search @@ -89551,7 +89885,7 @@ paths: milestone: anyOf: - type: 'null' - - *394 + - *397 comments: type: integer created_at: @@ -89565,7 +89899,7 @@ paths: - string - 'null' format: date-time - text_matches: *564 + text_matches: *567 pull_request: type: object properties: @@ -89614,6 +89948,7 @@ paths: timeline_url: type: string format: uri + type: *181 performed_via_github_app: anyOf: - type: 'null' @@ -89790,7 +90125,7 @@ paths: enum: - created - updated - - *565 + - *568 - *17 - *19 responses: @@ -89835,7 +90170,7 @@ paths: - 'null' score: type: number - text_matches: *564 + text_matches: *567 required: - id - node_id @@ -89920,7 +90255,7 @@ paths: - forks - help-wanted-issues - updated - - *565 + - *568 - *17 - *19 responses: @@ -90157,7 +90492,7 @@ paths: - admin - pull - push - text_matches: *564 + text_matches: *567 temp_clone_token: type: string allow_merge_commit: @@ -90465,7 +90800,7 @@ paths: - string - 'null' format: uri - text_matches: *564 + text_matches: *567 related: type: - array @@ -90658,7 +90993,7 @@ paths: - followers - repositories - joined - - *565 + - *568 - *17 - *19 responses: @@ -90768,7 +91103,7 @@ paths: type: - boolean - 'null' - text_matches: *564 + text_matches: *567 blog: type: - string @@ -90850,7 +91185,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &566 + - &569 name: team_id description: The unique identifier of the team. in: path @@ -90862,9 +91197,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 x-github: githubCloudOnly: false @@ -90891,7 +91226,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *566 + - *569 requestBody: required: true content: @@ -90955,16 +91290,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '201': description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 '422': *15 '403': *27 @@ -90992,7 +91327,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *566 + - *569 responses: '204': description: Response @@ -91023,7 +91358,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *566 + - *569 - *46 - *17 - *19 @@ -91034,9 +91369,9 @@ paths: application/json: schema: type: array - items: *249 + items: *252 examples: - default: *567 + default: *570 headers: Link: *57 x-github: @@ -91065,7 +91400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *566 + - *569 requestBody: required: true content: @@ -91099,9 +91434,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *250 + default: *253 x-github: triggersNotification: true githubCloudOnly: false @@ -91128,16 +91463,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 responses: '200': description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *250 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91162,8 +91497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 requestBody: required: false content: @@ -91186,9 +91521,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *568 + default: *571 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91213,8 +91548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 responses: '204': description: Response @@ -91243,8 +91578,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *566 - - *251 + - *569 + - *254 - *46 - *17 - *19 @@ -91255,9 +91590,9 @@ paths: application/json: schema: type: array - items: *252 + items: *255 examples: - default: *569 + default: *572 headers: Link: *57 x-github: @@ -91286,8 +91621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 + - *254 requestBody: required: true content: @@ -91309,9 +91644,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: triggersNotification: true githubCloudOnly: false @@ -91338,17 +91673,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 responses: '200': description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91373,9 +91708,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 requestBody: required: true content: @@ -91397,9 +91732,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *570 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91424,9 +91759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 responses: '204': description: Response @@ -91455,9 +91790,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -91483,9 +91818,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 x-github: @@ -91514,9 +91849,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 requestBody: required: true content: @@ -91548,9 +91883,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91576,8 +91911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -91603,9 +91938,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 x-github: @@ -91634,8 +91969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 requestBody: required: true content: @@ -91667,9 +92002,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91693,7 +92028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -91731,7 +92066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *566 + - *569 - name: role description: Filters members returned by their role in the team. in: query @@ -91754,7 +92089,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '404': *6 @@ -91782,7 +92117,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -91819,7 +92154,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -91859,7 +92194,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -91896,16 +92231,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *566 + - *569 - *128 responses: '200': description: Response content: application/json: - schema: *259 + schema: *262 examples: - response-if-user-is-a-team-maintainer: *571 + response-if-user-is-a-team-maintainer: *574 '404': *6 x-github: githubCloudOnly: false @@ -91938,7 +92273,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *566 + - *569 - *128 requestBody: required: false @@ -91964,9 +92299,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - response-if-users-membership-with-team-is-now-pending: *572 + response-if-users-membership-with-team-is-now-pending: *575 '403': description: Forbidden if team synchronization is set up '422': @@ -92000,7 +92335,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -92029,7 +92364,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -92039,9 +92374,9 @@ paths: application/json: schema: type: array - items: *260 + items: *263 examples: - default: *573 + default: *576 headers: Link: *57 '404': *6 @@ -92067,16 +92402,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *566 - - *261 + - *569 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *574 + default: *577 '404': description: Not Found if project is not managed by this team x-github: @@ -92100,8 +92435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *566 - - *261 + - *569 + - *264 requestBody: required: false content: @@ -92168,8 +92503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *566 - - *261 + - *569 + - *264 responses: '204': description: Response @@ -92196,7 +92531,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -92208,7 +92543,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 '404': *6 @@ -92238,15 +92573,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *566 - - *262 - - *263 + - *569 + - *265 + - *266 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *575 + schema: *578 examples: alternative-response-with-extra-repository-information: value: @@ -92397,9 +92732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *566 - - *262 - - *263 + - *569 + - *265 + - *266 requestBody: required: false content: @@ -92449,9 +92784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *566 - - *262 - - *263 + - *569 + - *265 + - *266 responses: '204': description: Response @@ -92476,7 +92811,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -92488,7 +92823,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: *576 + response-if-child-teams-exist: *579 headers: Link: *57 '404': *6 @@ -92521,7 +92856,7 @@ paths: application/json: schema: oneOf: - - &578 + - &581 title: Private User description: Private User type: object @@ -92771,7 +93106,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *577 + - *580 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -92931,7 +93266,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *581 examples: default: value: @@ -93010,7 +93345,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '304': *35 '404': *6 '403': *27 @@ -93134,9 +93469,9 @@ paths: type: integer codespaces: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 '304': *35 '500': *140 '401': *23 @@ -93275,17 +93610,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '401': *23 '403': *27 '404': *6 @@ -93329,7 +93664,7 @@ paths: type: integer secrets: type: array - items: &579 + items: &582 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -93371,7 +93706,7 @@ paths: - visibility - selected_repositories_url examples: - default: *383 + default: *386 headers: Link: *57 x-github: @@ -93449,7 +93784,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *582 examples: default: value: @@ -93595,7 +93930,7 @@ paths: type: array items: *115 examples: - default: *580 + default: *583 '401': *23 '403': *27 '404': *6 @@ -93739,15 +94074,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '304': *35 '500': *140 '401': *23 @@ -93773,7 +94108,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 requestBody: required: false content: @@ -93803,9 +94138,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '401': *23 '403': *27 '404': *6 @@ -93827,7 +94162,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '202': *45 '304': *35 @@ -93856,13 +94191,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '202': description: Response content: application/json: - schema: &581 + schema: &584 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -93915,7 +94250,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &582 + default: &585 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -93947,7 +94282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *186 + - *189 - name: export_id in: path required: true @@ -93960,9 +94295,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: - default: *582 + default: *585 '404': *6 x-github: githubCloudOnly: false @@ -93983,7 +94318,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *186 + - *189 responses: '200': description: Response @@ -93999,9 +94334,9 @@ paths: type: integer machines: type: array - items: *382 + items: *385 examples: - default: *583 + default: *586 '304': *35 '500': *140 '401': *23 @@ -94030,7 +94365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *186 + - *189 requestBody: required: true content: @@ -94086,11 +94421,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *273 + repository: *276 machine: anyOf: - type: 'null' - - *382 + - *385 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -94887,15 +95222,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '304': *35 '500': *140 '400': *14 @@ -94927,15 +95262,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '500': *140 '401': *23 '403': *27 @@ -94965,9 +95300,9 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: &596 + default: &599 value: - id: 197 name: hello_docker @@ -95068,7 +95403,7 @@ paths: application/json: schema: type: array - items: &584 + items: &587 title: Email description: Email type: object @@ -95138,9 +95473,9 @@ paths: application/json: schema: type: array - items: *584 + items: *587 examples: - default: &598 + default: &601 value: - email: octocat@github.com verified: true @@ -95217,7 +95552,7 @@ paths: application/json: schema: type: array - items: *584 + items: *587 examples: default: value: @@ -95329,7 +95664,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '304': *35 @@ -95362,7 +95697,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '304': *35 @@ -95475,7 +95810,7 @@ paths: application/json: schema: type: array - items: &585 + items: &588 title: GPG Key description: A unique encryption key type: object @@ -95620,7 +95955,7 @@ paths: - subkeys - revoked examples: - default: &609 + default: &612 value: - id: 3 name: Octocat's GPG Key @@ -95705,9 +96040,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *588 examples: - default: &586 + default: &589 value: id: 3 name: Octocat's GPG Key @@ -95764,7 +96099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &587 + - &590 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95776,9 +96111,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *588 examples: - default: *586 + default: *589 '404': *6 '304': *35 '403': *27 @@ -95801,7 +96136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *587 + - *590 responses: '204': description: Response @@ -95992,7 +96327,7 @@ paths: type: array items: *59 examples: - default: *588 + default: *591 headers: Link: *57 '404': *6 @@ -96106,7 +96441,7 @@ paths: required: true content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -96198,7 +96533,7 @@ paths: - closed - all default: open - - *181 + - *184 - name: sort description: What to sort results by. in: query @@ -96223,7 +96558,7 @@ paths: type: array items: *74 examples: - default: *182 + default: *185 headers: Link: *57 '404': *6 @@ -96256,7 +96591,7 @@ paths: application/json: schema: type: array - items: &589 + items: &592 title: Key description: Key type: object @@ -96354,9 +96689,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *592 examples: - default: &590 + default: &593 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96389,15 +96724,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *477 + - *480 responses: '200': description: Response content: application/json: - schema: *589 + schema: *592 examples: - default: *590 + default: *593 '404': *6 '304': *35 '403': *27 @@ -96420,7 +96755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *477 + - *480 responses: '204': description: Response @@ -96453,7 +96788,7 @@ paths: application/json: schema: type: array - items: &591 + items: &594 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96532,7 +96867,7 @@ paths: - account - plan examples: - default: &592 + default: &595 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96594,9 +96929,9 @@ paths: application/json: schema: type: array - items: *591 + items: *594 examples: - default: *592 + default: *595 headers: Link: *57 '304': *35 @@ -96636,7 +96971,7 @@ paths: application/json: schema: type: array - items: *188 + items: *191 examples: default: value: @@ -96744,7 +97079,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *191 examples: default: value: @@ -96827,7 +97162,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *191 examples: default: value: @@ -96895,7 +97230,7 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: default: value: @@ -97157,7 +97492,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -97337,7 +97672,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *191 + - *194 - name: exclude in: query required: false @@ -97350,7 +97685,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -97544,7 +97879,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *191 + - *194 responses: '302': description: Response @@ -97570,7 +97905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *191 + - *194 responses: '204': description: Response @@ -97599,8 +97934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *191 - - *593 + - *194 + - *596 responses: '204': description: Response @@ -97624,7 +97959,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *191 + - *194 - *17 - *19 responses: @@ -97636,7 +97971,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 '404': *6 @@ -97673,7 +98008,7 @@ paths: type: array items: *142 examples: - default: *594 + default: *597 headers: Link: *57 '304': *35 @@ -97715,7 +98050,7 @@ paths: - docker - nuget - container - - *595 + - *598 - *19 - *17 responses: @@ -97725,10 +98060,10 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *596 - '400': *597 + default: *599 + '400': *600 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97748,16 +98083,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *199 - - *200 + - *202 + - *203 responses: '200': description: Response content: application/json: - schema: *197 + schema: *200 examples: - default: &610 + default: &613 value: id: 40201 name: octo-name @@ -97870,8 +98205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *199 - - *200 + - *202 + - *203 responses: '204': description: Response @@ -97901,8 +98236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *199 - - *200 + - *202 + - *203 - name: token description: package token schema: @@ -97934,8 +98269,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: - - *199 - - *200 + - *202 + - *203 - *19 - *17 - name: state @@ -97955,7 +98290,7 @@ paths: application/json: schema: type: array - items: *201 + items: *204 examples: default: value: @@ -98004,15 +98339,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -98048,9 +98383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 responses: '204': description: Response @@ -98080,9 +98415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 responses: '204': description: Response @@ -98140,7 +98475,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: default: value: @@ -98212,9 +98547,9 @@ paths: application/json: schema: type: array - items: *584 + items: *587 examples: - default: *598 + default: *601 headers: Link: *57 '304': *35 @@ -98327,7 +98662,7 @@ paths: type: array items: *59 examples: - default: &605 + default: &608 summary: Default response value: - id: 1296269 @@ -98643,9 +98978,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98683,9 +99018,9 @@ paths: application/json: schema: type: array - items: *452 + items: *455 examples: - default: *599 + default: *602 headers: Link: *57 '304': *35 @@ -98764,7 +99099,7 @@ paths: application/json: schema: type: array - items: &600 + items: &603 title: Social account description: Social media account type: object @@ -98781,7 +99116,7 @@ paths: - provider - url examples: - default: &601 + default: &604 value: - provider: twitter url: https://twitter.com/github @@ -98844,9 +99179,9 @@ paths: application/json: schema: type: array - items: *600 + items: *603 examples: - default: *601 + default: *604 '422': *15 '304': *35 '404': *6 @@ -98934,7 +99269,7 @@ paths: application/json: schema: type: array - items: &602 + items: &605 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98954,7 +99289,7 @@ paths: - title - created_at examples: - default: &617 + default: &620 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99021,9 +99356,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *605 examples: - default: &603 + default: &606 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99054,7 +99389,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: - - &604 + - &607 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -99066,9 +99401,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *605 examples: - default: *603 + default: *606 '404': *6 '304': *35 '403': *27 @@ -99091,7 +99426,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: - - *604 + - *607 responses: '204': description: Response @@ -99120,7 +99455,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &618 + - &621 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 @@ -99145,11 +99480,11 @@ paths: type: array items: *59 examples: - default-response: *605 + default-response: *608 application/vnd.github.v3.star+json: schema: type: array - items: &619 + items: &622 title: Starred Repository description: Starred Repository type: object @@ -99305,8 +99640,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: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response if this repository is starred by you @@ -99334,8 +99669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -99359,8 +99694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -99395,7 +99730,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 '304': *35 @@ -99432,7 +99767,7 @@ paths: application/json: schema: type: array - items: *247 + items: *250 examples: default: value: @@ -99518,10 +99853,10 @@ paths: application/json: schema: oneOf: - - *578 - - *577 + - *581 + - *580 examples: - default-response: &607 + default-response: &610 summary: Default response value: login: octocat @@ -99556,7 +99891,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &608 + response-with-git-hub-plan-information: &611 summary: Response with GitHub plan information value: login: octocat @@ -99616,7 +99951,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *606 + - *609 - *17 responses: '200': @@ -99627,7 +99962,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: example: ; rel="next" @@ -99665,11 +100000,11 @@ paths: application/json: schema: oneOf: - - *578 - - *577 + - *581 + - *580 examples: - default-response: *607 - response-with-git-hub-plan-information: *608 + default-response: *610 + response-with-git-hub-plan-information: *611 '404': *6 x-github: githubCloudOnly: false @@ -99745,7 +100080,7 @@ paths: bundle_url: type: string examples: - default: *324 + default: *327 '201': description: Response content: @@ -99784,9 +100119,9 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *596 + default: *599 '403': *27 '401': *23 x-github: @@ -100069,7 +100404,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -100100,7 +100435,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -100190,9 +100525,9 @@ paths: application/json: schema: type: array - items: *585 + items: *588 examples: - default: *609 + default: *612 headers: Link: *57 x-github: @@ -100296,7 +100631,7 @@ paths: application/json: schema: *20 examples: - default: *449 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100374,7 +100709,7 @@ paths: type: array items: *142 examples: - default: *594 + default: *597 headers: Link: *57 x-github: @@ -100413,7 +100748,7 @@ paths: - docker - nuget - container - - *595 + - *598 - *128 - *19 - *17 @@ -100424,12 +100759,12 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *596 + default: *599 '403': *27 '401': *23 - '400': *597 + '400': *600 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100449,17 +100784,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *199 - - *200 + - *202 + - *203 - *128 responses: '200': description: Response content: application/json: - schema: *197 + schema: *200 examples: - default: *610 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100480,8 +100815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *199 - - *200 + - *202 + - *203 - *128 responses: '204': @@ -100514,8 +100849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *199 - - *200 + - *202 + - *203 - *128 - name: token description: package token @@ -100548,8 +100883,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: - - *199 - - *200 + - *202 + - *203 - *128 responses: '200': @@ -100558,7 +100893,7 @@ paths: application/json: schema: type: array - items: *201 + items: *204 examples: default: value: @@ -100616,16 +100951,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 - *128 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -100660,10 +100995,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *199 - - *200 - - *128 - *202 + - *203 + - *128 + - *205 responses: '204': description: Response @@ -100695,10 +101030,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *199 - - *200 - - *128 - *202 + - *203 + - *128 + - *205 responses: '204': description: Response @@ -100745,7 +101080,7 @@ paths: application/json: schema: type: array - items: *213 + items: *216 examples: default: value: @@ -101028,7 +101363,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -101058,9 +101393,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *614 examples: - default: *612 + default: *615 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101088,9 +101423,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *616 examples: - default: *614 + default: *617 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101118,9 +101453,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *618 examples: - default: *616 + default: *619 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101148,9 +101483,9 @@ paths: application/json: schema: type: array - items: *600 + items: *603 examples: - default: *601 + default: *604 headers: Link: *57 x-github: @@ -101180,9 +101515,9 @@ paths: application/json: schema: type: array - items: *602 + items: *605 examples: - default: *617 + default: *620 headers: Link: *57 x-github: @@ -101207,7 +101542,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *128 - - *618 + - *621 - *46 - *17 - *19 @@ -101219,11 +101554,11 @@ paths: schema: anyOf: - type: array - items: *619 + items: *622 - type: array items: *59 examples: - default-response: *605 + default-response: *608 headers: Link: *57 x-github: @@ -101254,7 +101589,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -101383,7 +101718,7 @@ webhooks: type: string enum: - disabled - enterprise: &620 + enterprise: &623 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -101452,7 +101787,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &621 + installation: &624 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -101473,7 +101808,7 @@ webhooks: required: - id - node_id - organization: &622 + organization: &625 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -101546,7 +101881,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &623 + repository: &626 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -102459,10 +102794,10 @@ webhooks: type: string enum: - enabled - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -102538,11 +102873,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - rule: &624 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + rule: &627 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) @@ -102765,11 +103100,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - rule: *624 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + rule: *627 sender: *4 required: - action @@ -102957,11 +103292,11 @@ webhooks: - everyone required: - from - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - rule: *624 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + rule: *627 sender: *4 required: - action @@ -103045,7 +103380,7 @@ webhooks: type: string enum: - completed - check_run: &626 + check_run: &629 title: CheckRun description: A check performed on the code of a given code change type: object @@ -103113,7 +103448,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *341 + items: *344 repository: *115 status: type: string @@ -103158,7 +103493,7 @@ webhooks: - examples: - neutral - deployment: *625 + deployment: *628 details_url: type: string examples: @@ -103218,7 +103553,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *341 + items: *344 started_at: type: string format: date-time @@ -103256,9 +103591,9 @@ webhooks: - output - app - pull_requests - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - check_run @@ -103651,10 +103986,10 @@ webhooks: type: string enum: - created - check_run: *626 - installation: *621 - organization: *622 - repository: *623 + check_run: *629 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - check_run @@ -104050,10 +104385,10 @@ webhooks: type: string enum: - requested_action - check_run: *626 - installation: *621 - organization: *622 - repository: *623 + check_run: *629 + installation: *624 + organization: *625 + repository: *626 requested_action: description: The action requested by the user. type: object @@ -104458,10 +104793,10 @@ webhooks: type: string enum: - rerequested - check_run: *626 - installation: *621 - organization: *622 - repository: *623 + check_run: *629 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - check_run @@ -105453,10 +105788,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -106141,10 +106476,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -106823,10 +107158,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -106992,7 +107327,7 @@ webhooks: required: - login - id - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107144,20 +107479,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &627 + commit_oid: &630 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: *620 - installation: *621 - organization: *622 - ref: &628 + enterprise: *623 + installation: *624 + organization: *625 + ref: &631 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: *623 + repository: *626 sender: *4 required: - action @@ -107321,7 +107656,7 @@ webhooks: required: - login - id - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107562,12 +107897,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -107665,7 +108000,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107847,12 +108182,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -108018,7 +108353,7 @@ webhooks: required: - login - id - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -108195,12 +108530,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -108300,7 +108635,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108480,9 +108815,9 @@ webhooks: type: - string - 'null' - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -108490,7 +108825,7 @@ webhooks: type: - string - 'null' - repository: *623 + repository: *626 sender: *4 required: - action @@ -108586,7 +108921,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108733,12 +109068,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -109000,10 +109335,10 @@ webhooks: - updated_at - author_association - body - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -109084,18 +109419,18 @@ webhooks: type: - string - 'null' - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *622 - pusher_type: &629 + organization: *625 + pusher_type: &632 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &630 + ref: &633 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -109105,7 +109440,7 @@ webhooks: enum: - tag - branch - repository: *623 + repository: *626 sender: *4 required: - ref @@ -109187,10 +109522,10 @@ webhooks: type: string enum: - created - definition: *214 - enterprise: *620 - installation: *621 - organization: *622 + definition: *217 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -109275,9 +109610,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -109354,10 +109689,10 @@ webhooks: type: string enum: - updated - definition: *214 - enterprise: *620 - installation: *621 - organization: *622 + definition: *217 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -109434,19 +109769,19 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - repository: *623 - organization: *622 + enterprise: *623 + installation: *624 + repository: *626 + organization: *625 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *218 + items: *221 old_property_values: type: array description: The old custom property values for the repository. - items: *218 + items: *221 required: - action - repository @@ -109522,18 +109857,18 @@ webhooks: title: delete event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - pusher_type: *629 - ref: *630 + enterprise: *623 + installation: *624 + organization: *625 + pusher_type: *632 + ref: *633 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *623 + repository: *626 sender: *4 required: - ref @@ -109617,11 +109952,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109705,11 +110040,11 @@ webhooks: type: string enum: - auto_reopened - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109793,11 +110128,11 @@ webhooks: type: string enum: - created - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109879,11 +110214,11 @@ webhooks: type: string enum: - dismissed - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109965,11 +110300,11 @@ webhooks: type: string enum: - fixed - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -110052,11 +110387,11 @@ webhooks: type: string enum: - reintroduced - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -110138,11 +110473,11 @@ webhooks: type: string enum: - reopened - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -110219,9 +110554,9 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - key: &631 + enterprise: *623 + installation: *624 + key: &634 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -110259,8 +110594,8 @@ webhooks: - verified - created_at - read_only - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -110337,11 +110672,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - key: *631 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + key: *634 + organization: *625 + repository: *626 sender: *4 required: - action @@ -110913,12 +111248,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: &635 + workflow: &638 title: Workflow type: - object @@ -111656,13 +111991,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *414 + deployment: *417 pull_requests: type: array - items: *496 - repository: *623 - organization: *622 - installation: *621 + items: *499 + repository: *626 + organization: *625 + installation: *624 sender: *4 responses: '200': @@ -111733,7 +112068,7 @@ webhooks: type: string enum: - approved - approver: &632 + approver: &635 type: object properties: avatar_url: @@ -111776,11 +112111,11 @@ webhooks: type: string comment: type: string - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - reviewers: &633 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + reviewers: &636 type: array items: type: object @@ -111861,7 +112196,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &634 + workflow_job_run: &637 type: object properties: conclusion: @@ -112607,18 +112942,18 @@ webhooks: type: string enum: - rejected - approver: *632 + approver: *635 comment: type: string - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - reviewers: *633 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + reviewers: *636 sender: *4 since: type: string - workflow_job_run: *634 + workflow_job_run: *637 workflow_job_runs: type: array items: @@ -113335,13 +113670,13 @@ webhooks: type: string enum: - requested - enterprise: *620 + enterprise: *623 environment: type: string - installation: *621 - organization: *622 - repository: *623 - requestor: &640 + installation: *624 + organization: *625 + repository: *626 + requestor: &643 title: User type: - object @@ -115284,12 +115619,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Deployment Workflow Run type: @@ -115980,7 +116315,7 @@ webhooks: type: string enum: - answered - answer: &638 + answer: &641 type: object properties: author_association: @@ -116140,7 +116475,7 @@ webhooks: - created_at - updated_at - body - discussion: &636 + discussion: &639 title: Discussion description: A Discussion in a repository. type: object @@ -116436,7 +116771,7 @@ webhooks: - id labels: type: array - items: *459 + items: *462 required: - repository_url - category @@ -116458,10 +116793,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -116588,11 +116923,11 @@ webhooks: - from required: - category - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -116675,11 +117010,11 @@ webhooks: type: string enum: - closed - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -116761,7 +117096,7 @@ webhooks: type: string enum: - created - comment: &637 + comment: &640 type: object properties: author_association: @@ -116921,11 +117256,11 @@ webhooks: - updated_at - body - reactions - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117008,12 +117343,12 @@ webhooks: type: string enum: - deleted - comment: *637 - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + comment: *640 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117108,12 +117443,12 @@ webhooks: - from required: - body - comment: *637 - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + comment: *640 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117197,11 +117532,11 @@ webhooks: type: string enum: - created - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117283,11 +117618,11 @@ webhooks: type: string enum: - deleted - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117387,11 +117722,11 @@ webhooks: type: string required: - from - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117473,10 +117808,10 @@ webhooks: type: string enum: - labeled - discussion: *636 - enterprise: *620 - installation: *621 - label: &639 + discussion: *639 + enterprise: *623 + installation: *624 + label: &642 title: Label type: object properties: @@ -117509,8 +117844,8 @@ webhooks: - color - default - description - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117593,11 +117928,11 @@ webhooks: type: string enum: - locked - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117679,11 +118014,11 @@ webhooks: type: string enum: - pinned - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117765,11 +118100,11 @@ webhooks: type: string enum: - reopened - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117854,16 +118189,16 @@ webhooks: changes: type: object properties: - new_discussion: *636 - new_repository: *623 + new_discussion: *639 + new_repository: *626 required: - new_discussion - new_repository - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117946,10 +118281,10 @@ webhooks: type: string enum: - unanswered - discussion: *636 - old_answer: *638 - organization: *622 - repository: *623 + discussion: *639 + old_answer: *641 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118031,12 +118366,12 @@ webhooks: type: string enum: - unlabeled - discussion: *636 - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118119,11 +118454,11 @@ webhooks: type: string enum: - unlocked - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118205,11 +118540,11 @@ webhooks: type: string enum: - unpinned - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118282,7 +118617,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *620 + enterprise: *623 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -118960,9 +119295,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - forkee @@ -119108,9 +119443,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pages: description: The pages that were updated. type: array @@ -119148,7 +119483,7 @@ webhooks: - action - sha - html_url - repository: *623 + repository: *626 sender: *4 required: - pages @@ -119224,10 +119559,10 @@ webhooks: type: string enum: - created - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: &641 + organization: *625 + repositories: &644 description: An array of repository objects that the installation can access. type: array @@ -119253,8 +119588,8 @@ webhooks: - name - full_name - private - repository: *623 - requester: *640 + repository: *626 + requester: *643 sender: *4 required: - action @@ -119329,11 +119664,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -119410,11 +119745,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -119491,10 +119826,10 @@ webhooks: type: string enum: - added - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories_added: &642 + organization: *625 + repositories_added: &645 description: An array of repository objects, which were added to the installation. type: array @@ -119540,15 +119875,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *623 - repository_selection: &643 + repository: *626 + repository_selection: &646 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *640 + requester: *643 sender: *4 required: - action @@ -119627,10 +119962,10 @@ webhooks: type: string enum: - removed - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories_added: *642 + organization: *625 + repositories_added: *645 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -119657,9 +119992,9 @@ webhooks: - name - full_name - private - repository: *623 - repository_selection: *643 - requester: *640 + repository: *626 + repository_selection: *646 + requester: *643 sender: *4 required: - action @@ -119738,11 +120073,11 @@ webhooks: type: string enum: - suspend - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -119924,10 +120259,10 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 target_type: type: string @@ -120006,11 +120341,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -120258,8 +120593,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121106,6 +121441,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -121449,8 +121785,8 @@ webhooks: - state - locked - assignee - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -121530,7 +121866,7 @@ webhooks: type: string enum: - deleted - comment: &644 + comment: &647 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -121697,8 +122033,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -122541,6 +122877,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -122886,8 +123223,8 @@ webhooks: - state - locked - assignee - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -122967,7 +123304,7 @@ webhooks: type: string enum: - edited - changes: &669 + changes: &672 description: The changes to the comment. type: object properties: @@ -122979,9 +123316,9 @@ webhooks: type: string required: - from - comment: *644 - enterprise: *620 - installation: *621 + comment: *647 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -123827,6 +124164,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -124170,8 +124508,8 @@ webhooks: - state - locked - assignee - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -124253,10 +124591,10 @@ webhooks: type: string enum: - assigned - assignee: *640 - enterprise: *620 - installation: *621 - issue: &647 + assignee: *643 + enterprise: *623 + installation: *624 + issue: &650 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125098,6 +125436,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -125200,8 +125539,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -125281,8 +125620,8 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -126129,6 +126468,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -126374,8 +126714,8 @@ webhooks: required: - state - closed_at - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -126454,8 +126794,8 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127291,6 +127631,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -127392,8 +127733,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -127472,8 +127813,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128334,6 +128675,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -128414,7 +128756,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &645 + milestone: &648 title: Milestone description: A collection of related issues and pull requests. type: object @@ -128557,8 +128899,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -128657,8 +128999,8 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129497,6 +129839,7 @@ webhooks: timeline_url: type: string format: uri + type: *181 title: description: Title of the issue type: string @@ -129602,9 +129945,9 @@ webhooks: - active_lock_reason - body - reactions - label: *639 - organization: *622 - repository: *623 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -129684,8 +130027,8 @@ webhooks: type: string enum: - labeled - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130523,6 +130866,7 @@ webhooks: timeline_url: type: string format: uri + type: *181 title: description: Title of the issue type: string @@ -130628,9 +130972,9 @@ webhooks: - active_lock_reason - body - reactions - label: *639 - organization: *622 - repository: *623 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -130710,8 +131054,8 @@ webhooks: type: string enum: - locked - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131574,6 +131918,7 @@ webhooks: timeline_url: type: string format: uri + type: *181 title: description: Title of the issue type: string @@ -131656,8 +132001,8 @@ webhooks: format: uri user_view_type: type: string - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -131736,8 +132081,8 @@ webhooks: type: string enum: - milestoned - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132597,6 +132942,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -132676,9 +133022,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *645 - organization: *622 - repository: *623 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -134178,8 +134524,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135021,6 +135367,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -135122,8 +135469,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -135203,9 +135550,9 @@ webhooks: type: string enum: - pinned - enterprise: *620 - installation: *621 - issue: &646 + enterprise: *623 + installation: *624 + issue: &649 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136041,6 +136388,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -136142,8 +136490,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -136222,8 +136570,8 @@ webhooks: type: string enum: - reopened - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137167,8 +137515,9 @@ webhooks: format: uri user_view_type: type: string - organization: *622 - repository: *623 + type: *181 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138087,6 +138436,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -138668,11 +139018,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *620 - installation: *621 - issue: *646 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *649 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138753,7 +139103,7 @@ webhooks: type: string enum: - unassigned - assignee: &672 + assignee: &675 title: User type: - object @@ -138825,11 +139175,11 @@ webhooks: required: - login - id - enterprise: *620 - installation: *621 - issue: *647 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *650 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138908,12 +139258,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *620 - installation: *621 - issue: *647 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *650 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138993,8 +139343,8 @@ webhooks: type: string enum: - unlocked - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139858,6 +140208,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -139937,8 +140288,8 @@ webhooks: format: uri user_view_type: type: string - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140018,11 +140369,11 @@ webhooks: type: string enum: - unpinned - enterprise: *620 - installation: *621 - issue: *646 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *649 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140101,11 +140452,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140183,11 +140534,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140297,11 +140648,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140383,9 +140734,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: &648 + enterprise: *623 + installation: *624 + marketplace_purchase: &651 title: Marketplace Purchase type: object required: @@ -140473,8 +140824,8 @@ webhooks: type: integer unit_count: type: integer - organization: *622 - previous_marketplace_purchase: &649 + organization: *625 + previous_marketplace_purchase: &652 title: Marketplace Purchase type: object properties: @@ -140558,7 +140909,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *623 + repository: *626 sender: *4 required: - action @@ -140638,10 +140989,10 @@ webhooks: - changed effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: *648 - organization: *622 + enterprise: *623 + installation: *624 + marketplace_purchase: *651 + organization: *625 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140729,7 +141080,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *623 + repository: *626 sender: *4 required: - action @@ -140811,10 +141162,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: *648 - organization: *622 + enterprise: *623 + installation: *624 + marketplace_purchase: *651 + organization: *625 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140900,7 +141251,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *623 + repository: *626 sender: *4 required: - action @@ -140981,8 +141332,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 marketplace_purchase: title: Marketplace Purchase type: object @@ -141068,9 +141419,9 @@ webhooks: type: integer unit_count: type: integer - organization: *622 - previous_marketplace_purchase: *649 - repository: *623 + organization: *625 + previous_marketplace_purchase: *652 + repository: *626 sender: *4 required: - action @@ -141150,12 +141501,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: *648 - organization: *622 - previous_marketplace_purchase: *649 - repository: *623 + enterprise: *623 + installation: *624 + marketplace_purchase: *651 + organization: *625 + previous_marketplace_purchase: *652 + repository: *626 sender: *4 required: - action @@ -141257,11 +141608,11 @@ webhooks: type: string required: - to - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 sender: *4 required: - action @@ -141363,11 +141714,11 @@ webhooks: type: - string - 'null' - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 sender: *4 required: - action @@ -141446,11 +141797,11 @@ webhooks: type: string enum: - removed - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 sender: *4 required: - action @@ -141528,11 +141879,11 @@ webhooks: type: string enum: - added - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141610,7 +141961,7 @@ webhooks: required: - login - id - team: &650 + team: &653 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -141803,11 +142154,11 @@ webhooks: type: string enum: - removed - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141886,7 +142237,7 @@ webhooks: required: - login - id - team: *650 + team: *653 required: - action - scope @@ -141968,8 +142319,8 @@ webhooks: type: string enum: - checks_requested - installation: *621 - merge_group: &651 + installation: *624 + merge_group: &654 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -141988,15 +142339,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *345 + head_commit: *348 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142082,10 +142433,10 @@ webhooks: - merged - invalidated - dequeued - installation: *621 - merge_group: *651 - organization: *622 - repository: *623 + installation: *624 + merge_group: *654 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142158,7 +142509,7 @@ webhooks: type: string enum: - deleted - enterprise: *620 + enterprise: *623 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -142266,12 +142617,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *621 - organization: *622 + installation: *624 + organization: *625 repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -142351,11 +142702,11 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 - milestone: *645 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142434,9 +142785,9 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - milestone: &652 + enterprise: *623 + installation: *624 + milestone: &655 title: Milestone description: A collection of related issues and pull requests. type: object @@ -142578,8 +142929,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142658,11 +143009,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - milestone: *645 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142772,11 +143123,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - milestone: *645 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142856,11 +143207,11 @@ webhooks: type: string enum: - opened - enterprise: *620 - installation: *621 - milestone: *652 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *655 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142939,11 +143290,11 @@ webhooks: type: string enum: - blocked - blocked_user: *640 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + blocked_user: *643 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143022,11 +143373,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *640 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + blocked_user: *643 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143105,9 +143456,9 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - membership: &653 + enterprise: *623 + installation: *624 + membership: &656 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -143201,8 +143552,8 @@ webhooks: - role - organization_url - user - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143280,11 +143631,11 @@ webhooks: type: string enum: - member_added - enterprise: *620 - installation: *621 - membership: *653 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + membership: *656 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143363,8 +143714,8 @@ webhooks: type: string enum: - member_invited - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -143486,10 +143837,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 - user: *640 + user: *643 required: - action - invitation @@ -143567,11 +143918,11 @@ webhooks: type: string enum: - member_removed - enterprise: *620 - installation: *621 - membership: *653 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + membership: *656 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143658,11 +144009,11 @@ webhooks: properties: from: type: string - enterprise: *620 - installation: *621 - membership: *653 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + membership: *656 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143738,9 +144089,9 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 package: description: Information about the package. type: object @@ -144263,7 +144614,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &654 + items: &657 title: Ruby Gems metadata type: object properties: @@ -144360,7 +144711,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -144436,9 +144787,9 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 package: description: Information about the package. type: object @@ -144800,7 +145151,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *654 + items: *657 source_url: type: string format: uri @@ -144871,7 +145222,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -145052,12 +145403,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *620 + enterprise: *623 id: type: integer - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - id @@ -145137,7 +145488,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &655 + personal_access_token_request: &658 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -145287,10 +145638,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *620 - organization: *622 + enterprise: *623 + organization: *625 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145369,11 +145720,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *655 - enterprise: *620 - organization: *622 + personal_access_token_request: *658 + enterprise: *623 + organization: *625 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145451,11 +145802,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *655 - enterprise: *620 - organization: *622 + personal_access_token_request: *658 + enterprise: *623 + organization: *625 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145532,11 +145883,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *655 - organization: *622 - enterprise: *620 + personal_access_token_request: *658 + organization: *625 + enterprise: *623 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145640,7 +145991,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *656 + last_response: *659 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -145672,8 +146023,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 zen: description: Random string of GitHub zen. @@ -145918,10 +146269,10 @@ webhooks: - from required: - note - enterprise: *620 - installation: *621 - organization: *622 - project_card: &657 + enterprise: *623 + installation: *624 + organization: *625 + project_card: &660 title: Project Card type: object properties: @@ -146044,7 +146395,7 @@ webhooks: - creator - created_at - updated_at - repository: *623 + repository: *626 sender: *4 required: - action @@ -146125,11 +146476,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - project_card: *657 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_card: *660 + repository: *626 sender: *4 required: - action @@ -146209,9 +146560,9 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 project_card: title: Project Card type: object @@ -146341,7 +146692,7 @@ webhooks: repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -146435,11 +146786,11 @@ webhooks: - from required: - note - enterprise: *620 - installation: *621 - organization: *622 - project_card: *657 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_card: *660 + repository: *626 sender: *4 required: - action @@ -146533,9 +146884,9 @@ webhooks: - from required: - column_id - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 project_card: allOf: - title: Project Card @@ -146732,7 +147083,7 @@ webhooks: type: string required: - after_id - repository: *623 + repository: *626 sender: *4 required: - action @@ -146812,10 +147163,10 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 - organization: *622 - project: &659 + enterprise: *623 + installation: *624 + organization: *625 + project: &662 title: Project type: object properties: @@ -146942,7 +147293,7 @@ webhooks: - creator - created_at - updated_at - repository: *623 + repository: *626 sender: *4 required: - action @@ -147022,10 +147373,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - project_column: &658 + enterprise: *623 + installation: *624 + organization: *625 + project_column: &661 title: Project Column type: object properties: @@ -147065,7 +147416,7 @@ webhooks: - name - created_at - updated_at - repository: *623 + repository: *626 sender: *4 required: - action @@ -147144,14 +147495,14 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - project_column: *658 + enterprise: *623 + installation: *624 + organization: *625 + project_column: *661 repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -147240,11 +147591,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - project_column: *658 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_column: *661 + repository: *626 sender: *4 required: - action @@ -147324,11 +147675,11 @@ webhooks: type: string enum: - moved - enterprise: *620 - installation: *621 - organization: *622 - project_column: *658 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_column: *661 + repository: *626 sender: *4 required: - action @@ -147408,11 +147759,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - project: *659 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 + repository: *626 sender: *4 required: - action @@ -147492,14 +147843,14 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - project: *659 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -147600,11 +147951,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - project: *659 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 + repository: *626 sender: *4 required: - action @@ -147683,11 +148034,11 @@ webhooks: type: string enum: - reopened - enterprise: *620 - installation: *621 - organization: *622 - project: *659 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 + repository: *626 sender: *4 required: - action @@ -147768,9 +148119,9 @@ webhooks: type: string enum: - closed - installation: *621 - organization: *622 - projects_v2: &660 + installation: *624 + organization: *625 + projects_v2: &663 title: Projects v2 Project description: A projects v2 project type: object @@ -147918,9 +148269,9 @@ webhooks: type: string enum: - created - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -148001,9 +148352,9 @@ webhooks: type: string enum: - deleted - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -148124,9 +148475,9 @@ webhooks: type: string to: type: string - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -148209,7 +148560,7 @@ webhooks: type: string enum: - archived - changes: &664 + changes: &667 type: object properties: archived_at: @@ -148225,9 +148576,9 @@ webhooks: - string - 'null' format: date-time - installation: *621 - organization: *622 - projects_v2_item: &661 + installation: *624 + organization: *625 + projects_v2_item: &664 title: Projects v2 Item description: An item belonging to a project type: object @@ -148366,9 +148717,9 @@ webhooks: - 'null' to: type: string - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148450,9 +148801,9 @@ webhooks: type: string enum: - created - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148533,9 +148884,9 @@ webhooks: type: string enum: - deleted - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148640,7 +148991,7 @@ webhooks: oneOf: - type: string - type: integer - - &662 + - &665 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -148660,7 +149011,7 @@ webhooks: required: - id - name - - &663 + - &666 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -148689,8 +149040,8 @@ webhooks: oneOf: - type: string - type: integer - - *662 - - *663 + - *665 + - *666 type: - 'null' - string @@ -148713,9 +149064,9 @@ webhooks: - 'null' required: - body - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148812,9 +149163,9 @@ webhooks: type: - string - 'null' - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148897,10 +149248,10 @@ webhooks: type: string enum: - restored - changes: *664 - installation: *621 - organization: *622 - projects_v2_item: *661 + changes: *667 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148982,9 +149333,9 @@ webhooks: type: string enum: - reopened - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -149065,9 +149416,9 @@ webhooks: type: string enum: - created - installation: *621 - organization: *622 - projects_v2_status_update: &665 + installation: *624 + organization: *625 + projects_v2_status_update: &668 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -149202,9 +149553,9 @@ webhooks: type: string enum: - deleted - installation: *621 - organization: *622 - projects_v2_status_update: *665 + installation: *624 + organization: *625 + projects_v2_status_update: *668 sender: *4 required: - action @@ -149350,9 +149701,9 @@ webhooks: - string - 'null' format: date - installation: *621 - organization: *622 - projects_v2_status_update: *665 + installation: *624 + organization: *625 + projects_v2_status_update: *668 sender: *4 required: - action @@ -149423,10 +149774,10 @@ webhooks: title: public event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - repository @@ -149503,13 +149854,13 @@ webhooks: type: string enum: - assigned - assignee: *640 - enterprise: *620 - installation: *621 - number: &666 + assignee: *643 + enterprise: *623 + installation: *624 + number: &669 description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -151858,7 +152209,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -151940,11 +152291,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -154286,7 +154637,7 @@ webhooks: - draft reason: type: string - repository: *623 + repository: *626 sender: *4 required: - action @@ -154368,11 +154719,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -156714,7 +157065,7 @@ webhooks: - draft reason: type: string - repository: *623 + repository: *626 sender: *4 required: - action @@ -156796,13 +157147,13 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: &667 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: &670 allOf: - - *496 + - *499 - type: object properties: allow_auto_merge: @@ -156864,7 +157215,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *623 + repository: *626 sender: *4 required: - action @@ -156945,12 +157296,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -157030,11 +157381,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *620 - milestone: *394 - number: *666 - organization: *622 - pull_request: &668 + enterprise: *623 + milestone: *397 + number: *669 + organization: *625 + pull_request: &671 title: Pull Request type: object properties: @@ -159361,7 +159712,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -159440,11 +159791,11 @@ webhooks: type: string enum: - dequeued - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -161790,7 +162141,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *623 + repository: *626 sender: *4 required: - action @@ -161914,12 +162265,12 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -161999,11 +162350,11 @@ webhooks: type: string enum: - enqueued - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -164334,7 +164685,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -164414,11 +164765,11 @@ webhooks: type: string enum: - labeled - enterprise: *620 - installation: *621 - label: *639 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + label: *642 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -166766,7 +167117,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -166847,10 +167198,10 @@ webhooks: type: string enum: - locked - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -169196,7 +169547,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -169276,12 +169627,12 @@ webhooks: type: string enum: - milestoned - enterprise: *620 - milestone: *394 - number: *666 - organization: *622 - pull_request: *668 - repository: *623 + enterprise: *623 + milestone: *397 + number: *669 + organization: *625 + pull_request: *671 + repository: *626 sender: *4 required: - action @@ -169360,12 +169711,12 @@ webhooks: type: string enum: - opened - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -169446,12 +169797,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -169531,12 +169882,12 @@ webhooks: type: string enum: - reopened - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -169911,9 +170262,9 @@ webhooks: - start_side - side - reactions - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: type: object properties: @@ -172143,7 +172494,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *623 + repository: *626 sender: *4 required: - action @@ -172223,7 +172574,7 @@ webhooks: type: string enum: - deleted - comment: &670 + comment: &673 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -172516,9 +172867,9 @@ webhooks: - start_side - side - reactions - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: type: object properties: @@ -174736,7 +175087,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *623 + repository: *626 sender: *4 required: - action @@ -174816,11 +175167,11 @@ webhooks: type: string enum: - edited - changes: *669 - comment: *670 - enterprise: *620 - installation: *621 - organization: *622 + changes: *672 + comment: *673 + enterprise: *623 + installation: *624 + organization: *625 pull_request: type: object properties: @@ -177041,7 +177392,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *623 + repository: *626 sender: *4 required: - action @@ -177122,9 +177473,9 @@ webhooks: type: string enum: - dismissed - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -179357,7 +179708,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 + repository: *626 review: description: The review that was affected. type: object @@ -179603,9 +179954,9 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -181719,8 +182070,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 - review: &671 + repository: *626 + review: &674 description: The review that was affected. type: object properties: @@ -181953,12 +182304,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -184305,7 +184656,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_reviewer: title: User type: @@ -184391,12 +184742,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -186750,7 +187101,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_team: title: Team description: Groups of organization members that gives permissions @@ -186945,12 +187296,12 @@ webhooks: type: string enum: - review_requested - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -189299,7 +189650,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_reviewer: title: User type: @@ -189386,12 +189737,12 @@ webhooks: type: string enum: - review_requested - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -191731,7 +192082,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_team: title: Team description: Groups of organization members that gives permissions @@ -191915,9 +192266,9 @@ webhooks: type: string enum: - submitted - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -194153,8 +194504,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 - review: *671 + repository: *626 + review: *674 sender: *4 required: - action @@ -194234,9 +194585,9 @@ webhooks: type: string enum: - resolved - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -196367,7 +196718,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 + repository: *626 sender: *4 thread: type: object @@ -196759,9 +197110,9 @@ webhooks: type: string enum: - unresolved - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -198875,7 +199226,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 + repository: *626 sender: *4 thread: type: object @@ -199269,10 +199620,10 @@ webhooks: type: string before: type: string - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -201607,7 +201958,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -201689,11 +202040,11 @@ webhooks: type: string enum: - unassigned - assignee: *672 - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + assignee: *675 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -204043,7 +204394,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -204122,11 +204473,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *620 - installation: *621 - label: *639 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + label: *642 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -206465,7 +206816,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -206546,10 +206897,10 @@ webhooks: type: string enum: - unlocked - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -208878,7 +209229,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -209081,7 +209432,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *620 + enterprise: *623 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -209176,8 +209527,8 @@ webhooks: - url - author - committer - installation: *621 - organization: *622 + installation: *624 + organization: *625 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -209765,9 +210116,9 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 registry_package: type: object properties: @@ -210244,7 +210595,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *654 + items: *657 summary: type: string tag_name: @@ -210300,7 +210651,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -210378,9 +210729,9 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 registry_package: type: object properties: @@ -210692,7 +211043,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *654 + items: *657 summary: type: string tag_name: @@ -210742,7 +211093,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -210819,10 +211170,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - release: &673 + enterprise: *623 + installation: *624 + organization: *625 + release: &676 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -211138,7 +211489,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *623 + repository: *626 sender: *4 required: - action @@ -211215,11 +211566,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - release: *673 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *676 + repository: *626 sender: *4 required: - action @@ -211336,11 +211687,11 @@ webhooks: type: boolean required: - to - enterprise: *620 - installation: *621 - organization: *622 - release: *673 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *676 + repository: *626 sender: *4 required: - action @@ -211418,9 +211769,9 @@ webhooks: type: string enum: - prereleased - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -211741,7 +212092,7 @@ webhooks: - string - 'null' format: uri - repository: *623 + repository: *626 sender: *4 required: - action @@ -211817,10 +212168,10 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 - release: &674 + enterprise: *623 + installation: *624 + organization: *625 + release: &677 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -212138,7 +212489,7 @@ webhooks: - string - 'null' format: uri - repository: *623 + repository: *626 sender: *4 required: - action @@ -212214,11 +212565,11 @@ webhooks: type: string enum: - released - enterprise: *620 - installation: *621 - organization: *622 - release: *673 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *676 + repository: *626 sender: *4 required: - action @@ -212294,11 +212645,11 @@ webhooks: type: string enum: - unpublished - enterprise: *620 - installation: *621 - organization: *622 - release: *674 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *677 + repository: *626 sender: *4 required: - action @@ -212374,11 +212725,11 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_advisory: *552 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_advisory: *555 sender: *4 required: - action @@ -212454,11 +212805,11 @@ webhooks: type: string enum: - reported - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_advisory: *552 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_advisory: *555 sender: *4 required: - action @@ -212534,10 +212885,10 @@ webhooks: type: string enum: - archived - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212614,10 +212965,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212695,10 +213046,10 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212783,10 +213134,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212901,10 +213252,10 @@ webhooks: - 'null' items: type: string - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212976,10 +213327,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 status: type: string @@ -213060,10 +213411,10 @@ webhooks: type: string enum: - privatized - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213140,10 +213491,10 @@ webhooks: type: string enum: - publicized - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213237,10 +213588,10 @@ webhooks: - name required: - repository - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213320,11 +213671,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_ruleset: *226 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_ruleset: *229 sender: *4 required: - action @@ -213402,11 +213753,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_ruleset: *226 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_ruleset: *229 sender: *4 required: - action @@ -213484,11 +213835,11 @@ webhooks: type: string enum: - edited - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_ruleset: *226 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_ruleset: *229 changes: type: object properties: @@ -213507,16 +213858,16 @@ webhooks: properties: added: type: array - items: *220 + items: *223 deleted: type: array - items: *220 + items: *223 updated: type: array items: type: object properties: - condition: *220 + condition: *223 changes: type: object properties: @@ -213549,16 +213900,16 @@ webhooks: properties: added: type: array - items: *225 + items: *228 deleted: type: array - items: *225 + items: *228 updated: type: array items: type: object properties: - rule: *225 + rule: *228 changes: type: object properties: @@ -213795,10 +214146,10 @@ webhooks: - from required: - owner - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213876,10 +214227,10 @@ webhooks: type: string enum: - unarchived - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213957,7 +214308,7 @@ webhooks: type: string enum: - create - alert: &675 + alert: &678 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -214081,10 +214432,10 @@ webhooks: type: string enum: - open - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214294,10 +214645,10 @@ webhooks: type: string enum: - dismissed - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214375,11 +214726,11 @@ webhooks: type: string enum: - reopen - alert: *675 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *678 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214581,10 +214932,10 @@ webhooks: enum: - fixed - open - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214662,7 +215013,7 @@ webhooks: type: string enum: - created - alert: &676 + alert: &679 type: object properties: number: *52 @@ -214772,10 +215123,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214856,11 +215207,11 @@ webhooks: type: string enum: - created - alert: *676 - installation: *621 - location: *677 - organization: *622 - repository: *623 + alert: *679 + installation: *624 + location: *680 + organization: *625 + repository: *626 sender: *4 required: - location @@ -215098,11 +215449,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215180,11 +215531,11 @@ webhooks: type: string enum: - reopened - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215262,11 +215613,11 @@ webhooks: type: string enum: - resolved - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215344,11 +215695,11 @@ webhooks: type: string enum: - validated - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215478,10 +215829,10 @@ webhooks: - organization - enterprise - - repository: *623 - enterprise: *620 - installation: *621 - organization: *622 + repository: *626 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -215559,11 +215910,11 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - security_advisory: &678 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + security_advisory: &681 description: The details of the security advisory, including summary, description, and severity. type: object @@ -215749,11 +216100,11 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - security_advisory: *678 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + security_advisory: *681 sender: *4 required: - action @@ -215826,10 +216177,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -216015,11 +216366,11 @@ webhooks: from: type: object properties: - security_and_analysis: *219 - enterprise: *620 - installation: *621 - organization: *622 - repository: *273 + security_and_analysis: *222 + enterprise: *623 + installation: *624 + organization: *625 + repository: *276 sender: *4 required: - changes @@ -216097,12 +216448,12 @@ webhooks: type: string enum: - cancelled - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: &679 + sponsorship: &682 type: object properties: created_at: @@ -216407,12 +216758,12 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - sponsorship @@ -216500,12 +216851,12 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - changes @@ -216582,17 +216933,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &680 + effective_date: &683 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: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - sponsorship @@ -216666,7 +217017,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &681 + changes: &684 type: object properties: tier: @@ -216710,13 +217061,13 @@ webhooks: - from required: - tier - effective_date: *680 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + effective_date: *683 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - changes @@ -216793,13 +217144,13 @@ webhooks: type: string enum: - tier_changed - changes: *681 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + changes: *684 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - changes @@ -216873,10 +217224,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -216960,10 +217311,10 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -217397,15 +217748,15 @@ webhooks: type: - string - 'null' - enterprise: *620 + enterprise: *623 id: description: The unique identifier of the status. type: integer - installation: *621 + installation: *624 name: type: string - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 sha: description: The Commit SHA. @@ -217521,9 +217872,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217613,9 +217964,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217705,9 +218056,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217797,9 +218148,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217876,12 +218227,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - team: &682 + team: &685 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -218074,9 +218425,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -218546,7 +218897,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -218622,9 +218973,9 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -219094,7 +219445,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -219171,9 +219522,9 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -219643,7 +219994,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -219787,9 +220138,9 @@ webhooks: - from required: - permissions - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -220259,7 +220610,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - changes @@ -220337,9 +220688,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -220809,7 +221160,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -220885,10 +221236,10 @@ webhooks: type: string enum: - started - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -220961,17 +221312,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *620 + enterprise: *623 inputs: type: - object - 'null' additionalProperties: true - installation: *621 - organization: *622 + installation: *624 + organization: *625 ref: type: string - repository: *623 + repository: *626 sender: *4 workflow: type: string @@ -221053,10 +221404,10 @@ webhooks: type: string enum: - completed - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: allOf: @@ -221312,7 +221663,7 @@ webhooks: type: string required: - conclusion - deployment: *414 + deployment: *417 required: - action - repository @@ -221391,10 +221742,10 @@ webhooks: type: string enum: - in_progress - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: allOf: @@ -221676,7 +222027,7 @@ webhooks: required: - status - steps - deployment: *414 + deployment: *417 required: - action - repository @@ -221755,10 +222106,10 @@ webhooks: type: string enum: - queued - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: type: object @@ -221904,7 +222255,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *414 + deployment: *417 required: - action - repository @@ -221983,10 +222334,10 @@ webhooks: type: string enum: - waiting - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: type: object @@ -222133,7 +222484,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *414 + deployment: *417 required: - action - repository @@ -222213,12 +222564,12 @@ webhooks: type: string enum: - completed - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Workflow Run type: object @@ -223237,12 +223588,12 @@ webhooks: type: string enum: - in_progress - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Workflow Run type: object @@ -224246,12 +224597,12 @@ webhooks: type: string enum: - requested - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json index e1275ea6a7..e6c3d083bd 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.json @@ -5485,7 +5485,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -6570,7 +6570,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7434,7 +7434,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7863,7 +7863,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -10138,7 +10138,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -11261,7 +11261,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12248,7 +12248,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12938,7 +12938,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -27264,6 +27264,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -45356,6 +45423,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -52072,6 +52206,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -94842,6 +95043,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -101819,7 +102087,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -102919,7 +103187,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -104958,25 +105226,1001 @@ } }, "x-github": { - "triggersNotification": true, + "triggersNotification": true, + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/invitations/{invitation_id}/teams": { + "get": { + "summary": "List organization invitation teams", + "description": "List all teams associated with an invitation. In order to see invitations in an organization, the authenticated user must be an organization owner.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-invitation-teams", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/members#list-organization-invitation-teams" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "invitation_id", + "description": "The unique identifier of the invitation.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VGVhbTE=" + ] + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1" + ] + }, + "members_url": { + "type": "string", + "examples": [ + "https://api.github.com/organizations/1/team/1/members{/member}" + ] + }, + "name": { + "description": "Name of the team", + "type": "string", + "examples": [ + "Justice League" + ] + }, + "description": { + "description": "Description of the team", + "type": [ + "string", + "null" + ], + "examples": [ + "A great team." + ] + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "examples": [ + "admin" + ] + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "examples": [ + "closed" + ] + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "examples": [ + "notifications_enabled" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "repositories_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1/repos" + ] + }, + "slug": { + "type": "string", + "examples": [ + "justice-league" + ] + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "type": "string", + "examples": [ + "uid=example,ou=users,dc=github,dc=com" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 1, + "node_id": "MDQ6VGVhbTE=", + "url": "https://api.github.com/teams/1", + "html_url": "https://github.com/orgs/github/teams/justice-league", + "name": "Justice League", + "slug": "justice-league", + "description": "A great team.", + "privacy": "closed", + "notification_setting": "notifications_enabled", + "permission": "admin", + "members_url": "https://api.github.com/teams/1/members{/member}", + "repositories_url": "https://api.github.com/teams/1/repos", + "parent": null + } + ] + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } - } - }, - "/orgs/{org}/invitations/{invitation_id}/teams": { - "get": { - "summary": "List organization invitation teams", - "description": "List all teams associated with an invitation. In order to see invitations in an organization, the authenticated user must be an organization owner.", + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", "tags": [ "orgs" ], - "operationId": "orgs/list-invitation-teams", + "operationId": "orgs/delete-issue-type", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/rest/orgs/members#list-organization-invitation-teams" + "url": "https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization" }, "parameters": [ { @@ -104989,281 +106233,47 @@ } }, { - "name": "invitation_id", - "description": "The unique identifier of the invitation.", + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", "in": "path", "required": true, "schema": { "type": "integer" } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "name": "page", - "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } } ], "responses": { - "200": { - "description": "Response", + "204": { + "description": "Response" + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", "content": { "application/json": { "schema": { - "type": "array", - "items": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "slug": { - "type": "string" - }, - "description": { - "type": [ - "string", - "null" - ] - }, - "privacy": { - "type": "string" - }, - "notification_setting": { - "type": "string" - }, - "permission": { - "type": "string" - }, - "permissions": { - "type": "object", - "properties": { - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - }, - "admin": { - "type": "boolean" - } - }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] - }, - "url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "anyOf": [ - { - "type": "null" - }, - { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "examples": [ - 1 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDQ6VGVhbTE=" - ] - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1" - ] - }, - "members_url": { - "type": "string", - "examples": [ - "https://api.github.com/organizations/1/team/1/members{/member}" - ] - }, - "name": { - "description": "Name of the team", - "type": "string", - "examples": [ - "Justice League" - ] - }, - "description": { - "description": "Description of the team", - "type": [ - "string", - "null" - ], - "examples": [ - "A great team." - ] - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "examples": [ - "admin" - ] - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "examples": [ - "closed" - ] - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "examples": [ - "notifications_enabled" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "repositories_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1/repos" - ] - }, - "slug": { - "type": "string", - "examples": [ - "justice-league" - ] - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "type": "string", - "examples": [ - "uid=example,ou=users,dc=github,dc=com" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ] - } - ] - } + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "parent" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 1, - "node_id": "MDQ6VGVhbTE=", - "url": "https://api.github.com/teams/1", - "html_url": "https://github.com/orgs/github/teams/justice-league", - "name": "Justice League", - "slug": "justice-league", - "description": "A great team.", - "privacy": "closed", - "notification_setting": "notifications_enabled", - "permission": "admin", - "members_url": "https://api.github.com/teams/1/members{/member}", - "repositories_url": "https://api.github.com/teams/1/repos", - "parent": null + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" } - ] + } } } } - }, - "headers": { - "Link": { - "example": "; rel=\"next\", ; rel=\"last\"", - "schema": { - "type": "string" - } - } } }, "404": { @@ -105297,7 +106307,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -105365,6 +106375,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -106671,6 +107690,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -133908,7 +134994,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -134597,6 +135683,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -314058,6 +315159,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -331716,7 +332884,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -335772,6 +336940,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -337105,6 +338282,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -339010,6 +340254,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -340280,6 +341534,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -347704,6 +349025,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -352466,6 +353854,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -357025,6 +358480,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -358914,6 +360436,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -360182,6 +361714,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -363350,6 +364949,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -366315,6 +367981,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -385993,6 +387726,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -389055,6 +390855,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -392085,6 +393952,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -395220,6 +397154,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -409055,6 +411056,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -526743,6 +528811,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "performed_via_github_app": { "anyOf": [ { @@ -571931,7 +574066,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -575817,6 +577952,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -610112,6 +612314,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -613877,6 +616146,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -617644,6 +619980,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -622162,7 +624565,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -628733,6 +631136,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -632500,6 +634970,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -802862,7 +805399,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -805922,7 +808459,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -808887,7 +811424,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -811852,7 +814389,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -814951,7 +817488,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -818057,7 +820594,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -823158,7 +825695,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -827560,6 +830097,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -831796,6 +834400,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -836056,6 +838727,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -839753,6 +842491,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -843003,6 +845808,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -846458,6 +849330,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -849720,6 +852659,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -853159,6 +856165,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -856445,6 +859518,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -859759,6 +862899,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -863001,6 +866208,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -868313,6 +871587,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -871551,6 +874892,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -874925,6 +878333,73 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -877920,6 +881395,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -879929,6 +883471,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -883275,6 +886884,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -886520,6 +890196,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -889832,6 +893575,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -893047,6 +896857,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -1303713,6 +1307590,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1307373,6 +1311317,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1311987,6 +1315998,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1315647,6 +1319725,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1320261,6 +1324406,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1323921,6 +1328133,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1328535,6 +1332814,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1332195,6 +1336541,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", diff --git a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml index c2f16b14f2..b0df5e8a44 100644 --- a/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml +++ b/descriptions-next/api.github.com/dereferenced/api.github.com.deref.yaml @@ -897,7 +897,7 @@ paths: - subscriptions_url - type - url - type: &238 + type: &241 type: string description: The type of credit the user is receiving. enum: @@ -1063,7 +1063,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/global-advisories#get-a-global-security-advisory parameters: - - &554 + - &557 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -2364,7 +2364,7 @@ paths: - write dependabot_secrets: type: string - description: The leve of permission to grant the access + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -8951,7 +8951,7 @@ paths: - direct - transitive - - security_advisory: &406 + security_advisory: &409 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -9219,7 +9219,7 @@ paths: and was considered fixed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - auto_dismissed_at: &407 + auto_dismissed_at: &410 type: - string - 'null' @@ -9593,7 +9593,7 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *39 - - &229 + - &232 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -9604,7 +9604,7 @@ paths: enum: - open - resolved - - &230 + - &233 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -9614,7 +9614,7 @@ paths: required: false schema: type: string - - &231 + - &234 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -9623,7 +9623,7 @@ paths: required: false schema: type: string - - &232 + - &235 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. @@ -9639,7 +9639,7 @@ paths: - *17 - *37 - *38 - - &233 + - &236 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -9648,7 +9648,7 @@ paths: required: false schema: type: string - - &234 + - &237 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -9657,7 +9657,7 @@ paths: schema: type: boolean default: false - - &235 + - &238 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -9673,7 +9673,7 @@ paths: application/json: schema: type: array - items: &236 + items: &239 type: object properties: number: *52 @@ -9689,14 +9689,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &546 + state: &549 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: &547 + resolution: &550 type: - string - 'null' @@ -9801,7 +9801,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &237 + default: &240 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -10254,7 +10254,7 @@ paths: milestone: anyOf: - type: 'null' - - &394 + - &397 title: Milestone description: A collection of related issues and pull requests. @@ -10426,6 +10426,59 @@ paths: timeline_url: type: string format: uri + type: &181 + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description repository: *59 performed_via_github_app: anyOf: @@ -10518,7 +10571,7 @@ paths: - author_association - created_at - updated_at - comment: &453 + comment: &456 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -11093,7 +11146,7 @@ paths: url: type: string format: uri - user: &577 + user: &580 title: Public User description: Public User type: object @@ -12988,7 +13041,7 @@ paths: - closed - all default: open - - &181 + - &184 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -13039,7 +13092,7 @@ paths: type: array items: *74 examples: - default: &182 + default: &185 value: - id: 1 node_id: MDU6SXNzdWUx @@ -14450,14 +14503,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-public-events-for-a-network-of-repositories parameters: - - &262 + - &265 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &263 + - &266 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -14528,7 +14581,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &274 + '301': &277 description: Moved permanently content: application/json: @@ -14550,7 +14603,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &482 + - &485 name: all description: If `true`, show notifications marked as read. in: query @@ -14558,7 +14611,7 @@ paths: schema: type: boolean default: false - - &483 + - &486 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -14568,7 +14621,7 @@ paths: type: boolean default: false - *64 - - &484 + - &487 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: @@ -14939,7 +14992,7 @@ paths: type: boolean examples: - false - security_and_analysis: &219 + security_and_analysis: &222 type: - object - 'null' @@ -15086,7 +15139,7 @@ paths: - url - subscription_url examples: - default: &485 + default: &488 value: - id: '1' repository: @@ -15707,7 +15760,7 @@ paths: - avatar_url - description examples: - default: &594 + default: &597 value: - login: github id: 1 @@ -16683,7 +16736,7 @@ paths: type: integer repository_cache_usages: type: array - items: &279 + items: &282 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -17581,7 +17634,7 @@ paths: - all - local_only - selected - selected_actions_url: &285 + selected_actions_url: &288 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` @@ -17671,7 +17724,7 @@ paths: type: array items: *59 examples: - default: &588 + default: &591 value: total_count: 1 repositories: @@ -17999,7 +18052,7 @@ paths: description: Response content: application/json: - schema: &289 + schema: &292 type: object properties: default_workflow_permissions: &108 @@ -18050,7 +18103,7 @@ paths: required: false content: application/json: - schema: &290 + schema: &293 type: object properties: default_workflow_permissions: *108 @@ -18543,7 +18596,7 @@ paths: type: array items: *115 examples: - default: &580 + default: &583 value: total_count: 1 repositories: @@ -19190,7 +19243,7 @@ paths: application/json: schema: type: array - items: &291 + items: &294 title: Runner Application description: Runner Application type: object @@ -19215,7 +19268,7 @@ paths: - download_url - filename examples: - default: &292 + default: &295 value: - os: osx architecture: x64 @@ -19301,7 +19354,7 @@ paths: - no-gpu work_folder: _work responses: - '201': &293 + '201': &296 description: Response content: application/json: @@ -19416,7 +19469,7 @@ paths: - token - expires_at examples: - default: &294 + default: &297 value: token: LLBF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-22T12:13:35.123-08:00' @@ -19455,7 +19508,7 @@ paths: application/json: schema: *119 examples: - default: &295 + default: &298 value: token: AABF3JGZDX3P5PMEXLND6TS6FCWO6 expires_at: '2020-01-29T12:13:35.123-08:00' @@ -19489,7 +19542,7 @@ paths: application/json: schema: *117 examples: - default: &296 + default: &299 value: id: 23 name: MBP @@ -19714,7 +19767,7 @@ paths: - *90 - *116 responses: - '200': &297 + '200': &300 description: Response content: application/json: @@ -19771,7 +19824,7 @@ paths: parameters: - *90 - *116 - - &298 + - &301 name: name description: The name of a self-hosted runner's custom label. in: path @@ -19903,7 +19956,7 @@ paths: description: Response content: application/json: - schema: &310 + schema: &313 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -19938,7 +19991,7 @@ paths: - key_id - key examples: - default: &311 + default: &314 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -20351,7 +20404,7 @@ paths: url: https://docs.github.com/rest/actions/variables#list-organization-variables parameters: - *90 - - &284 + - &287 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -20891,7 +20944,7 @@ paths: bundle_url: type: string examples: - default: &324 + default: &327 value: attestations: - bundle: @@ -21010,7 +21063,7 @@ paths: type: array items: *4 examples: - default: &183 + default: &186 value: - login: octocat id: 1 @@ -21128,7 +21181,7 @@ paths: url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-an-organization parameters: - *90 - - &349 + - &352 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`, @@ -21138,7 +21191,7 @@ paths: schema: &131 type: string description: The name of the tool used to generate the code scanning analysis. - - &350 + - &353 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 @@ -21162,7 +21215,7 @@ paths: be returned. in: query required: false - schema: &352 + schema: &355 type: string description: State of a code scanning alert. enum: @@ -21185,7 +21238,7 @@ paths: be returned. in: query required: false - schema: &353 + schema: &356 type: string description: Severity of a code scanning alert. enum: @@ -21211,7 +21264,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: &354 + instances_url: &357 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -21233,7 +21286,7 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: &355 + dismissed_reason: &358 type: - string - 'null' @@ -21244,14 +21297,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &356 + dismissed_comment: &359 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &357 + rule: &360 type: object properties: id: @@ -21312,7 +21365,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &358 + tool: &361 type: object properties: name: *131 @@ -21323,15 +21376,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *132 - most_recent_instance: &359 + most_recent_instance: &362 type: object properties: - ref: &351 + ref: &354 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &369 + analysis_key: &372 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -21342,7 +21395,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &370 + category: &373 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -22586,7 +22639,7 @@ paths: type: integer codespaces: type: array - items: &184 + items: &187 type: object title: Codespace description: A codespace. @@ -22621,7 +22674,7 @@ paths: machine: anyOf: - type: 'null' - - &382 + - &385 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -22908,7 +22961,7 @@ paths: - pulls_url - recent_folders examples: - default: &185 + default: &188 value: total_count: 3 codespaces: @@ -23573,7 +23626,7 @@ paths: - updated_at - visibility examples: - default: &383 + default: &386 value: total_count: 2 secrets: @@ -23611,7 +23664,7 @@ paths: description: Response content: application/json: - schema: &384 + schema: &387 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -23646,7 +23699,7 @@ paths: - key_id - key examples: - default: &385 + default: &388 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -23678,7 +23731,7 @@ paths: application/json: schema: *141 examples: - default: &387 + default: &390 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -24145,7 +24198,7 @@ paths: currently being billed. seats: type: array - items: &187 + items: &190 title: Copilot Business Seat Detail description: Information about a Copilot Business seat assignment for a user, team, or organization. @@ -24219,7 +24272,7 @@ paths: parent: anyOf: - type: 'null' - - &195 + - &198 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -24873,7 +24926,7 @@ paths: application/json: schema: type: array - items: &242 + items: &245 title: Copilot Usage Metrics description: Copilot usage metrics for a given day. type: object @@ -25188,7 +25241,7 @@ paths: - date additionalProperties: true examples: - default: &243 + default: &246 value: - date: '2024-06-24' total_active_users: 24 @@ -25290,7 +25343,7 @@ paths: '500': *140 '403': *27 '404': *6 - '422': &244 + '422': &247 description: Copilot Usage Merics API setting is disabled at the organization or enterprise level. content: @@ -25358,7 +25411,7 @@ paths: application/json: schema: type: array - items: &245 + items: &248 title: Copilot Usage Metrics description: Summary of Copilot usage. type: object @@ -25446,7 +25499,7 @@ paths: - breakdown additionalProperties: false examples: - default: &246 + default: &249 value: - day: '2023-10-15' total_suggestions_count: 1000 @@ -25681,7 +25734,7 @@ paths: description: Response content: application/json: - schema: &410 + schema: &413 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -25700,7 +25753,7 @@ paths: - key_id - key examples: - default: &411 + default: &414 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -26027,7 +26080,7 @@ paths: application/json: schema: type: array - items: &197 + items: &200 title: Package description: A software package type: object @@ -26098,7 +26151,7 @@ paths: - created_at - updated_at examples: - default: &198 + default: &201 value: - id: 197 name: hello_docker @@ -27521,7 +27574,7 @@ paths: application/json: schema: *20 examples: - default: &449 + default: &452 value: id: 1 account: @@ -27749,7 +27802,7 @@ paths: required: true content: application/json: - schema: &450 + schema: &453 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -28035,7 +28088,7 @@ paths: type: array items: *180 examples: - default: &196 + default: &199 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -28058,6 +28111,243 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - *90 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *181 + examples: + default: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - *90 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *181 + examples: + default: &182 + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - *90 + - &183 + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *181 + examples: + default: *182 + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - *90 + - *183 + responses: + '204': + description: Response + '422': *7 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -28110,7 +28400,13 @@ paths: - closed - all default: open - - *181 + - *184 + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -28135,7 +28431,7 @@ paths: type: array items: *74 examples: - default: *182 + default: *185 headers: Link: *57 '404': *6 @@ -28193,7 +28489,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '422': *15 @@ -28289,9 +28585,9 @@ paths: type: integer codespaces: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 '304': *35 '500': *140 '401': *23 @@ -28318,7 +28614,7 @@ paths: parameters: - *90 - *128 - - &186 + - &189 name: codespace_name in: path required: true @@ -28353,15 +28649,15 @@ paths: parameters: - *90 - *128 - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: &381 + default: &384 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -28541,7 +28837,7 @@ paths: description: The user's GitHub Copilot seat details, including usage. content: application/json: - schema: *187 + schema: *190 examples: default: value: @@ -28616,7 +28912,7 @@ paths: description: Response content: application/json: - schema: &188 + schema: &191 title: Org Membership description: Org Membership type: object @@ -28669,7 +28965,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &189 + response-if-user-has-an-active-admin-membership-with-organization: &192 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -28766,9 +29062,9 @@ paths: description: Response content: application/json: - schema: *188 + schema: *191 examples: - response-if-user-already-had-membership-with-organization: *189 + response-if-user-already-had-membership-with-organization: *192 '422': *15 '403': *27 x-github: @@ -28837,7 +29133,7 @@ paths: application/json: schema: type: array - items: &190 + items: &193 title: Migration description: A migration. type: object @@ -29175,7 +29471,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -29354,7 +29650,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#get-an-organization-migration-status parameters: - *90 - - &191 + - &194 name: migration_id description: The unique identifier of the migration. in: path @@ -29382,7 +29678,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -29552,7 +29848,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#download-an-organization-migration-archive parameters: - *90 - - *191 + - *194 responses: '302': description: Response @@ -29574,7 +29870,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *90 - - *191 + - *194 responses: '204': description: Response @@ -29598,8 +29894,8 @@ paths: url: https://docs.github.com/rest/migrations/orgs#unlock-an-organization-repository parameters: - *90 - - *191 - - &593 + - *194 + - &596 name: repo_name description: repo_name parameter in: path @@ -29627,7 +29923,7 @@ paths: url: https://docs.github.com/rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *90 - - *191 + - *194 - *17 - *19 responses: @@ -29639,7 +29935,7 @@ paths: type: array items: *115 examples: - default: &203 + default: &206 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -29792,7 +30088,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &194 + items: &197 title: Organization Role description: Organization roles type: object @@ -29942,7 +30238,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *90 - - &192 + - &195 name: team_slug description: The slug of the team name. in: path @@ -29974,8 +30270,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *90 - - *192 - - &193 + - *195 + - &196 name: role_id description: The unique identifier of the role. in: path @@ -30011,8 +30307,8 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *90 - - *192 - - *193 + - *195 + - *196 responses: '204': description: Response @@ -30065,7 +30361,7 @@ paths: parameters: - *90 - *128 - - *193 + - *196 responses: '204': description: Response @@ -30097,7 +30393,7 @@ paths: parameters: - *90 - *128 - - *193 + - *196 responses: '204': description: Response @@ -30126,13 +30422,13 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#get-an-organization-role parameters: - *90 - - *193 + - *196 responses: '200': description: Response content: application/json: - schema: *194 + schema: *197 examples: default: value: @@ -30183,7 +30479,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-teams-that-are-assigned-to-an-organization-role parameters: - *90 - - *193 + - *196 - *17 - *19 responses: @@ -30262,7 +30558,7 @@ paths: parent: anyOf: - type: 'null' - - *195 + - *198 required: - id - node_id @@ -30276,7 +30572,7 @@ paths: - slug - parent examples: - default: *196 + default: *199 headers: Link: *57 '404': @@ -30306,7 +30602,7 @@ paths: url: https://docs.github.com/rest/orgs/organization-roles#list-users-that-are-assigned-to-an-organization-role parameters: - *90 - - *193 + - *196 - *17 - *19 responses: @@ -30335,7 +30631,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *195 + items: *198 name: type: - string @@ -30452,7 +30748,7 @@ paths: - type - url examples: - default: *183 + default: *186 headers: Link: *57 '404': @@ -30500,7 +30796,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -30642,7 +30938,7 @@ paths: - nuget - container - *90 - - &595 + - &598 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -30678,12 +30974,12 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *198 + default: *201 '403': *27 '401': *23 - '400': &597 + '400': &600 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -30705,7 +31001,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-an-organization parameters: - - &199 + - &202 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 @@ -30723,7 +31019,7 @@ paths: - docker - nuget - container - - &200 + - &203 name: package_name description: The name of the package. in: path @@ -30736,7 +31032,7 @@ paths: description: Response content: application/json: - schema: *197 + schema: *200 examples: default: value: @@ -30788,8 +31084,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-an-organization parameters: - - *199 - - *200 + - *202 + - *203 - *90 responses: '204': @@ -30822,8 +31118,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-an-organization parameters: - - *199 - - *200 + - *202 + - *203 - *90 - name: token description: package token @@ -30856,8 +31152,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: - - *199 - - *200 + - *202 + - *203 - *90 - *19 - *17 @@ -30878,7 +31174,7 @@ paths: application/json: schema: type: array - items: &201 + items: &204 title: Package Version description: A version of a software package type: object @@ -31013,10 +31309,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-an-organization parameters: - - *199 - - *200 + - *202 + - *203 - *90 - - &202 + - &205 name: package_version_id description: Unique identifier of the package version. in: path @@ -31028,7 +31324,7 @@ paths: description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -31064,10 +31360,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-an-organization parameters: - - *199 - - *200 - - *90 - *202 + - *203 + - *90 + - *205 responses: '204': description: Response @@ -31099,10 +31395,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-an-organization parameters: - - *199 - - *200 - - *90 - *202 + - *203 + - *90 + - *205 responses: '204': description: Response @@ -31132,7 +31428,7 @@ paths: - *90 - *17 - *19 - - &204 + - &207 name: sort description: The property by which to sort the results. in: query @@ -31143,7 +31439,7 @@ paths: - created_at default: created_at - *46 - - &205 + - &208 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -31155,7 +31451,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &206 + - &209 name: repository description: The name of the repository to use to filter the results. in: query @@ -31164,7 +31460,7 @@ paths: type: string examples: - Hello-World - - &207 + - &210 name: permission description: The permission to use to filter the results. in: query @@ -31173,7 +31469,7 @@ paths: type: string examples: - issues_read - - &208 + - &211 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) @@ -31183,7 +31479,7 @@ paths: schema: type: string format: date-time - - &209 + - &212 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) @@ -31193,7 +31489,7 @@ paths: schema: type: string format: date-time - - &210 + - &213 name: token_id description: The ID of the token in: query @@ -31512,7 +31808,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -31538,14 +31834,14 @@ paths: - *90 - *17 - *19 - - *204 - - *46 - - *205 - - *206 - *207 + - *46 - *208 - *209 - *210 + - *211 + - *212 + - *213 responses: '500': *140 '422': *15 @@ -31829,7 +32125,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -31873,7 +32169,7 @@ paths: type: integer configurations: type: array - items: &211 + items: &214 title: Organization private registry description: Private registry configuration for an organization type: object @@ -32085,7 +32381,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &212 + org-private-registry-with-selected-visibility: &215 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -32187,9 +32483,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *211 + schema: *214 examples: - default: *212 + default: *215 '404': *6 x-github: githubCloudOnly: false @@ -32340,7 +32636,7 @@ paths: application/json: schema: type: array - items: &213 + items: &216 title: Project description: Projects are a way to organize columns and cards of work. @@ -32522,7 +32818,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: default: value: @@ -32560,7 +32856,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &271 + '410': &274 description: Gone content: application/json: @@ -32595,7 +32891,7 @@ paths: application/json: schema: type: array - items: &214 + items: &217 title: Organization Custom Property description: Custom property defined on an organization type: object @@ -32671,7 +32967,7 @@ paths: - property_name - value_type examples: - default: &215 + default: &218 value: - property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32705,6 +33001,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -32726,7 +33026,7 @@ paths: properties: type: array description: The array of custom properties to create or update. - items: *214 + items: *217 minItems: 1 maxItems: 100 required: @@ -32756,9 +33056,9 @@ paths: application/json: schema: type: array - items: *214 + items: *217 examples: - default: *215 + default: *218 '403': *27 '404': *6 x-github: @@ -32780,7 +33080,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#get-a-custom-property-for-an-organization parameters: - *90 - - &216 + - &219 name: custom_property_name description: The custom property name in: path @@ -32792,9 +33092,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: &217 + default: &220 value: property_name: environment url: https://api.github.com/orgs/github/properties/schema/environment @@ -32829,7 +33129,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#create-or-update-a-custom-property-for-an-organization parameters: - *90 - - *216 + - *219 requestBody: required: true content: @@ -32879,6 +33179,17 @@ paths: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type examples: @@ -32896,9 +33207,9 @@ paths: description: Response content: application/json: - schema: *214 + schema: *217 examples: - default: *217 + default: *220 '403': *27 '404': *6 x-github: @@ -32922,7 +33233,7 @@ paths: url: https://docs.github.com/rest/orgs/custom-properties#remove-a-custom-property-for-an-organization parameters: - *90 - - *216 + - *219 responses: '204': *137 '403': *27 @@ -32986,7 +33297,7 @@ paths: - octocat/Hello-World properties: type: array - items: &218 + items: &221 title: Custom Property Value description: Custom property name and associated value type: object @@ -33076,7 +33387,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *218 + items: *221 required: - repository_names - properties @@ -33129,7 +33440,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -33268,7 +33579,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -33471,7 +33782,7 @@ paths: description: Response content: application/json: - schema: &273 + schema: &276 title: Full Repository description: Full Repository type: object @@ -33936,7 +34247,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &400 + code_of_conduct: &403 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -33966,7 +34277,7 @@ paths: - key - name - html_url - security_and_analysis: *219 + security_and_analysis: *222 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -34050,7 +34361,7 @@ paths: - network_count - subscribers_count examples: - default: &275 + default: &278 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -34571,7 +34882,7 @@ paths: - *90 - *17 - *19 - - &531 + - &534 name: targets description: | A comma-separated list of rule targets to filter by. @@ -34590,7 +34901,7 @@ paths: application/json: schema: type: array - items: &226 + items: &229 title: Repository ruleset type: object description: A set of rules to apply when specified conditions are @@ -34625,7 +34936,7 @@ paths: source: type: string description: The name of the source - enforcement: &222 + enforcement: &225 type: string description: The enforcement level of the ruleset. `evaluate` allows admins to test rules before enforcing them. Admins @@ -34638,7 +34949,7 @@ paths: bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: &223 + items: &226 title: Repository Ruleset Bypass Actor type: object description: An actor that can bypass rules in a ruleset @@ -34704,7 +35015,7 @@ paths: description: The html URL of the ruleset conditions: anyOf: - - &220 + - &223 title: Repository ruleset conditions for ref names type: object description: Parameters for a repository ruleset ref name @@ -34728,7 +35039,7 @@ paths: match. items: type: string - - &224 + - &227 title: Organization ruleset conditions type: object description: |- @@ -34742,7 +35053,7 @@ paths: description: Conditions to target repositories by name and refs by name allOf: - - *220 + - *223 - title: Repository ruleset conditions for repository names type: object description: Parameters for a repository name condition @@ -34776,7 +35087,7 @@ paths: description: Conditions to target repositories by id and refs by name allOf: - - *220 + - *223 - title: Repository ruleset conditions for repository IDs type: object description: Parameters for a repository ID condition @@ -34798,7 +35109,7 @@ paths: description: Conditions to target repositories by property and refs by name allOf: - - *220 + - *223 - title: Repository ruleset conditions for repository properties type: object description: Parameters for a repository property condition @@ -34811,7 +35122,7 @@ paths: description: The repository properties and values to include. All of these properties must match for the condition to pass. - items: &221 + items: &224 title: Repository ruleset property targeting definition type: object @@ -34844,7 +35155,7 @@ paths: description: The repository properties and values to exclude. The condition will not pass if any of these properties match. - items: *221 + items: *224 required: - repository_property type: @@ -34852,12 +35163,12 @@ paths: - object rules: type: array - items: &225 + items: &228 title: Repository Rule type: object description: A repository rule. oneOf: - - &513 + - &516 title: creation description: Only allow users with bypass permission to create matching refs. @@ -34869,7 +35180,7 @@ paths: type: string enum: - creation - - &514 + - &517 title: update description: Only allow users with bypass permission to update matching refs. @@ -34890,7 +35201,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &516 + - &519 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -34902,7 +35213,7 @@ paths: type: string enum: - deletion - - &517 + - &520 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -34914,7 +35225,7 @@ paths: type: string enum: - required_linear_history - - &518 + - &521 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -34992,7 +35303,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &519 + - &522 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that @@ -35016,7 +35327,7 @@ paths: type: string required: - required_deployment_environments - - &520 + - &523 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -35028,7 +35339,7 @@ paths: type: string enum: - required_signatures - - &521 + - &524 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can @@ -35081,7 +35392,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &522 + - &525 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be @@ -35129,7 +35440,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &523 + - &526 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -35141,7 +35452,7 @@ paths: type: string enum: - non_fast_forward - - &524 + - &527 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -35177,7 +35488,7 @@ paths: required: - operator - pattern - - &525 + - &528 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -35213,7 +35524,7 @@ paths: required: - operator - pattern - - &526 + - &529 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -35249,7 +35560,7 @@ paths: required: - operator - pattern - - &527 + - &530 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -35285,7 +35596,7 @@ paths: required: - operator - pattern - - &528 + - &531 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -35411,7 +35722,7 @@ paths: maximum: 100 required: - max_file_size - - &529 + - &532 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -35461,7 +35772,7 @@ paths: - repository_id required: - workflows - - &530 + - &533 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, @@ -35595,16 +35906,16 @@ paths: - push - repository default: branch - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *224 + items: *226 + conditions: *227 rules: type: array description: An array of rules within the ruleset. - items: *225 + items: *228 required: - name - enforcement @@ -35642,9 +35953,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: &227 + default: &230 value: id: 21 name: super cool ruleset @@ -35699,7 +36010,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#list-organization-rule-suites parameters: - *90 - - &532 + - &535 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 @@ -35714,7 +36025,7 @@ paths: in: query schema: type: string - - &533 + - &536 name: time_period description: |- The time period to filter by. @@ -35730,14 +36041,14 @@ paths: - week - month default: day - - &534 + - &537 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 - - &535 + - &538 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -35757,7 +36068,7 @@ paths: description: Response content: application/json: - schema: &536 + schema: &539 title: Rule Suites description: Response type: array @@ -35813,7 +36124,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &537 + default: &540 value: - id: 21 actor_id: 12 @@ -35857,7 +36168,7 @@ paths: url: https://docs.github.com/rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *90 - - &538 + - &541 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -35873,7 +36184,7 @@ paths: description: Response content: application/json: - schema: &539 + schema: &542 title: Rule Suite description: Response type: object @@ -35980,7 +36291,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &540 + default: &543 value: id: 21 actor_id: 12 @@ -36053,9 +36364,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *227 + default: *230 '404': *6 '500': *140 put: @@ -36099,16 +36410,16 @@ paths: - tag - push - repository - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *224 + items: *226 + conditions: *227 rules: description: An array of rules within the ruleset. type: array - items: *225 + items: *228 examples: default: value: @@ -36143,9 +36454,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *227 + default: *230 '404': *6 '500': *140 delete: @@ -36202,7 +36513,7 @@ paths: application/json: schema: type: array - items: &228 + items: &231 title: Ruleset version type: object description: The historical version of a ruleset @@ -36226,7 +36537,7 @@ paths: type: string format: date-time examples: - default: &542 + default: &545 value: - version_id: 3 actor: @@ -36279,9 +36590,9 @@ paths: description: Response content: application/json: - schema: &543 + schema: &546 allOf: - - *228 + - *231 - type: object required: - state @@ -36351,14 +36662,14 @@ paths: url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *90 - - *229 - - *230 - - *231 - *232 + - *233 + - *234 + - *235 - *46 - *19 - *17 - - &544 + - &547 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 @@ -36368,7 +36679,7 @@ paths: required: false schema: type: string - - &545 + - &548 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 @@ -36378,9 +36689,9 @@ paths: required: false schema: type: string - - *233 - - *234 - - *235 + - *236 + - *237 + - *238 responses: '200': description: Response @@ -36388,9 +36699,9 @@ paths: application/json: schema: type: array - items: *236 + items: *239 examples: - default: *237 + default: *240 headers: Link: *57 '404': *6 @@ -36460,7 +36771,7 @@ paths: application/json: schema: type: array - items: &552 + items: &555 description: A repository security advisory. type: object properties: @@ -36704,7 +37015,7 @@ paths: login: type: string description: The username of the user credited. - type: *238 + type: *241 credits_detailed: type: - array @@ -36715,7 +37026,7 @@ paths: type: object properties: user: *4 - type: *238 + type: *241 state: type: string description: The state of the user's acceptance of the @@ -36779,7 +37090,7 @@ paths: - private_fork additionalProperties: false examples: - default: &553 + default: &556 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -37166,9 +37477,9 @@ paths: application/json: schema: type: array - items: *195 + items: *198 examples: - default: *196 + default: *199 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37192,7 +37503,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#add-a-security-manager-team parameters: - *90 - - *192 + - *195 responses: '204': description: Response @@ -37218,7 +37529,7 @@ paths: url: https://docs.github.com/rest/orgs/security-managers#remove-a-security-manager-team parameters: - *90 - - *192 + - *195 responses: '204': description: Response @@ -37253,7 +37564,7 @@ paths: description: Response content: application/json: - schema: &611 + schema: &614 type: object properties: total_minutes_used: @@ -37323,7 +37634,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &612 + default: &615 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -37359,7 +37670,7 @@ paths: description: Response content: application/json: - schema: &613 + schema: &616 type: object properties: total_gigabytes_bandwidth_used: @@ -37377,7 +37688,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &614 + default: &617 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -37409,7 +37720,7 @@ paths: description: Response content: application/json: - schema: &615 + schema: &618 type: object properties: days_left_in_billing_cycle: @@ -37427,7 +37738,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &616 + default: &619 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -37469,7 +37780,7 @@ paths: type: integer network_configurations: type: array - items: &239 + items: &242 title: Hosted compute network configuration description: A hosted compute network configuration. type: object @@ -37594,9 +37905,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *242 examples: - default: &240 + default: &243 value: id: 123456789ABCDEF name: My network configuration @@ -37625,7 +37936,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#get-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - &241 + - &244 name: network_configuration_id description: Unique identifier of the hosted compute network configuration. in: path @@ -37637,9 +37948,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *242 examples: - default: *240 + default: *243 headers: Link: *57 x-github: @@ -37661,7 +37972,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#update-a-hosted-compute-network-configuration-for-an-organization parameters: - *90 - - *241 + - *244 requestBody: required: true content: @@ -37700,9 +38011,9 @@ paths: description: Response content: application/json: - schema: *239 + schema: *242 examples: - default: *240 + default: *243 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37722,7 +38033,7 @@ paths: url: https://docs.github.com/rest/orgs/network-configurations#delete-a-hosted-compute-network-configuration-from-an-organization parameters: - *90 - - *241 + - *244 responses: '204': description: Response @@ -37835,7 +38146,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *90 - - *192 + - *195 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37867,13 +38178,13 @@ paths: application/json: schema: type: array - items: *242 + items: *245 examples: - default: *243 + default: *246 '500': *140 '403': *27 '404': *6 - '422': *244 + '422': *247 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -37908,7 +38219,7 @@ paths: url: https://docs.github.com/rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *90 - - *192 + - *195 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -37940,9 +38251,9 @@ paths: application/json: schema: type: array - items: *245 + items: *248 examples: - default: *246 + default: *249 '500': *140 '401': *23 '403': *27 @@ -37976,7 +38287,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 headers: Link: *57 '403': *27 @@ -38070,7 +38381,7 @@ paths: description: Response content: application/json: - schema: &247 + schema: &250 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -38144,7 +38455,7 @@ paths: parent: anyOf: - type: 'null' - - *195 + - *198 members_count: type: integer examples: @@ -38450,7 +38761,7 @@ paths: - repos_count - organization examples: - default: &248 + default: &251 value: id: 1 node_id: MDQ6VGVhbTE= @@ -38521,15 +38832,15 @@ paths: url: https://docs.github.com/rest/teams/teams#get-a-team-by-name parameters: - *90 - - *192 + - *195 responses: '200': description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 x-github: githubCloudOnly: false @@ -38551,7 +38862,7 @@ paths: url: https://docs.github.com/rest/teams/teams#update-a-team parameters: - *90 - - *192 + - *195 requestBody: required: false content: @@ -38614,16 +38925,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '201': description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 '422': *15 '403': *27 @@ -38649,7 +38960,7 @@ paths: url: https://docs.github.com/rest/teams/teams#delete-a-team parameters: - *90 - - *192 + - *195 responses: '204': description: Response @@ -38676,7 +38987,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#list-discussions parameters: - *90 - - *192 + - *195 - *46 - *17 - *19 @@ -38693,7 +39004,7 @@ paths: application/json: schema: type: array - items: &249 + items: &252 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -38804,7 +39115,7 @@ paths: - updated_at - url examples: - default: &567 + default: &570 value: - author: login: octocat @@ -38879,7 +39190,7 @@ paths: url: https://docs.github.com/rest/teams/discussions#create-a-discussion parameters: - *90 - - *192 + - *195 requestBody: required: true content: @@ -38913,9 +39224,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: &250 + default: &253 value: author: login: octocat @@ -38988,8 +39299,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#get-a-discussion parameters: - *90 - - *192 - - &251 + - *195 + - &254 name: discussion_number description: The number that identifies the discussion. in: path @@ -39001,9 +39312,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *250 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39026,8 +39337,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#update-a-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 requestBody: required: false content: @@ -39050,9 +39361,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: &568 + default: &571 value: author: login: octocat @@ -39123,8 +39434,8 @@ paths: url: https://docs.github.com/rest/teams/discussions#delete-a-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 responses: '204': description: Response @@ -39151,8 +39462,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments parameters: - *90 - - *192 - - *251 + - *195 + - *254 - *46 - *17 - *19 @@ -39163,7 +39474,7 @@ paths: application/json: schema: type: array - items: &252 + items: &255 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -39243,7 +39554,7 @@ paths: - updated_at - url examples: - default: &569 + default: &572 value: - author: login: octocat @@ -39312,8 +39623,8 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 + - *254 requestBody: required: true content: @@ -39335,9 +39646,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: &253 + default: &256 value: author: login: octocat @@ -39404,9 +39715,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment parameters: - *90 - - *192 - - *251 - - &254 + - *195 + - *254 + - &257 name: comment_number description: The number that identifies the comment. in: path @@ -39418,9 +39729,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39443,9 +39754,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 requestBody: required: true content: @@ -39467,9 +39778,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: &570 + default: &573 value: author: login: octocat @@ -39534,9 +39845,9 @@ paths: url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 responses: '204': description: Response @@ -39563,9 +39874,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -39591,7 +39902,7 @@ paths: application/json: schema: type: array - items: &255 + items: &258 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -39635,7 +39946,7 @@ paths: - content - created_at examples: - default: &257 + default: &260 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39686,9 +39997,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *90 - - *192 - - *251 + - *195 - *254 + - *257 requestBody: required: true content: @@ -39721,9 +40032,9 @@ paths: team discussion comment content: application/json: - schema: *255 + schema: *258 examples: - default: &256 + default: &259 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -39752,9 +40063,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -39778,10 +40089,10 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *90 - - *192 - - *251 + - *195 - *254 - - &258 + - *257 + - &261 name: reaction_id description: The unique identifier of the reaction. in: path @@ -39814,8 +40125,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -39841,9 +40152,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 x-github: @@ -39870,8 +40181,8 @@ paths: url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *90 - - *192 - - *251 + - *195 + - *254 requestBody: required: true content: @@ -39903,16 +40214,16 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -39936,9 +40247,9 @@ paths: url: https://docs.github.com/rest/reactions/reactions#delete-team-discussion-reaction parameters: - *90 - - *192 - - *251 - - *258 + - *195 + - *254 + - *261 responses: '204': description: Response @@ -39963,7 +40274,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-pending-team-invitations parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -39998,7 +40309,7 @@ paths: url: https://docs.github.com/rest/teams/members#list-team-members parameters: - *90 - - *192 + - *195 - name: role description: Filters members returned by their role in the team. in: query @@ -40021,7 +40332,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -40052,14 +40363,14 @@ paths: url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user parameters: - *90 - - *192 + - *195 - *128 responses: '200': description: Response content: application/json: - schema: &259 + schema: &262 title: Team Membership description: Team Membership type: object @@ -40087,7 +40398,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &571 + response-if-user-is-a-team-maintainer: &574 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -40124,7 +40435,7 @@ paths: url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *90 - - *192 + - *195 - *128 requestBody: required: false @@ -40150,9 +40461,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - response-if-users-membership-with-team-is-now-pending: &572 + response-if-users-membership-with-team-is-now-pending: &575 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -40188,7 +40499,7 @@ paths: url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user parameters: - *90 - - *192 + - *195 - *128 responses: '204': @@ -40215,7 +40526,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-projects parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -40225,7 +40536,7 @@ paths: application/json: schema: type: array - items: &260 + items: &263 title: Team Project description: A team's access to a project. type: object @@ -40294,7 +40605,7 @@ paths: - updated_at - permissions examples: - default: &573 + default: &576 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40358,8 +40669,8 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project parameters: - *90 - - *192 - - &261 + - *195 + - &264 name: project_id description: The unique identifier of the project. in: path @@ -40371,9 +40682,9 @@ paths: description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: &574 + default: &577 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -40436,8 +40747,8 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions parameters: - *90 - - *192 - - *261 + - *195 + - *264 requestBody: required: false content: @@ -40505,8 +40816,8 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team parameters: - *90 - - *192 - - *261 + - *195 + - *264 responses: '204': description: Response @@ -40534,7 +40845,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-team-repositories parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -40546,7 +40857,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -40576,15 +40887,15 @@ paths: url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository parameters: - *90 - - *192 - - *262 - - *263 + - *195 + - *265 + - *266 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &575 + schema: &578 title: Team Repository description: A team's access to a repository. type: object @@ -41226,9 +41537,9 @@ paths: url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions parameters: - *90 - - *192 - - *262 - - *263 + - *195 + - *265 + - *266 requestBody: required: false content: @@ -41274,9 +41585,9 @@ paths: url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team parameters: - *90 - - *192 - - *262 - - *263 + - *195 + - *265 + - *266 responses: '204': description: Response @@ -41301,7 +41612,7 @@ paths: url: https://docs.github.com/rest/teams/teams#list-child-teams parameters: - *90 - - *192 + - *195 - *17 - *19 responses: @@ -41313,7 +41624,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: &576 + response-if-child-teams-exist: &579 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -41440,7 +41751,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#get-a-project-card parameters: - - &264 + - &267 name: card_id description: The unique identifier of the card. in: path @@ -41452,7 +41763,7 @@ paths: description: Response content: application/json: - schema: &265 + schema: &268 title: Project Card description: Project cards represent a scope of work. type: object @@ -41527,7 +41838,7 @@ paths: - created_at - updated_at examples: - default: &266 + default: &269 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -41583,7 +41894,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#update-an-existing-project-card parameters: - - *264 + - *267 requestBody: required: false content: @@ -41613,9 +41924,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 '304': *35 '403': *27 '401': *23 @@ -41642,7 +41953,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#delete-a-project-card parameters: - - *264 + - *267 responses: '204': description: Response @@ -41686,7 +41997,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#move-a-project-card parameters: - - *264 + - *267 requestBody: required: true content: @@ -41799,7 +42110,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#get-a-project-column parameters: - - &267 + - &270 name: column_id description: The unique identifier of the column. in: path @@ -41811,7 +42122,7 @@ paths: description: Response content: application/json: - schema: &268 + schema: &271 title: Project Column description: Project columns contain cards of work. type: object @@ -41865,7 +42176,7 @@ paths: - created_at - updated_at examples: - default: &269 + default: &272 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -41900,7 +42211,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#update-an-existing-project-column parameters: - - *267 + - *270 requestBody: required: true content: @@ -41925,9 +42236,9 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: - default: *269 + default: *272 '304': *35 '403': *27 '401': *23 @@ -41952,7 +42263,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#delete-a-project-column parameters: - - *267 + - *270 responses: '204': description: Response @@ -41981,7 +42292,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#list-project-cards parameters: - - *267 + - *270 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -42002,7 +42313,7 @@ paths: application/json: schema: type: array - items: *265 + items: *268 examples: default: value: @@ -42061,7 +42372,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/cards#create-a-project-card parameters: - - *267 + - *270 requestBody: required: true content: @@ -42105,9 +42416,9 @@ paths: description: Response content: application/json: - schema: *265 + schema: *268 examples: - default: *266 + default: *269 '304': *35 '403': *27 '401': *23 @@ -42163,7 +42474,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#move-a-project-column parameters: - - *267 + - *270 requestBody: required: true content: @@ -42224,15 +42535,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#get-a-project parameters: - - *261 + - *264 responses: '200': description: Response content: application/json: - schema: *213 + schema: *216 examples: - default: &270 + default: &273 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -42289,7 +42600,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#update-a-project parameters: - - *261 + - *264 requestBody: required: false content: @@ -42338,9 +42649,9 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: - default: *270 + default: *273 '404': description: Not Found if the authenticated user does not have access to the project @@ -42361,7 +42672,7 @@ paths: items: type: string '401': *23 - '410': *271 + '410': *274 '422': *7 x-github: githubCloudOnly: false @@ -42384,7 +42695,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#delete-a-project parameters: - - *261 + - *264 responses: '204': description: Delete Success @@ -42405,7 +42716,7 @@ paths: items: type: string '401': *23 - '410': *271 + '410': *274 '404': *6 x-github: githubCloudOnly: false @@ -42429,7 +42740,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#list-project-collaborators parameters: - - *261 + - *264 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -42456,7 +42767,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '404': *6 @@ -42486,7 +42797,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#add-project-collaborator parameters: - - *261 + - *264 - *128 requestBody: required: false @@ -42541,7 +42852,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *261 + - *264 - *128 responses: '204': @@ -42573,7 +42884,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *261 + - *264 - *128 responses: '200': @@ -42644,7 +42955,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#list-project-columns parameters: - - *261 + - *264 - *17 - *19 responses: @@ -42654,7 +42965,7 @@ paths: application/json: schema: type: array - items: *268 + items: *271 examples: default: value: @@ -42692,7 +43003,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/columns#create-a-project-column parameters: - - *261 + - *264 requestBody: required: true content: @@ -42716,7 +43027,7 @@ paths: description: Response content: application/json: - schema: *268 + schema: *271 examples: default: value: @@ -42780,7 +43091,7 @@ paths: resources: type: object properties: - core: &272 + core: &275 title: Rate Limit type: object properties: @@ -42797,20 +43108,20 @@ paths: - remaining - reset - used - graphql: *272 - search: *272 - code_search: *272 - source_import: *272 - integration_manifest: *272 - code_scanning_upload: *272 - actions_runner_registration: *272 - scim: *272 - dependency_snapshots: *272 - code_scanning_autofix: *272 + graphql: *275 + search: *275 + code_search: *275 + source_import: *275 + integration_manifest: *275 + code_scanning_upload: *275 + actions_runner_registration: *275 + scim: *275 + dependency_snapshots: *275 + code_scanning_autofix: *275 required: - core - search - rate: *272 + rate: *275 required: - rate - resources @@ -42914,14 +43225,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *273 + schema: *276 examples: default-response: summary: Default response @@ -43422,7 +43733,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *274 + '301': *277 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -43440,8 +43751,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#update-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -43678,10 +43989,10 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 - '307': &276 + default: *278 + '307': &279 description: Temporary Redirect content: application/json: @@ -43710,8 +44021,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#delete-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -43733,7 +44044,7 @@ paths: value: message: Organization members cannot delete repositories. documentation_url: https://docs.github.com/rest/repos/repos#delete-a-repository - '307': *276 + '307': *279 '404': *6 x-github: githubCloudOnly: false @@ -43756,11 +44067,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - - &302 + - &305 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -43783,7 +44094,7 @@ paths: type: integer artifacts: type: array - items: &277 + items: &280 title: Artifact description: An artifact type: object @@ -43878,7 +44189,7 @@ paths: - expires_at - updated_at examples: - default: &303 + default: &306 value: total_count: 2 artifacts: @@ -43939,9 +44250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#get-an-artifact parameters: - - *262 - - *263 - - &278 + - *265 + - *266 + - &281 name: artifact_id description: The unique identifier of the artifact. in: path @@ -43953,7 +44264,7 @@ paths: description: Response content: application/json: - schema: *277 + schema: *280 examples: default: value: @@ -43991,9 +44302,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#delete-an-artifact parameters: - - *262 - - *263 - - *278 + - *265 + - *266 + - *281 responses: '204': description: Response @@ -44017,9 +44328,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#download-an-artifact parameters: - - *262 - - *263 - - *278 + - *265 + - *266 + - *281 - name: archive_format in: path required: true @@ -44033,7 +44344,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44056,14 +44367,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#get-github-actions-cache-usage-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *279 + schema: *282 examples: default: value: @@ -44089,11 +44400,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/cache#list-github-actions-caches-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - - &280 + - &283 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 @@ -44127,7 +44438,7 @@ paths: description: Response content: application/json: - schema: &281 + schema: &284 title: Repository actions caches description: Repository actions caches type: object @@ -44177,7 +44488,7 @@ paths: - total_count - actions_caches examples: - default: &282 + default: &285 value: total_count: 1 actions_caches: @@ -44209,23 +44520,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: - - *262 - - *263 + - *265 + - *266 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *280 + - *283 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *282 + default: *285 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -44245,8 +44556,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: - - *262 - - *263 + - *265 + - *266 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -44277,9 +44588,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#get-a-job-for-a-workflow-run parameters: - - *262 - - *263 - - &283 + - *265 + - *266 + - &286 name: job_id description: The unique identifier of the job. in: path @@ -44291,7 +44602,7 @@ paths: description: Response content: application/json: - schema: &306 + schema: &309 title: Job description: Information of a job execution in a workflow run type: object @@ -44638,9 +44949,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#download-job-logs-for-a-workflow-run parameters: - - *262 - - *263 - - *283 + - *265 + - *266 + - *286 responses: '302': description: Response @@ -44668,9 +44979,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-job-from-a-workflow-run parameters: - - *262 - - *263 - - *283 + - *265 + - *266 + - *286 requestBody: required: false content: @@ -44716,8 +45027,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Status response @@ -44767,8 +45078,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -44831,8 +45142,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-organization-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -44850,7 +45161,7 @@ paths: type: integer secrets: type: array - items: &308 + items: &311 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -44871,7 +45182,7 @@ paths: - created_at - updated_at examples: - default: &309 + default: &312 value: total_count: 2 secrets: @@ -44904,9 +45215,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-organization-variables parameters: - - *262 - - *263 - - *284 + - *265 + - *266 + - *287 - *19 responses: '200': @@ -44923,7 +45234,7 @@ paths: type: integer variables: type: array - items: &312 + items: &315 title: Actions Variable type: object properties: @@ -44957,7 +45268,7 @@ paths: - created_at - updated_at examples: - default: &313 + default: &316 value: total_count: 2 variables: @@ -44990,8 +45301,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-github-actions-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -45000,11 +45311,11 @@ paths: schema: type: object properties: - enabled: &286 + enabled: &289 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *104 - selected_actions_url: *285 + selected_actions_url: *288 required: - enabled examples: @@ -45031,8 +45342,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-github-actions-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -45043,7 +45354,7 @@ paths: schema: type: object properties: - enabled: *286 + enabled: *289 allowed_actions: *104 required: - enabled @@ -45073,14 +45384,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: &287 + schema: &290 type: object properties: access_level: @@ -45097,7 +45408,7 @@ paths: required: - access_level examples: - default: &288 + default: &291 value: access_level: organization x-github: @@ -45121,15 +45432,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: application/json: - schema: *287 + schema: *290 examples: - default: *288 + default: *291 responses: '204': description: Response @@ -45153,8 +45464,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -45181,8 +45492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-allowed-actions-and-reusable-workflows-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -45214,14 +45525,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#get-default-workflow-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *289 + schema: *292 examples: default: *110 x-github: @@ -45244,8 +45555,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/permissions#set-default-workflow-permissions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Success response @@ -45256,7 +45567,7 @@ paths: required: true content: application/json: - schema: *290 + schema: *293 examples: default: *110 x-github: @@ -45285,8 +45596,8 @@ paths: in: query schema: type: string - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -45330,8 +45641,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#list-runner-applications-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -45339,9 +45650,9 @@ paths: application/json: schema: type: array - items: *291 + items: *294 examples: - default: *292 + default: *295 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45363,8 +45674,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -45407,7 +45718,7 @@ paths: - no-gpu work_folder: _work responses: - '201': *293 + '201': *296 '404': *6 '422': *7 '409': *44 @@ -45438,8 +45749,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-registration-token-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '201': description: Response @@ -45447,7 +45758,7 @@ paths: application/json: schema: *119 examples: - default: *294 + default: *297 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45475,8 +45786,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/self-hosted-runners#create-a-remove-token-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '201': description: Response @@ -45484,7 +45795,7 @@ paths: application/json: schema: *119 examples: - default: *295 + default: *298 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45506,8 +45817,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: '200': @@ -45516,7 +45827,7 @@ paths: application/json: schema: *117 examples: - default: *296 + default: *299 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45537,8 +45848,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: '204': @@ -45564,8 +45875,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: '200': *121 @@ -45590,8 +45901,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: - - *262 - - *263 + - *265 + - *266 - *116 requestBody: required: true @@ -45640,8 +45951,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: - - *262 - - *263 + - *265 + - *266 - *116 requestBody: required: true @@ -45691,11 +46002,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: - - *262 - - *263 + - *265 + - *266 - *116 responses: - '200': *297 + '200': *300 '404': *6 x-github: githubCloudOnly: false @@ -45722,10 +46033,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: - - *262 - - *263 + - *265 + - *266 - *116 - - *298 + - *301 responses: '200': *121 '404': *6 @@ -45753,9 +46064,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-repository parameters: - - *262 - - *263 - - &316 + - *265 + - *266 + - &319 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. @@ -45763,7 +46074,7 @@ paths: required: false schema: type: string - - &317 + - &320 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -45771,7 +46082,7 @@ paths: required: false schema: type: string - - &318 + - &321 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -45780,7 +46091,7 @@ paths: required: false schema: type: string - - &319 + - &322 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 @@ -45807,7 +46118,7 @@ paths: - pending - *17 - *19 - - &320 + - &323 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)." @@ -45816,7 +46127,7 @@ paths: schema: type: string format: date-time - - &299 + - &302 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -45825,13 +46136,13 @@ paths: schema: type: boolean default: false - - &321 + - &324 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &322 + - &325 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -45854,7 +46165,7 @@ paths: type: integer workflow_runs: type: array - items: &300 + items: &303 title: Workflow Run description: An invocation of a workflow type: object @@ -45971,7 +46282,7 @@ paths: type: - array - 'null' - items: &341 + items: &344 title: Pull Request Minimal type: object properties: @@ -46098,7 +46409,7 @@ paths: head_commit: anyOf: - type: 'null' - - &345 + - &348 title: Simple Commit description: A commit. type: object @@ -46213,7 +46524,7 @@ paths: - workflow_url - pull_requests examples: - default: &323 + default: &326 value: total_count: 1 workflow_runs: @@ -46449,24 +46760,24 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run parameters: - - *262 - - *263 - - &301 + - *265 + - *266 + - &304 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *299 + - *302 responses: '200': description: Response content: application/json: - schema: *300 + schema: *303 examples: - default: &304 + default: &307 value: id: 30433642 name: Build @@ -46707,9 +47018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '204': description: Response @@ -46732,9 +47043,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-the-review-history-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '200': description: Response @@ -46862,9 +47173,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: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '201': description: Response @@ -46897,12 +47208,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 - *17 - *19 - - *302 + - *305 responses: '200': description: Response @@ -46918,9 +47229,9 @@ paths: type: integer artifacts: type: array - items: *277 + items: *280 examples: - default: *303 + default: *306 headers: Link: *57 x-github: @@ -46944,25 +47255,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *262 - - *263 - - *301 - - &305 + - *265 + - *266 + - *304 + - &308 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *299 + - *302 responses: '200': description: Response content: application/json: - schema: *300 + schema: *303 examples: - default: *304 + default: *307 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46985,10 +47296,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run-attempt parameters: - - *262 - - *263 - - *301 - - *305 + - *265 + - *266 + - *304 + - *308 - *17 - *19 responses: @@ -47006,9 +47317,9 @@ paths: type: integer jobs: type: array - items: *306 + items: *309 examples: - default: &307 + default: &310 value: total_count: 1 jobs: @@ -47121,10 +47432,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *262 - - *263 - - *301 - - *305 + - *265 + - *266 + - *304 + - *308 responses: '302': description: Response @@ -47152,9 +47463,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '202': description: Response @@ -47187,9 +47498,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: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: true content: @@ -47256,9 +47567,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '202': description: Response @@ -47291,9 +47602,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-jobs#list-jobs-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 - 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 @@ -47323,9 +47634,9 @@ paths: type: integer jobs: type: array - items: *306 + items: *309 examples: - default: *307 + default: *310 headers: Link: *57 x-github: @@ -47350,9 +47661,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '302': description: Response @@ -47379,9 +47690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '204': description: Response @@ -47408,9 +47719,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-pending-deployments-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '200': description: Response @@ -47479,7 +47790,7 @@ paths: items: type: object properties: - type: &419 + type: &422 type: string description: The type of reviewer. enum: @@ -47565,9 +47876,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#review-pending-deployments-for-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: true content: @@ -47617,7 +47928,7 @@ paths: application/json: schema: type: array - items: &414 + items: &417 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -47729,7 +48040,7 @@ paths: - created_at - updated_at examples: - default: &415 + default: &418 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -47785,9 +48096,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-a-workflow parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: false content: @@ -47832,9 +48143,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#re-run-failed-jobs-from-a-workflow-run parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 requestBody: required: false content: @@ -47888,9 +48199,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *262 - - *263 - - *301 + - *265 + - *266 + - *304 responses: '200': description: Response @@ -48027,8 +48338,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-repository-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -48046,9 +48357,9 @@ paths: type: integer secrets: type: array - items: *308 + items: *311 examples: - default: *309 + default: *312 headers: Link: *57 x-github: @@ -48073,16 +48384,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-public-key parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *310 + schema: *313 examples: - default: *311 + default: *314 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -48104,17 +48415,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '200': description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: &432 + default: &435 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -48140,8 +48451,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 requestBody: required: true @@ -48199,8 +48510,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '204': @@ -48226,9 +48537,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-repository-variables parameters: - - *262 - - *263 - - *284 + - *265 + - *266 + - *287 - *19 responses: '200': @@ -48245,9 +48556,9 @@ paths: type: integer variables: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 headers: Link: *57 x-github: @@ -48270,8 +48581,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -48323,17 +48634,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 responses: '200': description: Response content: application/json: - schema: *312 + schema: *315 examples: - default: &433 + default: &436 value: name: USERNAME value: octocat @@ -48359,8 +48670,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 requestBody: required: true @@ -48403,8 +48714,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-a-repository-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 responses: '204': @@ -48430,8 +48741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#list-repository-workflows parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -48449,7 +48760,7 @@ paths: type: integer workflows: type: array - items: &314 + items: &317 title: Workflow description: A GitHub Actions workflow type: object @@ -48567,9 +48878,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-a-workflow parameters: - - *262 - - *263 - - &315 + - *265 + - *266 + - &318 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -48584,7 +48895,7 @@ paths: description: Response content: application/json: - schema: *314 + schema: *317 examples: default: value: @@ -48617,9 +48928,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#disable-a-workflow parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '204': description: Response @@ -48644,9 +48955,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '204': description: Response @@ -48697,9 +49008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#enable-a-workflow parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '204': description: Response @@ -48726,19 +49037,19 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflow-runs#list-workflow-runs-for-a-workflow parameters: - - *262 - - *263 - - *315 - - *316 - - *317 + - *265 + - *266 - *318 - *319 - - *17 - - *19 - *320 - - *299 - *321 - *322 + - *17 + - *19 + - *323 + - *302 + - *324 + - *325 responses: '200': description: Response @@ -48754,9 +49065,9 @@ paths: type: integer workflow_runs: type: array - items: *300 + items: *303 examples: - default: *323 + default: *326 headers: Link: *57 x-github: @@ -48788,9 +49099,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/workflows#get-workflow-usage parameters: - - *262 - - *263 - - *315 + - *265 + - *266 + - *318 responses: '200': description: Response @@ -48851,8 +49162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-activities parameters: - - *262 - - *263 + - *265 + - *266 - *46 - *17 - *37 @@ -49020,8 +49331,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#list-assignees parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -49033,7 +49344,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '404': *6 @@ -49058,8 +49369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#check-if-a-user-can-be-assigned parameters: - - *262 - - *263 + - *265 + - *266 - name: assignee in: path required: true @@ -49095,8 +49406,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-an-attestation parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -49208,8 +49519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-attestations parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *37 - *38 @@ -49263,7 +49574,7 @@ paths: bundle_url: type: string examples: - default: *324 + default: *327 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -49283,8 +49594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -49292,7 +49603,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 title: Autolink reference description: An autolink reference. type: object @@ -49346,8 +49657,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#create-an-autolink-reference-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -49386,9 +49697,9 @@ paths: description: response content: application/json: - schema: *325 + schema: *328 examples: - default: &326 + default: &329 value: id: 1 key_prefix: TICKET- @@ -49419,9 +49730,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#get-an-autolink-reference-of-a-repository parameters: - - *262 - - *263 - - &327 + - *265 + - *266 + - &330 name: autolink_id description: The unique identifier of the autolink. in: path @@ -49433,9 +49744,9 @@ paths: description: Response content: application/json: - schema: *325 + schema: *328 examples: - default: *326 + default: *329 '404': *6 x-github: githubCloudOnly: false @@ -49455,9 +49766,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/autolinks#delete-an-autolink-reference-from-a-repository parameters: - - *262 - - *263 - - *327 + - *265 + - *266 + - *330 responses: '204': description: Response @@ -49481,8 +49792,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response if Dependabot is enabled @@ -49532,8 +49843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-dependabot-security-updates parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -49554,8 +49865,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-dependabot-security-updates parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -49575,8 +49886,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#list-branches parameters: - - *262 - - *263 + - *265 + - *266 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -49614,7 +49925,7 @@ paths: - url protected: type: boolean - protection: &329 + protection: &332 title: Branch Protection description: Branch Protection type: object @@ -49657,7 +49968,7 @@ paths: required: - contexts - checks - enforce_admins: &332 + enforce_admins: &335 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -49674,7 +49985,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &334 + required_pull_request_reviews: &337 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -49758,7 +50069,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &331 + restrictions: &334 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -50083,9 +50394,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#get-a-branch parameters: - - *262 - - *263 - - &330 + - *265 + - *266 + - &333 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). @@ -50099,14 +50410,14 @@ paths: description: Response content: application/json: - schema: &340 + schema: &343 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &390 + commit: &393 title: Commit description: Commit type: object @@ -50145,7 +50456,7 @@ paths: author: anyOf: - type: 'null' - - &328 + - &331 title: Git User description: Metaproperties for Git author/committer information. @@ -50166,7 +50477,7 @@ paths: committer: anyOf: - type: 'null' - - *328 + - *331 message: type: string examples: @@ -50190,7 +50501,7 @@ paths: required: - sha - url - verification: &439 + verification: &442 title: Verification type: object properties: @@ -50270,7 +50581,7 @@ paths: type: integer files: type: array - items: &402 + items: &405 title: Diff Entry description: Diff Entry type: object @@ -50364,7 +50675,7 @@ paths: - self protected: type: boolean - protection: *329 + protection: *332 protection_url: type: string format: uri @@ -50473,7 +50784,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *274 + '301': *277 '404': *6 x-github: githubCloudOnly: false @@ -50495,15 +50806,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *329 + schema: *332 examples: default: value: @@ -50697,9 +51008,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -50959,7 +51270,7 @@ paths: url: type: string format: uri - required_status_checks: &337 + required_status_checks: &340 title: Status Check Policy description: Status Check Policy type: object @@ -51118,7 +51429,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *331 + restrictions: *334 required_conversation_resolution: type: object properties: @@ -51230,9 +51541,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51257,17 +51568,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-admin-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: &333 + default: &336 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -51289,17 +51600,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-admin-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *333 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51318,9 +51629,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51345,17 +51656,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: &335 + default: &338 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -51451,9 +51762,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -51551,9 +51862,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 '422': *15 x-github: githubCloudOnly: false @@ -51574,9 +51885,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51603,17 +51914,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-commit-signature-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: &336 + default: &339 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -51636,17 +51947,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#create-commit-signature-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *336 + default: *339 '404': *6 x-github: githubCloudOnly: false @@ -51666,9 +51977,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51693,17 +52004,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-status-checks-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: &338 + default: &341 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -51729,9 +52040,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#update-status-check-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -51783,9 +52094,9 @@ paths: description: Response content: application/json: - schema: *337 + schema: *340 examples: - default: *338 + default: *341 '404': *6 '422': *15 x-github: @@ -51807,9 +52118,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-protection parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -51833,9 +52144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -51869,9 +52180,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -51938,9 +52249,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -52004,9 +52315,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-status-check-contexts parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: content: application/json: @@ -52072,15 +52383,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response content: application/json: - schema: *331 + schema: *334 examples: default: value: @@ -52171,9 +52482,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#delete-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '204': description: Response @@ -52196,9 +52507,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-apps-with-access-to-the-protected-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -52208,7 +52519,7 @@ paths: type: array items: *5 examples: - default: &339 + default: &342 value: - id: 1 slug: octoapp @@ -52265,9 +52576,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-app-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52301,7 +52612,7 @@ paths: type: array items: *5 examples: - default: *339 + default: *342 '422': *15 x-github: githubCloudOnly: false @@ -52322,9 +52633,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-app-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52358,7 +52669,7 @@ paths: type: array items: *5 examples: - default: *339 + default: *342 '422': *15 x-github: githubCloudOnly: false @@ -52379,9 +52690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52415,7 +52726,7 @@ paths: type: array items: *5 examples: - default: *339 + default: *342 '422': *15 x-github: githubCloudOnly: false @@ -52437,9 +52748,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-teams-with-access-to-the-protected-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -52449,7 +52760,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '404': *6 x-github: githubCloudOnly: false @@ -52469,9 +52780,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-team-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -52509,7 +52820,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '422': *15 x-github: githubCloudOnly: false @@ -52530,9 +52841,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-team-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: false content: @@ -52570,7 +52881,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '422': *15 x-github: githubCloudOnly: false @@ -52591,9 +52902,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: content: application/json: @@ -52630,7 +52941,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 '422': *15 x-github: githubCloudOnly: false @@ -52652,9 +52963,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#get-users-with-access-to-the-protected-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 responses: '200': description: Response @@ -52664,7 +52975,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '404': *6 x-github: githubCloudOnly: false @@ -52688,9 +52999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#add-user-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52723,7 +53034,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '422': *15 x-github: githubCloudOnly: false @@ -52748,9 +53059,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#set-user-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52783,7 +53094,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '422': *15 x-github: githubCloudOnly: false @@ -52808,9 +53119,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52843,7 +53154,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '422': *15 x-github: githubCloudOnly: false @@ -52870,9 +53181,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#rename-a-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 requestBody: required: true content: @@ -52894,7 +53205,7 @@ paths: description: Response content: application/json: - schema: *340 + schema: *343 examples: default: value: @@ -53010,8 +53321,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#create-a-check-run parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -53290,7 +53601,7 @@ paths: description: Response content: application/json: - schema: &342 + schema: &345 title: CheckRun description: A check performed on the code of a given code change type: object @@ -53425,8 +53736,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *341 - deployment: &625 + items: *344 + deployment: &628 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -53713,9 +54024,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#get-a-check-run parameters: - - *262 - - *263 - - &343 + - *265 + - *266 + - &346 name: check_run_id description: The unique identifier of the check run. in: path @@ -53727,9 +54038,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: &344 + default: &347 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -53829,9 +54140,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#update-a-check-run parameters: - - *262 - - *263 - - *343 + - *265 + - *266 + - *346 requestBody: required: true content: @@ -54071,9 +54382,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *344 + default: *347 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54093,9 +54404,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-run-annotations parameters: - - *262 - - *263 - - *343 + - *265 + - *266 + - *346 - *17 - *19 responses: @@ -54207,9 +54518,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#rerequest-a-check-run parameters: - - *262 - - *263 - - *343 + - *265 + - *266 + - *346 responses: '201': description: Response @@ -54253,8 +54564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#create-a-check-suite parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -54276,7 +54587,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &346 + schema: &349 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -54358,7 +54669,7 @@ paths: type: - array - 'null' - items: *341 + items: *344 app: anyOf: - type: 'null' @@ -54374,7 +54685,7 @@ paths: - string - 'null' format: date-time - head_commit: *345 + head_commit: *348 latest_check_runs_count: type: integer check_runs_url: @@ -54402,7 +54713,7 @@ paths: - check_runs_url - pull_requests examples: - default: &347 + default: &350 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -54693,9 +55004,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *346 + schema: *349 examples: - default: *347 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54714,8 +55025,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -55024,9 +55335,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#get-a-check-suite parameters: - - *262 - - *263 - - &348 + - *265 + - *266 + - &351 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -55038,9 +55349,9 @@ paths: description: Response content: application/json: - schema: *346 + schema: *349 examples: - default: *347 + default: *350 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -55063,17 +55374,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-in-a-check-suite parameters: - - *262 - - *263 - - *348 - - &397 + - *265 + - *266 + - *351 + - &400 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &398 + - &401 name: status description: Returns check runs with the specified `status`. in: query @@ -55112,9 +55423,9 @@ paths: type: integer check_runs: type: array - items: *342 + items: *345 examples: - default: &399 + default: &402 value: total_count: 1 check_runs: @@ -55216,9 +55527,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#rerequest-a-check-suite parameters: - - *262 - - *263 - - *348 + - *265 + - *266 + - *351 responses: '201': description: Response @@ -55251,21 +55562,21 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-alerts-for-a-repository parameters: - - *262 - - *263 - - *349 - - *350 + - *265 + - *266 + - *352 + - *353 - *19 - *17 - - &367 + - &370 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: *351 - - &368 + schema: *354 + - &371 name: pr description: The number of the pull request for the results you want to list. in: query @@ -55290,13 +55601,13 @@ paths: be returned. in: query required: false - schema: *352 + schema: *355 - name: severity description: If specified, only code scanning alerts with this severity will be returned. in: query required: false - schema: *353 + schema: *356 responses: '200': description: Response @@ -55312,7 +55623,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *354 + instances_url: *357 state: *133 fixed_at: *129 dismissed_by: @@ -55320,11 +55631,11 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *355 - dismissed_comment: *356 - rule: *357 - tool: *358 - most_recent_instance: *359 + dismissed_reason: *358 + dismissed_comment: *359 + rule: *360 + tool: *361 + most_recent_instance: *362 dismissal_approved_by: anyOf: - type: 'null' @@ -55444,7 +55755,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &360 + '403': &363 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -55471,9 +55782,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-alert parameters: - - *262 - - *263 - - &361 + - *265 + - *266 + - &364 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -55487,7 +55798,7 @@ paths: description: Response content: application/json: - schema: &362 + schema: &365 type: object properties: number: *52 @@ -55495,7 +55806,7 @@ paths: updated_at: *54 url: *55 html_url: *56 - instances_url: *354 + instances_url: *357 state: *133 fixed_at: *129 dismissed_by: @@ -55503,8 +55814,8 @@ paths: - type: 'null' - *4 dismissed_at: *130 - dismissed_reason: *355 - dismissed_comment: *356 + dismissed_reason: *358 + dismissed_comment: *359 rule: type: object properties: @@ -55566,8 +55877,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *358 - most_recent_instance: *359 + tool: *361 + most_recent_instance: *362 dismissal_approved_by: anyOf: - type: 'null' @@ -55660,7 +55971,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -55680,9 +55991,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 requestBody: required: true content: @@ -55697,8 +56008,8 @@ paths: enum: - open - dismissed - dismissed_reason: *355 - dismissed_comment: *356 + dismissed_reason: *358 + dismissed_comment: *359 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -55717,7 +56028,7 @@ paths: description: Response content: application/json: - schema: *362 + schema: *365 examples: default: value: @@ -55793,7 +56104,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &366 + '403': &369 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -55820,15 +56131,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: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 responses: '200': description: Response content: application/json: - schema: &363 + schema: &366 type: object properties: status: @@ -55855,13 +56166,13 @@ paths: - description - started_at examples: - default: &364 + default: &367 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &365 + '400': &368 description: Bad Request content: application/json: @@ -55872,7 +56183,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': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -55897,29 +56208,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: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 responses: '200': description: OK content: application/json: - schema: *363 + schema: *366 examples: - default: *364 + default: *367 '202': description: Accepted content: application/json: - schema: *363 + schema: *366 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *365 + '400': *368 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -55951,9 +56262,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: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 requestBody: required: false content: @@ -55999,8 +56310,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *365 - '403': *366 + '400': *368 + '403': *369 '404': *6 '422': description: Unprocessable Entity @@ -56024,13 +56335,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-instances-of-a-code-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 - *19 - *17 - - *367 - - *368 + - *370 + - *371 responses: '200': description: Response @@ -56038,7 +56349,7 @@ paths: application/json: schema: type: array - items: *359 + items: *362 examples: default: value: @@ -56077,7 +56388,7 @@ paths: end_column: 50 classifications: - source - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56111,25 +56422,25 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-code-scanning-analyses-for-a-repository parameters: - - *262 - - *263 - - *349 - - *350 + - *265 + - *266 + - *352 + - *353 - *19 - *17 - - *368 + - *371 - 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: *351 + schema: *354 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &371 + schema: &374 type: string description: An identifier for the upload. examples: @@ -56151,23 +56462,23 @@ paths: application/json: schema: type: array - items: &372 + items: &375 type: object properties: - ref: *351 - commit_sha: &380 + ref: *354 + commit_sha: &383 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *369 + analysis_key: *372 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *370 + category: *373 error: type: string examples: @@ -56192,8 +56503,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *371 - tool: *358 + sarif_id: *374 + tool: *361 deletable: type: boolean warning: @@ -56255,7 +56566,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56291,8 +56602,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: - - *262 - - *263 + - *265 + - *266 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56305,7 +56616,7 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: response: summary: application/json response @@ -56359,7 +56670,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56441,8 +56752,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: - - *262 - - *263 + - *265 + - *266 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -56498,7 +56809,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': *366 + '403': *369 '404': *6 '503': *62 x-github: @@ -56520,8 +56831,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#list-codeql-databases-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -56529,7 +56840,7 @@ paths: application/json: schema: type: array - items: &373 + items: &376 title: CodeQL Database description: A CodeQL database. type: object @@ -56641,7 +56952,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': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56670,8 +56981,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-codeql-database-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: language in: path description: The language of the CodeQL database. @@ -56683,7 +56994,7 @@ paths: description: Response content: application/json: - schema: *373 + schema: *376 examples: default: value: @@ -56715,9 +57026,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': &404 + '302': &407 description: Found - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -56739,8 +57050,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *262 - - *263 + - *265 + - *266 - name: language in: path description: The language of the CodeQL database. @@ -56750,7 +57061,7 @@ paths: responses: '204': description: Response - '403': *366 + '403': *369 '404': *6 '503': *62 x-github: @@ -56778,8 +57089,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#create-a-codeql-variant-analysis parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -56788,7 +57099,7 @@ paths: type: object additionalProperties: false properties: - language: &374 + language: &377 type: string description: The language targeted by the CodeQL query enum: @@ -56866,7 +57177,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &378 + schema: &381 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -56876,7 +57187,7 @@ paths: description: The ID of the variant analysis. controller_repo: *51 actor: *4 - query_language: *374 + query_language: *377 query_pack_url: type: string description: The download url for the query pack. @@ -56924,7 +57235,7 @@ paths: items: type: object properties: - repository: &375 + repository: &378 title: Repository Identifier description: Repository Identifier type: object @@ -56966,7 +57277,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &379 + analysis_status: &382 type: string description: The new status of the CodeQL variant analysis repository task. @@ -56998,7 +57309,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &376 + access_mismatch_repos: &379 type: object properties: repository_count: @@ -57013,7 +57324,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: *375 + items: *378 required: - repository_count - repositories @@ -57036,8 +57347,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *376 - over_limit_repos: *376 + no_codeql_db_repos: *379 + over_limit_repos: *379 required: - access_mismatch_repos - not_found_repos @@ -57053,7 +57364,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &377 + value: &380 summary: Default response value: id: 1 @@ -57205,10 +57516,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *377 + value: *380 repository_lists: summary: Response for a successful variant analysis submission - value: *377 + value: *380 '404': *6 '422': description: Unable to process variant analysis submission @@ -57236,8 +57547,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: - - *262 - - *263 + - *265 + - *266 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -57249,9 +57560,9 @@ paths: description: Response content: application/json: - schema: *378 + schema: *381 examples: - default: *377 + default: *380 '404': *6 '503': *62 x-github: @@ -57274,7 +57585,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: - - *262 + - *265 - name: repo in: path description: The name of the controller repository. @@ -57309,7 +57620,7 @@ paths: type: object properties: repository: *51 - analysis_status: *379 + analysis_status: *382 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -57434,8 +57745,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-a-code-scanning-default-setup-configuration parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -57517,7 +57828,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *360 + '403': *363 '404': *6 '503': *62 x-github: @@ -57538,8 +57849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#update-a-code-scanning-default-setup-configuration parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -57623,7 +57934,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *366 + '403': *369 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -57688,8 +57999,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#upload-an-analysis-as-sarif-data parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -57697,7 +58008,7 @@ paths: schema: type: object properties: - commit_sha: *380 + commit_sha: *383 ref: type: string description: |- @@ -57757,7 +58068,7 @@ paths: schema: type: object properties: - id: *371 + id: *374 url: type: string description: The REST API URL for checking the status of the upload. @@ -57771,7 +58082,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': *366 + '403': *369 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -57794,8 +58105,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/code-scanning/code-scanning#get-information-about-a-sarif-upload parameters: - - *262 - - *263 + - *265 + - *266 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -57843,7 +58154,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': *360 + '403': *363 '404': description: Not Found if the sarif id does not match any upload '503': *62 @@ -57868,8 +58179,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -57950,8 +58261,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-codeowners-errors parameters: - - *262 - - *263 + - *265 + - *266 - 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 @@ -58079,8 +58390,8 @@ paths: parameters: - *17 - *19 - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -58096,7 +58407,7 @@ paths: type: integer codespaces: type: array - items: *184 + items: *187 examples: default: value: @@ -58394,8 +58705,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -58459,17 +58770,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '400': *14 '401': *23 '403': *27 @@ -58498,8 +58809,8 @@ paths: parameters: - *17 - *19 - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -58563,8 +58874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-available-machine-types-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -58601,9 +58912,9 @@ paths: type: integer machines: type: array - items: *382 + items: *385 examples: - default: &583 + default: &586 value: total_count: 2 machines: @@ -58643,8 +58954,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *262 - - *263 + - *265 + - *266 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -58731,8 +59042,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: - - *262 - - *263 + - *265 + - *266 - 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 @@ -58801,8 +59112,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -58820,7 +59131,7 @@ paths: type: integer secrets: type: array - items: &386 + items: &389 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -58841,7 +59152,7 @@ paths: - created_at - updated_at examples: - default: *383 + default: *386 headers: Link: *57 x-github: @@ -58864,16 +59175,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *384 + schema: *387 examples: - default: *385 + default: *388 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -58893,17 +59204,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '200': description: Response content: application/json: - schema: *386 + schema: *389 examples: - default: *387 + default: *390 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -58923,8 +59234,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#create-or-update-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 requestBody: required: true @@ -58977,8 +59288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '204': @@ -59007,8 +59318,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#list-repository-collaborators parameters: - - *262 - - *263 + - *265 + - *266 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -59046,7 +59357,7 @@ paths: application/json: schema: type: array - items: &388 + items: &391 title: Collaborator description: Collaborator type: object @@ -59239,8 +59550,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#check-if-a-user-is-a-repository-collaborator parameters: - - *262 - - *263 + - *265 + - *266 - *128 responses: '204': @@ -59283,8 +59594,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *262 - - *263 + - *265 + - *266 - *128 requestBody: required: false @@ -59311,7 +59622,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &452 + schema: &455 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -59532,8 +59843,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *262 - - *263 + - *265 + - *266 - *128 responses: '204': @@ -59563,8 +59874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *262 - - *263 + - *265 + - *266 - *128 responses: '200': @@ -59585,7 +59896,7 @@ paths: user: anyOf: - type: 'null' - - *388 + - *391 required: - permission - role_name @@ -59639,8 +59950,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -59650,7 +59961,7 @@ paths: application/json: schema: type: array - items: &389 + items: &392 title: Commit Comment description: Commit Comment type: object @@ -59708,7 +60019,7 @@ paths: - created_at - updated_at examples: - default: &392 + default: &395 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59767,17 +60078,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#get-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '200': description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: &393 + default: &396 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -59834,8 +60145,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#update-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -59858,7 +60169,7 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: default: value: @@ -59909,8 +60220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#delete-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '204': @@ -59932,8 +60243,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -59960,9 +60271,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -59983,8 +60294,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -60017,16 +60328,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -60048,10 +60359,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *262 - - *263 + - *265 + - *266 - *73 - - *258 + - *261 responses: '204': description: Response @@ -60100,8 +60411,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-commits parameters: - - *262 - - *263 + - *265 + - *266 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -60157,9 +60468,9 @@ paths: application/json: schema: type: array - items: *390 + items: *393 examples: - default: &500 + default: &503 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -60253,9 +60564,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-branches-for-head-commit parameters: - - *262 - - *263 - - &391 + - *265 + - *266 + - &394 name: commit_sha description: The SHA of the commit. in: path @@ -60327,9 +60638,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#list-commit-comments parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 - *17 - *19 responses: @@ -60339,9 +60650,9 @@ paths: application/json: schema: type: array - items: *389 + items: *392 examples: - default: *392 + default: *395 headers: Link: *57 x-github: @@ -60369,9 +60680,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/comments#create-a-commit-comment parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 requestBody: required: true content: @@ -60406,9 +60717,9 @@ paths: description: Response content: application/json: - schema: *389 + schema: *392 examples: - default: *393 + default: *396 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -60436,9 +60747,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#list-pull-requests-associated-with-a-commit parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 - *17 - *19 responses: @@ -60448,7 +60759,7 @@ paths: application/json: schema: type: array - items: &491 + items: &494 title: Pull Request Simple description: Pull Request Simple type: object @@ -60568,7 +60879,7 @@ paths: milestone: anyOf: - type: 'null' - - *394 + - *397 active_lock_reason: type: - string @@ -60667,7 +60978,7 @@ paths: _links: type: object properties: - comments: &395 + comments: &398 title: Link description: Hypermedia Link type: object @@ -60676,13 +60987,13 @@ paths: type: string required: - href - commits: *395 - statuses: *395 - html: *395 - issue: *395 - review_comments: *395 - review_comment: *395 - self: *395 + commits: *398 + statuses: *398 + html: *398 + issue: *398 + review_comments: *398 + review_comment: *398 + self: *398 required: - comments - commits @@ -60693,7 +61004,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: &493 + auto_merge: &496 title: Auto merge description: The status of auto merging a pull request. type: @@ -60758,7 +61069,7 @@ paths: - author_association - auto_merge examples: - default: &492 + default: &495 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -61295,11 +61606,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#get-a-commit parameters: - - *262 - - *263 + - *265 + - *266 - *19 - *17 - - &396 + - &399 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)" @@ -61314,9 +61625,9 @@ paths: description: Response content: application/json: - schema: *390 + schema: *393 examples: - default: &479 + default: &482 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -61429,11 +61740,11 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/runs#list-check-runs-for-a-git-reference parameters: - - *262 - - *263 - - *396 - - *397 - - *398 + - *265 + - *266 + - *399 + - *400 + - *401 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -61467,9 +61778,9 @@ paths: type: integer check_runs: type: array - items: *342 + items: *345 examples: - default: *399 + default: *402 headers: Link: *57 x-github: @@ -61494,9 +61805,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/checks/suites#list-check-suites-for-a-git-reference parameters: - - *262 - - *263 - - *396 + - *265 + - *266 + - *399 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -61504,7 +61815,7 @@ paths: schema: type: integer example: 1 - - *397 + - *400 - *17 - *19 responses: @@ -61522,7 +61833,7 @@ paths: type: integer check_suites: type: array - items: *346 + items: *349 examples: default: value: @@ -61722,9 +62033,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#get-the-combined-status-for-a-specific-reference parameters: - - *262 - - *263 - - *396 + - *265 + - *266 + - *399 - *17 - *19 responses: @@ -61926,9 +62237,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *262 - - *263 - - *396 + - *265 + - *266 + - *399 - *17 - *19 responses: @@ -61938,7 +62249,7 @@ paths: application/json: schema: type: array - items: &557 + items: &560 title: Status description: The status of a commit. type: object @@ -62019,7 +62330,7 @@ paths: site_admin: false headers: Link: *57 - '301': *274 + '301': *277 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62047,8 +62358,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/community#get-community-profile-metrics parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -62081,11 +62392,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *400 + - *403 code_of_conduct_file: anyOf: - type: 'null' - - &401 + - &404 title: Community Health File type: object properties: @@ -62105,19 +62416,19 @@ paths: contributing: anyOf: - type: 'null' - - *401 + - *404 readme: anyOf: - type: 'null' - - *401 + - *404 issue_template: anyOf: - type: 'null' - - *401 + - *404 pull_request_template: anyOf: - type: 'null' - - *401 + - *404 required: - code_of_conduct - code_of_conduct_file @@ -62246,8 +62557,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/commits#compare-two-commits parameters: - - *262 - - *263 + - *265 + - *266 - *19 - *17 - name: basehead @@ -62295,8 +62606,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *390 - merge_base_commit: *390 + base_commit: *393 + merge_base_commit: *393 status: type: string enum: @@ -62320,10 +62631,10 @@ paths: - 6 commits: type: array - items: *390 + items: *393 files: type: array - items: *402 + items: *405 required: - url - html_url @@ -62609,8 +62920,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-repository-content parameters: - - *262 - - *263 + - *265 + - *266 - name: path description: path parameter in: path @@ -62761,7 +63072,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &403 + response-if-content-is-a-file: &406 summary: Response if content is a file value: type: file @@ -62898,7 +63209,7 @@ paths: - size - type - url - - &505 + - &508 title: Content File description: Content File type: object @@ -63116,7 +63427,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *403 + response-if-content-is-a-file: *406 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -63185,7 +63496,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *404 + '302': *407 '304': *35 x-github: githubCloudOnly: false @@ -63208,8 +63519,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#create-or-update-file-contents parameters: - - *262 - - *263 + - *265 + - *266 - name: path description: path parameter in: path @@ -63304,7 +63615,7 @@ paths: description: Response content: application/json: - schema: &405 + schema: &408 title: File Commit description: File Commit type: object @@ -63460,7 +63771,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: example-for-creating-a-file: value: @@ -63514,7 +63825,7 @@ paths: schema: oneOf: - *3 - - &434 + - &437 description: Repository rule violation was detected type: object properties: @@ -63535,7 +63846,7 @@ paths: items: type: object properties: - placeholder_id: &549 + placeholder_id: &552 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -63567,8 +63878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#delete-a-file parameters: - - *262 - - *263 + - *265 + - *266 - name: path description: path parameter in: path @@ -63629,7 +63940,7 @@ paths: description: Response content: application/json: - schema: *405 + schema: *408 examples: default: value: @@ -63684,8 +63995,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-contributors parameters: - - *262 - - *263 + - *265 + - *266 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -63809,8 +64120,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *143 - *144 - *145 @@ -63852,7 +64163,7 @@ paths: application/json: schema: type: array - items: &408 + items: &411 type: object description: A Dependabot alert. properties: @@ -63902,7 +64213,7 @@ paths: - direct - transitive - - security_advisory: *406 + security_advisory: *409 security_vulnerability: *50 url: *55 html_url: *56 @@ -63933,7 +64244,7 @@ paths: dismissal. maxLength: 280 fixed_at: *129 - auto_dismissed_at: *407 + auto_dismissed_at: *410 required: - number - state @@ -64163,9 +64474,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *262 - - *263 - - &409 + - *265 + - *266 + - &412 name: alert_number in: path description: |- @@ -64180,7 +64491,7 @@ paths: description: Response content: application/json: - schema: *408 + schema: *411 examples: default: value: @@ -64293,9 +64604,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *262 - - *263 - - *409 + - *265 + - *266 + - *412 requestBody: required: true content: @@ -64340,7 +64651,7 @@ paths: description: Response content: application/json: - schema: *408 + schema: *411 examples: default: value: @@ -64469,8 +64780,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#list-repository-secrets parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -64488,7 +64799,7 @@ paths: type: integer secrets: type: array - items: &412 + items: &415 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -64542,16 +64853,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-public-key parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *410 + schema: *413 examples: - default: *411 + default: *414 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -64571,15 +64882,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#get-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '200': description: Response content: application/json: - schema: *412 + schema: *415 examples: default: value: @@ -64605,8 +64916,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 requestBody: required: true @@ -64659,8 +64970,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/dependabot/secrets#delete-a-repository-secret parameters: - - *262 - - *263 + - *265 + - *266 - *123 responses: '204': @@ -64683,8 +64994,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: - - *262 - - *263 + - *265 + - *266 - 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 @@ -64858,8 +65169,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -65119,8 +65430,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -65203,7 +65514,7 @@ paths: - version - url additionalProperties: false - metadata: &413 + metadata: &416 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -65242,7 +65553,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *413 + metadata: *416 resolved: type: object description: A collection of resolved package dependencies. @@ -65256,7 +65567,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *413 + metadata: *416 relationship: type: string description: A notation of whether a dependency is requested @@ -65389,8 +65700,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#list-deployments parameters: - - *262 - - *263 + - *265 + - *266 - name: sha description: The SHA recorded at creation time. in: query @@ -65431,9 +65742,9 @@ paths: application/json: schema: type: array - items: *414 + items: *417 examples: - default: *415 + default: *418 headers: Link: *57 x-github: @@ -65499,8 +65810,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#create-a-deployment parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -65582,7 +65893,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *417 examples: simple-example: summary: Simple example @@ -65655,9 +65966,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#get-a-deployment parameters: - - *262 - - *263 - - &416 + - *265 + - *266 + - &419 name: deployment_id description: deployment_id parameter in: path @@ -65669,7 +65980,7 @@ paths: description: Response content: application/json: - schema: *414 + schema: *417 examples: default: value: @@ -65734,9 +66045,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/deployments#delete-a-deployment parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 responses: '204': description: Response @@ -65758,9 +66069,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#list-deployment-statuses parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 - *17 - *19 responses: @@ -65770,7 +66081,7 @@ paths: application/json: schema: type: array - items: &417 + items: &420 title: Deployment Status description: The status of a deployment. type: object @@ -65934,9 +66245,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#create-a-deployment-status parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 requestBody: required: true content: @@ -66011,9 +66322,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *420 examples: - default: &418 + default: &421 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -66069,9 +66380,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/statuses#get-a-deployment-status parameters: - - *262 - - *263 - - *416 + - *265 + - *266 + - *419 - name: status_id in: path required: true @@ -66082,9 +66393,9 @@ paths: description: Response content: application/json: - schema: *417 + schema: *420 examples: - default: *418 + default: *421 '404': *6 x-github: githubCloudOnly: false @@ -66109,8 +66420,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#create-a-repository-dispatch-event parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -66167,8 +66478,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#list-environments parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -66186,7 +66497,7 @@ paths: - 5 environments: type: array - items: &420 + items: &423 title: Environment description: Details of a deployment environment type: object @@ -66248,7 +66559,7 @@ paths: type: string examples: - wait_timer - wait_timer: &422 + wait_timer: &425 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -66290,7 +66601,7 @@ paths: items: type: object properties: - type: *419 + type: *422 reviewer: anyOf: - *4 @@ -66317,7 +66628,7 @@ paths: - id - node_id - type - deployment_branch_policy: &423 + deployment_branch_policy: &426 type: - object - 'null' @@ -66434,9 +66745,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#get-an-environment parameters: - - *262 - - *263 - - &421 + - *265 + - *266 + - &424 name: environment_name in: path required: true @@ -66449,9 +66760,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: &424 + default: &427 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -66535,9 +66846,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#create-or-update-an-environment parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 requestBody: required: false content: @@ -66547,7 +66858,7 @@ paths: - object - 'null' properties: - wait_timer: *422 + wait_timer: *425 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -66566,14 +66877,14 @@ paths: items: type: object properties: - type: *419 + type: *422 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *423 + deployment_branch_policy: *426 additionalProperties: false examples: default: @@ -66593,9 +66904,9 @@ paths: description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: *424 + default: *427 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -66619,9 +66930,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/environments#delete-an-environment parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 responses: '204': description: Default response @@ -66646,9 +66957,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *17 - *19 responses: @@ -66667,7 +66978,7 @@ paths: - 2 branch_policies: type: array - items: &425 + items: &428 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -66728,9 +67039,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 requestBody: required: true content: @@ -66778,9 +67089,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - example-wildcard: &426 + example-wildcard: &429 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -66822,10 +67133,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 - - &427 + - *265 + - *266 + - *424 + - &430 name: branch_policy_id in: path required: true @@ -66837,9 +67148,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: *426 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66858,10 +67169,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 - - *427 + - *265 + - *266 + - *424 + - *430 requestBody: required: true content: @@ -66890,9 +67201,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: *426 + default: *429 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -66911,10 +67222,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *262 - - *263 - - *421 - - *427 + - *265 + - *266 + - *424 + - *430 responses: '204': description: Response @@ -66939,9 +67250,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-all-deployment-protection-rules-for-an-environment parameters: - - *421 - - *263 - - *262 + - *424 + - *266 + - *265 responses: '200': description: List of deployment protection rules @@ -66958,7 +67269,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &428 + items: &431 title: Deployment protection rule description: Deployment protection rule type: object @@ -66980,7 +67291,7 @@ paths: for the environment. examples: - true - app: &429 + app: &432 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -67083,9 +67394,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: - - *421 - - *263 - - *262 + - *424 + - *266 + - *265 requestBody: content: application/json: @@ -67106,9 +67417,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *428 + schema: *431 examples: - default: &430 + default: &433 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -67143,9 +67454,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: - - *421 - - *263 - - *262 + - *424 + - *266 + - *265 - *19 - *17 responses: @@ -67165,7 +67476,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *429 + items: *432 examples: default: value: @@ -67200,10 +67511,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#get-a-custom-deployment-protection-rule parameters: - - *262 - - *263 - - *421 - - &431 + - *265 + - *266 + - *424 + - &434 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -67215,9 +67526,9 @@ paths: description: Response content: application/json: - schema: *428 + schema: *431 examples: - default: *430 + default: *433 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67238,10 +67549,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/deployments/protection-rules#disable-a-custom-protection-rule-for-an-environment parameters: - - *421 - - *263 - - *262 - - *431 + - *424 + - *266 + - *265 + - *434 responses: '204': description: Response @@ -67267,9 +67578,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#list-environment-secrets parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *17 - *19 responses: @@ -67287,9 +67598,9 @@ paths: type: integer secrets: type: array - items: *308 + items: *311 examples: - default: *309 + default: *312 headers: Link: *57 x-github: @@ -67314,17 +67625,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-public-key parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 responses: '200': description: Response content: application/json: - schema: *310 + schema: *313 examples: - default: *311 + default: *314 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67346,18 +67657,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#get-an-environment-secret parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *123 responses: '200': description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: *432 + default: *435 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67379,9 +67690,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *123 requestBody: required: true @@ -67439,9 +67750,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/secrets#delete-an-environment-secret parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *123 responses: '204': @@ -67467,10 +67778,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#list-environment-variables parameters: - - *262 - - *263 - - *421 - - *284 + - *265 + - *266 + - *424 + - *287 - *19 responses: '200': @@ -67487,9 +67798,9 @@ paths: type: integer variables: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 headers: Link: *57 x-github: @@ -67512,9 +67823,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#create-an-environment-variable parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 requestBody: required: true content: @@ -67566,18 +67877,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#get-an-environment-variable parameters: - - *262 - - *263 - - *421 + - *265 + - *266 + - *424 - *126 responses: '200': description: Response content: application/json: - schema: *312 + schema: *315 examples: - default: *433 + default: *436 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67598,10 +67909,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#update-an-environment-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 - - *421 + - *424 requestBody: required: true content: @@ -67643,10 +67954,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/actions/variables#delete-an-environment-variable parameters: - - *262 - - *263 + - *265 + - *266 - *126 - - *421 + - *424 responses: '204': description: Response @@ -67668,8 +67979,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/events#list-repository-events parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -67746,8 +68057,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#list-forks parameters: - - *262 - - *263 + - *265 + - *266 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -67906,8 +68217,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/forks#create-a-fork parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -67940,9 +68251,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 '400': *14 '422': *15 '403': *27 @@ -67963,8 +68274,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#create-a-blob parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68024,7 +68335,7 @@ paths: schema: oneOf: - *93 - - *434 + - *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -68049,8 +68360,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/blobs#get-a-blob parameters: - - *262 - - *263 + - *265 + - *266 - name: file_sha in: path required: true @@ -68150,8 +68461,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#create-a-commit parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68260,7 +68571,7 @@ paths: description: Response content: application/json: - schema: &435 + schema: &438 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -68487,15 +68798,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/commits#get-a-commit-object parameters: - - *262 - - *263 - - *391 + - *265 + - *266 + - *394 responses: '200': description: Response content: application/json: - schema: *435 + schema: *438 examples: default: value: @@ -68551,9 +68862,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#list-matching-references parameters: - - *262 - - *263 - - &436 + - *265 + - *266 + - &439 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. @@ -68570,7 +68881,7 @@ paths: application/json: schema: type: array - items: &437 + items: &440 title: Git Reference description: Git references within a repository type: object @@ -68646,17 +68957,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#get-a-reference parameters: - - *262 - - *263 - - *436 + - *265 + - *266 + - *439 responses: '200': description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: &438 + default: &441 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -68685,8 +68996,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#create-a-reference parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68715,9 +69026,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: *438 + default: *441 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -68743,9 +69054,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#update-a-reference parameters: - - *262 - - *263 - - *436 + - *265 + - *266 + - *439 requestBody: required: true content: @@ -68774,9 +69085,9 @@ paths: description: Response content: application/json: - schema: *437 + schema: *440 examples: - default: *438 + default: *441 '422': *15 '409': *44 x-github: @@ -68794,9 +69105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/refs#delete-a-reference parameters: - - *262 - - *263 - - *436 + - *265 + - *266 + - *439 responses: '204': description: Response @@ -68849,8 +69160,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#create-a-tag-object parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -68917,7 +69228,7 @@ paths: description: Response content: application/json: - schema: &440 + schema: &443 title: Git Tag description: Metadata for a Git tag type: object @@ -68973,7 +69284,7 @@ paths: - sha - type - url - verification: *439 + verification: *442 required: - sha - url @@ -68983,7 +69294,7 @@ paths: - tag - message examples: - default: &441 + default: &444 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -69056,8 +69367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/tags#get-a-tag parameters: - - *262 - - *263 + - *265 + - *266 - name: tag_sha in: path required: true @@ -69068,9 +69379,9 @@ paths: description: Response content: application/json: - schema: *440 + schema: *443 examples: - default: *441 + default: *444 '404': *6 '409': *44 x-github: @@ -69094,8 +69405,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#create-a-tree parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -69169,7 +69480,7 @@ paths: description: Response content: application/json: - schema: &442 + schema: &445 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -69287,8 +69598,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/git/trees#get-a-tree parameters: - - *262 - - *263 + - *265 + - *266 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -69311,7 +69622,7 @@ paths: description: Response content: application/json: - schema: *442 + schema: *445 examples: default-response: summary: Default response @@ -69370,8 +69681,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-repository-webhooks parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -69381,7 +69692,7 @@ paths: application/json: schema: type: array - items: &443 + items: &446 title: Webhook description: Webhooks for repositories. type: object @@ -69444,7 +69755,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &656 + last_response: &659 title: Hook Response type: object properties: @@ -69521,8 +69832,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#create-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -69575,9 +69886,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: &444 + default: &447 value: type: Repository id: 12345678 @@ -69625,17 +69936,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '200': description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *444 + default: *447 '404': *6 x-github: githubCloudOnly: false @@ -69655,8 +69966,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 requestBody: required: true @@ -69702,9 +70013,9 @@ paths: description: Response content: application/json: - schema: *443 + schema: *446 examples: - default: *444 + default: *447 '422': *15 '404': *6 x-github: @@ -69725,8 +70036,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#delete-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '204': @@ -69751,8 +70062,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '200': @@ -69780,8 +70091,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *157 requestBody: required: false @@ -69826,8 +70137,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 - *17 - *158 @@ -69859,8 +70170,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 - *16 responses: @@ -69889,8 +70200,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 - *16 responses: @@ -69914,8 +70225,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#ping-a-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '204': @@ -69941,8 +70252,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *262 - - *263 + - *265 + - *266 - *157 responses: '204': @@ -70001,14 +70312,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-an-import-status parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: &445 + schema: &448 title: Import description: A repository import from an external source. type: object @@ -70115,7 +70426,7 @@ paths: - html_url - authors_url examples: - default: &448 + default: &451 value: vcs: subversion use_lfs: true @@ -70131,7 +70442,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': &446 + '503': &449 description: Unavailable due to service under maintenance. content: application/json: @@ -70160,8 +70471,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#start-an-import parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -70209,7 +70520,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: default: value: @@ -70234,7 +70545,7 @@ paths: type: string '422': *15 '404': *6 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70262,8 +70573,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-an-import parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -70315,7 +70626,7 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: example-1: summary: Example 1 @@ -70363,7 +70674,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': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70386,12 +70697,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#cancel-an-import parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70417,9 +70728,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-commit-authors parameters: - - *262 - - *263 - - &606 + - *265 + - *266 + - &609 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -70433,7 +70744,7 @@ paths: application/json: schema: type: array - items: &447 + items: &450 title: Porter Author description: Porter Author type: object @@ -70487,7 +70798,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': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70512,8 +70823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#map-a-commit-author parameters: - - *262 - - *263 + - *265 + - *266 - name: author_id in: path required: true @@ -70543,7 +70854,7 @@ paths: description: Response content: application/json: - schema: *447 + schema: *450 examples: default: value: @@ -70556,7 +70867,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70580,8 +70891,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#get-large-files parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -70622,7 +70933,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70650,8 +70961,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/source-imports#update-git-lfs-preference parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -70678,11 +70989,11 @@ paths: description: Response content: application/json: - schema: *445 + schema: *448 examples: - default: *448 + default: *451 '422': *15 - '503': *446 + '503': *449 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70705,8 +71016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/apps/apps#get-a-repository-installation-for-the-authenticated-app parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -70714,8 +71025,8 @@ paths: application/json: schema: *20 examples: - default: *449 - '301': *274 + default: *452 + '301': *277 '404': *6 x-github: githubCloudOnly: false @@ -70735,8 +71046,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -70749,7 +71060,7 @@ paths: properties: {} additionalProperties: false examples: - default: &451 + default: &454 value: limit: collaborators_only origin: repository @@ -70774,13 +71085,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: application/json: - schema: *450 + schema: *453 examples: default: summary: Example request body @@ -70794,7 +71105,7 @@ paths: application/json: schema: *175 examples: - default: *451 + default: *454 '409': description: Response x-github: @@ -70816,8 +71127,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -70840,8 +71151,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#list-repository-invitations parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -70851,9 +71162,9 @@ paths: application/json: schema: type: array - items: *452 + items: *455 examples: - default: &599 + default: &602 value: - id: 1 repository: @@ -70984,8 +71295,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#update-a-repository-invitation parameters: - - *262 - - *263 + - *265 + - *266 - *179 requestBody: required: false @@ -71015,7 +71326,7 @@ paths: description: Response content: application/json: - schema: *452 + schema: *455 examples: default: value: @@ -71146,8 +71457,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *262 - - *263 + - *265 + - *266 - *179 responses: '204': @@ -71179,8 +71490,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#list-repository-issues parameters: - - *262 - - *263 + - *265 + - *266 - 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 @@ -71208,6 +71519,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -71220,7 +71539,7 @@ paths: required: false schema: type: string - - *181 + - *184 - name: sort description: What to sort results by. in: query @@ -71245,7 +71564,7 @@ paths: type: array items: *74 examples: - default: &461 + default: &464 value: - id: 1 node_id: MDU6SXNzdWUx @@ -71393,7 +71712,7 @@ paths: state_reason: completed headers: Link: *57 - '301': *274 + '301': *277 '422': *15 '404': *6 x-github: @@ -71422,8 +71741,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#create-an-issue parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -71487,6 +71806,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -71506,7 +71832,7 @@ paths: application/json: schema: *74 examples: - default: &456 + default: &459 value: id: 1 node_id: MDU6SXNzdWUx @@ -71662,7 +71988,7 @@ paths: '422': *15 '503': *62 '404': *6 - '410': *271 + '410': *274 x-github: triggersNotification: true githubCloudOnly: false @@ -71690,8 +72016,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *83 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -71712,9 +72038,9 @@ paths: application/json: schema: type: array - items: *453 + items: *456 examples: - default: &458 + default: &461 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71772,17 +72098,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#get-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '200': description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: &454 + default: &457 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -71836,8 +72162,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#update-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -71860,9 +72186,9 @@ paths: description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: *454 + default: *457 '422': *15 x-github: githubCloudOnly: false @@ -71880,8 +72206,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#delete-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '204': @@ -71902,8 +72228,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -71930,9 +72256,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -71953,8 +72279,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -71987,16 +72313,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -72018,10 +72344,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *262 - - *263 + - *265 + - *266 - *73 - - *258 + - *261 responses: '204': description: Response @@ -72041,8 +72367,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -72052,7 +72378,7 @@ paths: application/json: schema: type: array - items: &455 + items: &458 title: Issue Event description: Issue Event type: object @@ -72391,8 +72717,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#get-an-issue-event parameters: - - *262 - - *263 + - *265 + - *266 - name: event_id in: path required: true @@ -72403,7 +72729,7 @@ paths: description: Response content: application/json: - schema: *455 + schema: *458 examples: default: value: @@ -72596,7 +72922,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *271 + '410': *274 '403': *27 x-github: githubCloudOnly: false @@ -72630,9 +72956,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#get-an-issue parameters: - - *262 - - *263 - - &457 + - *265 + - *266 + - &460 name: issue_number description: The number that identifies the issue. in: path @@ -72646,10 +72972,10 @@ paths: application/json: schema: *74 examples: - default: *456 - '301': *274 + default: *459 + '301': *277 '404': *6 - '410': *271 + '410': *274 '304': *35 x-github: githubCloudOnly: false @@ -72674,9 +73000,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#update-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -72768,6 +73094,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -72786,13 +73120,13 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 '422': *15 '503': *62 '403': *27 - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72810,9 +73144,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#add-assignees-to-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -72840,7 +73174,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72856,9 +73190,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: content: application/json: @@ -72885,7 +73219,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72907,9 +73241,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: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - name: assignee in: path required: true @@ -72949,9 +73283,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#list-issue-comments parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *64 - *17 - *19 @@ -72962,13 +73296,13 @@ paths: application/json: schema: type: array - items: *453 + items: *456 examples: - default: *458 + default: *461 headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72997,9 +73331,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/comments#create-an-issue-comment parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -73021,16 +73355,16 @@ paths: description: Response content: application/json: - schema: *453 + schema: *456 examples: - default: *454 + default: *457 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *271 + '410': *274 '422': *15 '404': *6 x-github: @@ -73050,9 +73384,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/events#list-issue-events parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -73066,7 +73400,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &462 + - &465 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -73115,7 +73449,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &463 + - &466 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -73243,7 +73577,7 @@ paths: - performed_via_github_app - assignee - assigner - - &464 + - &467 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -73289,7 +73623,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &465 + - &468 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -73335,7 +73669,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &466 + - &469 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -73384,7 +73718,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &467 + - &470 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -73426,7 +73760,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &468 + - &471 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -73468,7 +73802,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &469 + - &472 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -73524,7 +73858,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &470 + - &473 title: Locked Issue Event description: Locked Issue Event type: object @@ -73569,7 +73903,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &471 + - &474 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -73630,7 +73964,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &472 + - &475 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -73691,7 +74025,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &473 + - &476 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -73752,7 +74086,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &474 + - &477 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -73845,7 +74179,7 @@ paths: color: red headers: Link: *57 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73862,9 +74196,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -73874,7 +74208,7 @@ paths: application/json: schema: type: array - items: &459 + items: &462 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -73929,7 +74263,7 @@ paths: - color - default examples: - default: &460 + default: &463 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -73947,9 +74281,9 @@ paths: default: false headers: Link: *57 - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -73966,9 +74300,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#add-labels-to-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -74027,12 +74361,12 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 - '301': *274 + default: *463 + '301': *277 '404': *6 - '410': *271 + '410': *274 '422': *15 x-github: githubCloudOnly: false @@ -74049,9 +74383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#set-labels-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -74111,12 +74445,12 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 - '301': *274 + default: *463 + '301': *277 '404': *6 - '410': *271 + '410': *274 '422': *15 x-github: githubCloudOnly: false @@ -74133,15 +74467,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 responses: '204': description: Response - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74160,9 +74494,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#remove-a-label-from-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - name: name in: path required: true @@ -74175,7 +74509,7 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: default: value: @@ -74186,9 +74520,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *274 + '301': *277 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74208,9 +74542,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#lock-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: false content: @@ -74239,7 +74573,7 @@ paths: '204': description: Response '403': *27 - '410': *271 + '410': *274 '404': *6 '422': *15 x-github: @@ -74257,9 +74591,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/issues#unlock-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 responses: '204': description: Response @@ -74281,9 +74615,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - 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. @@ -74309,13 +74643,13 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74333,9 +74667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74367,16 +74701,16 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -74398,10 +74732,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-an-issue-reaction parameters: - - *262 - - *263 - - *457 - - *258 + - *265 + - *266 + - *460 + - *261 responses: '204': description: Response @@ -74430,9 +74764,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#remove-sub-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74456,7 +74790,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -74489,9 +74823,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#list-sub-issues parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -74503,11 +74837,11 @@ paths: type: array items: *74 examples: - default: *461 + default: *464 headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -74535,9 +74869,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#add-sub-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74566,14 +74900,14 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *271 + '410': *274 '422': *15 '404': *6 x-github: @@ -74593,9 +74927,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 requestBody: required: true content: @@ -74628,7 +74962,7 @@ paths: application/json: schema: *74 examples: - default: *456 + default: *459 '403': *27 '404': *6 '422': *7 @@ -74650,9 +74984,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *262 - - *263 - - *457 + - *265 + - *266 + - *460 - *17 - *19 responses: @@ -74667,9 +75001,6 @@ paths: description: Timeline Event type: object anyOf: - - *462 - - *463 - - *464 - *465 - *466 - *467 @@ -74680,6 +75011,9 @@ paths: - *472 - *473 - *474 + - *475 + - *476 + - *477 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -75003,7 +75337,7 @@ paths: type: string comments: type: array - items: &494 + items: &497 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -75241,7 +75575,7 @@ paths: type: string comments: type: array - items: *389 + items: *392 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -75516,7 +75850,7 @@ paths: headers: Link: *57 '404': *6 - '410': *271 + '410': *274 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75533,8 +75867,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -75544,7 +75878,7 @@ paths: application/json: schema: type: array - items: &475 + items: &478 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -75611,8 +75945,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -75648,9 +75982,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *478 examples: - default: &476 + default: &479 value: id: 1 key: ssh-rsa AAA... @@ -75684,9 +76018,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *262 - - *263 - - &477 + - *265 + - *266 + - &480 name: key_id description: The unique identifier of the key. in: path @@ -75698,9 +76032,9 @@ paths: description: Response content: application/json: - schema: *475 + schema: *478 examples: - default: *476 + default: *479 '404': *6 x-github: githubCloudOnly: false @@ -75718,9 +76052,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *262 - - *263 - - *477 + - *265 + - *266 + - *480 responses: '204': description: Response @@ -75740,8 +76074,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -75751,9 +76085,9 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 + default: *463 headers: Link: *57 '404': *6 @@ -75774,8 +76108,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#create-a-label parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -75811,9 +76145,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: &478 + default: &481 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -75845,8 +76179,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#get-a-label parameters: - - *262 - - *263 + - *265 + - *266 - name: name in: path required: true @@ -75857,9 +76191,9 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: - default: *478 + default: *481 '404': *6 x-github: githubCloudOnly: false @@ -75876,8 +76210,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#update-a-label parameters: - - *262 - - *263 + - *265 + - *266 - name: name in: path required: true @@ -75916,7 +76250,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: default: value: @@ -75942,8 +76276,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#delete-a-label parameters: - - *262 - - *263 + - *265 + - *266 - name: name in: path required: true @@ -75969,8 +76303,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-languages parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -76009,9 +76343,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *262 - - *263 - - *367 + - *265 + - *266 + - *370 responses: '200': description: Response @@ -76158,8 +76492,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#sync-a-fork-branch-with-the-upstream-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76224,8 +76558,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/branches/branches#merge-a-branch parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76259,9 +76593,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *390 + schema: *393 examples: - default: *479 + default: *482 '204': description: Response when already merged '404': @@ -76286,8 +76620,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#list-milestones parameters: - - *262 - - *263 + - *265 + - *266 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -76328,7 +76662,7 @@ paths: application/json: schema: type: array - items: *394 + items: *397 examples: default: value: @@ -76384,8 +76718,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#create-a-milestone parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76425,9 +76759,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: &480 + default: &483 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -76486,9 +76820,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#get-a-milestone parameters: - - *262 - - *263 - - &481 + - *265 + - *266 + - &484 name: milestone_number description: The number that identifies the milestone. in: path @@ -76500,9 +76834,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *480 + default: *483 '404': *6 x-github: githubCloudOnly: false @@ -76519,9 +76853,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#update-a-milestone parameters: - - *262 - - *263 - - *481 + - *265 + - *266 + - *484 requestBody: required: false content: @@ -76559,9 +76893,9 @@ paths: description: Response content: application/json: - schema: *394 + schema: *397 examples: - default: *480 + default: *483 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76577,9 +76911,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/milestones#delete-a-milestone parameters: - - *262 - - *263 - - *481 + - *265 + - *266 + - *484 responses: '204': description: Response @@ -76600,9 +76934,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/issues/labels#list-labels-for-issues-in-a-milestone parameters: - - *262 - - *263 - - *481 + - *265 + - *266 + - *484 - *17 - *19 responses: @@ -76612,9 +76946,9 @@ paths: application/json: schema: type: array - items: *459 + items: *462 examples: - default: *460 + default: *463 headers: Link: *57 x-github: @@ -76633,12 +76967,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#list-repository-notifications-for-the-authenticated-user parameters: - - *262 - - *263 - - *482 - - *483 + - *265 + - *266 + - *485 + - *486 - *64 - - *484 + - *487 - *17 - *19 responses: @@ -76650,7 +76984,7 @@ paths: type: array items: *86 examples: - default: *485 + default: *488 headers: Link: *57 x-github: @@ -76674,8 +77008,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -76733,14 +77067,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: &486 + schema: &489 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -76884,7 +77218,7 @@ paths: - custom_404 - public examples: - default: &487 + default: &490 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -76925,8 +77259,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -76981,9 +77315,9 @@ paths: description: Response content: application/json: - schema: *486 + schema: *489 examples: - default: *487 + default: *490 '422': *15 '409': *44 x-github: @@ -77006,8 +77340,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#update-information-about-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -77107,8 +77441,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#delete-a-apiname-pages-site parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -77134,8 +77468,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#list-apiname-pages-builds parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -77145,7 +77479,7 @@ paths: application/json: schema: type: array - items: &488 + items: &491 title: Page Build description: Page Build type: object @@ -77237,8 +77571,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#request-a-apiname-pages-build parameters: - - *262 - - *263 + - *265 + - *266 responses: '201': description: Response @@ -77285,16 +77619,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-latest-pages-build parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *488 + schema: *491 examples: - default: &489 + default: &492 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -77342,8 +77676,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-apiname-pages-build parameters: - - *262 - - *263 + - *265 + - *266 - name: build_id in: path required: true @@ -77354,9 +77688,9 @@ paths: description: Response content: application/json: - schema: *488 + schema: *491 examples: - default: *489 + default: *492 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -77376,8 +77710,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#create-a-github-pages-deployment parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -77485,9 +77819,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-the-status-of-a-github-pages-deployment parameters: - - *262 - - *263 - - &490 + - *265 + - *266 + - &493 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -77545,9 +77879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *262 - - *263 - - *490 + - *265 + - *266 + - *493 responses: '204': *137 '404': *6 @@ -77574,8 +77908,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pages/pages#get-a-dns-health-check-for-github-pages parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -77870,8 +78204,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: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Private vulnerability reporting status @@ -77908,8 +78242,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-private-vulnerability-reporting-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': *137 '422': *14 @@ -77930,8 +78264,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-private-vulnerability-reporting-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': *137 '422': *14 @@ -77954,8 +78288,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#list-repository-projects parameters: - - *262 - - *263 + - *265 + - *266 - name: state description: Indicates the state of the projects to return. in: query @@ -77976,7 +78310,7 @@ paths: application/json: schema: type: array - items: *213 + items: *216 examples: default: value: @@ -78016,7 +78350,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *271 + '410': *274 '422': *7 x-github: githubCloudOnly: false @@ -78039,8 +78373,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/projects/projects#create-a-repository-project parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -78066,13 +78400,13 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: - default: *270 + default: *273 '401': *23 '403': *27 '404': *6 - '410': *271 + '410': *274 '422': *7 x-github: githubCloudOnly: false @@ -78095,8 +78429,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/custom-properties#get-all-custom-property-values-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -78104,7 +78438,7 @@ paths: application/json: schema: type: array - items: *218 + items: *221 examples: default: value: @@ -78135,8 +78469,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: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -78148,7 +78482,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *218 + items: *221 required: - properties examples: @@ -78198,8 +78532,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests parameters: - - *262 - - *263 + - *265 + - *266 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -78259,9 +78593,9 @@ paths: application/json: schema: type: array - items: *491 + items: *494 examples: - default: *492 + default: *495 headers: Link: *57 '304': *35 @@ -78293,8 +78627,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#create-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -78361,7 +78695,7 @@ paths: description: Response content: application/json: - schema: &496 + schema: &499 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -78490,7 +78824,7 @@ paths: milestone: anyOf: - type: 'null' - - *394 + - *397 active_lock_reason: type: - string @@ -78545,7 +78879,7 @@ paths: type: - array - 'null' - items: *195 + items: *198 head: type: object properties: @@ -78583,14 +78917,14 @@ paths: _links: type: object properties: - comments: *395 - commits: *395 - statuses: *395 - html: *395 - issue: *395 - review_comments: *395 - review_comment: *395 - self: *395 + comments: *398 + commits: *398 + statuses: *398 + html: *398 + issue: *398 + review_comments: *398 + review_comment: *398 + self: *398 required: - comments - commits @@ -78601,7 +78935,7 @@ paths: - review_comment - self author_association: *60 - auto_merge: *493 + auto_merge: *496 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -78703,7 +79037,7 @@ paths: - merged_by - review_comments examples: - default: &497 + default: &500 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -79230,8 +79564,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: sort in: query required: false @@ -79260,9 +79594,9 @@ paths: application/json: schema: type: array - items: *494 + items: *497 examples: - default: &499 + default: &502 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79339,17 +79673,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '200': description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: &495 + default: &498 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -79424,8 +79758,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#update-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -79448,9 +79782,9 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: - default: *495 + default: *498 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79466,8 +79800,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#delete-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 + - *265 + - *266 - *73 responses: '204': @@ -79489,8 +79823,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-pull-request-review-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). @@ -79517,9 +79851,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -79540,8 +79874,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-pull-request-review-comment parameters: - - *262 - - *263 + - *265 + - *266 - *73 requestBody: required: true @@ -79574,16 +79908,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -79605,10 +79939,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *262 - - *263 + - *265 + - *266 - *73 - - *258 + - *261 responses: '204': description: Response @@ -79651,9 +79985,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#get-a-pull-request parameters: - - *262 - - *263 - - &498 + - *265 + - *266 + - &501 name: pull_number description: The number that identifies the pull request. in: path @@ -79666,9 +80000,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '304': *35 '404': *6 '406': @@ -79703,9 +80037,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -79747,9 +80081,9 @@ paths: description: Response content: application/json: - schema: *496 + schema: *499 examples: - default: *497 + default: *500 '422': *15 '403': *27 x-github: @@ -79771,9 +80105,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-codespace-from-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: true content: @@ -79834,17 +80168,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '401': *23 '403': *27 '404': *6 @@ -79874,9 +80208,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#list-review-comments-on-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *83 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -79897,9 +80231,9 @@ paths: application/json: schema: type: array - items: *494 + items: *497 examples: - default: *499 + default: *502 headers: Link: *57 x-github: @@ -79932,9 +80266,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-review-comment-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: true content: @@ -80040,7 +80374,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: example-for-a-multi-line-comment: value: @@ -80128,9 +80462,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/comments#create-a-reply-for-a-review-comment parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *73 requestBody: required: true @@ -80153,7 +80487,7 @@ paths: description: Response content: application/json: - schema: *494 + schema: *497 examples: default: value: @@ -80239,9 +80573,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *17 - *19 responses: @@ -80251,9 +80585,9 @@ paths: application/json: schema: type: array - items: *390 + items: *393 examples: - default: *500 + default: *503 headers: Link: *57 x-github: @@ -80283,9 +80617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#list-pull-requests-files parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *17 - *19 responses: @@ -80295,7 +80629,7 @@ paths: application/json: schema: type: array - items: *402 + items: *405 examples: default: value: @@ -80333,9 +80667,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#check-if-a-pull-request-has-been-merged parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 responses: '204': description: Response if pull request has been merged @@ -80358,9 +80692,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#merge-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -80472,9 +80806,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#get-all-requested-reviewers-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 responses: '200': description: Response @@ -80549,9 +80883,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#request-reviewers-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -80588,7 +80922,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -81124,9 +81458,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/review-requests#remove-requested-reviewers-from-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: true content: @@ -81160,7 +81494,7 @@ paths: description: Response content: application/json: - schema: *491 + schema: *494 examples: default: value: @@ -81665,9 +81999,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 - *17 - *19 responses: @@ -81677,7 +82011,7 @@ paths: application/json: schema: type: array - items: &501 + items: &504 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -81833,9 +82167,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#create-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -81925,9 +82259,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: &503 + default: &506 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -81990,10 +82324,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#get-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - &502 + - *265 + - *266 + - *501 + - &505 name: review_id description: The unique identifier of the review. in: path @@ -82005,9 +82339,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: &504 + default: &507 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -82066,10 +82400,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#update-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 requestBody: required: true content: @@ -82092,7 +82426,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -82154,18 +82488,18 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#delete-a-pending-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 responses: '200': description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *503 + default: *506 '422': *7 '404': *6 x-github: @@ -82192,10 +82526,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#list-comments-for-a-pull-request-review parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 - *17 - *19 responses: @@ -82293,9 +82627,9 @@ paths: _links: type: object properties: - self: *395 - html: *395 - pull_request: *395 + self: *398 + html: *398 + pull_request: *398 required: - self - html @@ -82446,10 +82780,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#dismiss-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 requestBody: required: true content: @@ -82478,7 +82812,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -82541,10 +82875,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/reviews#submit-a-review-for-a-pull-request parameters: - - *262 - - *263 - - *498 - - *502 + - *265 + - *266 + - *501 + - *505 requestBody: required: true content: @@ -82579,9 +82913,9 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: - default: *504 + default: *507 '404': *6 '422': *7 '403': *27 @@ -82603,9 +82937,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/pulls/pulls#update-a-pull-request-branch parameters: - - *262 - - *263 - - *498 + - *265 + - *266 + - *501 requestBody: required: false content: @@ -82669,8 +83003,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme parameters: - - *262 - - *263 + - *265 + - *266 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -82683,9 +83017,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *508 examples: - default: &506 + default: &509 value: type: file encoding: base64 @@ -82727,8 +83061,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/contents#get-a-repository-readme-for-a-directory parameters: - - *262 - - *263 + - *265 + - *266 - name: dir description: The alternate path to look for a README file in: path @@ -82748,9 +83082,9 @@ paths: description: Response content: application/json: - schema: *505 + schema: *508 examples: - default: *506 + default: *509 '404': *6 '422': *15 x-github: @@ -82772,8 +83106,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#list-releases parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -82783,7 +83117,7 @@ paths: application/json: schema: type: array - items: &507 + items: &510 title: Release description: A release. type: object @@ -82855,7 +83189,7 @@ paths: author: *4 assets: type: array - items: &508 + items: &511 title: Release Asset description: Data related to a release. type: object @@ -83035,8 +83369,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#create-a-release parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -83112,9 +83446,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: &511 + default: &514 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -83217,9 +83551,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#get-a-release-asset parameters: - - *262 - - *263 - - &509 + - *265 + - *266 + - &512 name: asset_id description: The unique identifier of the asset. in: path @@ -83231,9 +83565,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *511 examples: - default: &510 + default: &513 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 @@ -83267,7 +83601,7 @@ paths: type: User site_admin: false '404': *6 - '302': *404 + '302': *407 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83283,9 +83617,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#update-a-release-asset parameters: - - *262 - - *263 - - *509 + - *265 + - *266 + - *512 requestBody: required: false content: @@ -83314,9 +83648,9 @@ paths: description: Response content: application/json: - schema: *508 + schema: *511 examples: - default: *510 + default: *513 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83332,9 +83666,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#delete-a-release-asset parameters: - - *262 - - *263 - - *509 + - *265 + - *266 + - *512 responses: '204': description: Response @@ -83358,8 +83692,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#generate-release-notes-content-for-a-release parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -83445,16 +83779,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-the-latest-release parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83471,8 +83805,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release-by-tag-name parameters: - - *262 - - *263 + - *265 + - *266 - name: tag description: tag parameter in: path @@ -83485,9 +83819,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 '404': *6 x-github: githubCloudOnly: false @@ -83509,9 +83843,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#get-a-release parameters: - - *262 - - *263 - - &512 + - *265 + - *266 + - &515 name: release_id description: The unique identifier of the release. in: path @@ -83525,9 +83859,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: *507 + schema: *510 examples: - default: *511 + default: *514 '401': description: Unauthorized x-github: @@ -83545,9 +83879,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#update-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 requestBody: required: false content: @@ -83611,9 +83945,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 '404': description: Not Found if the discussion category name is invalid content: @@ -83634,9 +83968,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/releases#delete-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 responses: '204': description: Response @@ -83656,9 +83990,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/releases/assets#list-release-assets parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 - *17 - *19 responses: @@ -83668,7 +84002,7 @@ paths: application/json: schema: type: array - items: *508 + items: *511 examples: default: value: @@ -83748,9 +84082,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: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 - name: name in: query required: true @@ -83776,7 +84110,7 @@ paths: description: Response for successful upload content: application/json: - schema: *508 + schema: *511 examples: response-for-successful-upload: value: @@ -83830,9 +84164,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 - 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. @@ -83856,9 +84190,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 '404': *6 @@ -83879,9 +84213,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-release parameters: - - *262 - - *263 - - *512 + - *265 + - *266 + - *515 requestBody: required: true content: @@ -83911,16 +84245,16 @@ paths: description: Reaction exists content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '201': description: Reaction created content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 '422': *15 x-github: githubCloudOnly: false @@ -83942,10 +84276,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#delete-a-release-reaction parameters: - - *262 - - *263 - - *512 - - *258 + - *265 + - *266 + - *515 + - *261 responses: '204': description: Response @@ -83969,9 +84303,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-rules-for-a-branch parameters: - - *262 - - *263 - - *330 + - *265 + - *266 + - *333 - *17 - *19 responses: @@ -83987,8 +84321,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *513 - - &515 + - *516 + - &518 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -84007,54 +84341,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *514 - - *515 - - allOf: - - *516 - - *515 - allOf: - *517 - - *515 - - allOf: - *518 - - *515 - allOf: - *519 - - *515 + - *518 - allOf: - *520 - - *515 + - *518 - allOf: - *521 - - *515 + - *518 - allOf: - *522 - - *515 + - *518 - allOf: - *523 - - *515 + - *518 - allOf: - *524 - - *515 + - *518 - allOf: - *525 - - *515 + - *518 - allOf: - *526 - - *515 + - *518 - allOf: - *527 - - *515 + - *518 - allOf: - *528 - - *515 + - *518 - allOf: - *529 - - *515 + - *518 - allOf: - *530 - - *515 + - *518 + - allOf: + - *531 + - *518 + - allOf: + - *532 + - *518 + - allOf: + - *533 + - *518 examples: default: value: @@ -84093,8 +84427,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - name: includes_parents @@ -84105,7 +84439,7 @@ paths: schema: type: boolean default: true - - *531 + - *534 responses: '200': description: Response @@ -84113,7 +84447,7 @@ paths: application/json: schema: type: array - items: *226 + items: *229 examples: default: value: @@ -84160,8 +84494,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 requestBody: description: Request body required: true @@ -84181,16 +84515,16 @@ paths: - tag - push default: branch - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *220 + items: *226 + conditions: *223 rules: type: array description: An array of rules within the ruleset. - items: *225 + items: *228 required: - name - enforcement @@ -84221,9 +84555,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: &541 + default: &544 value: id: 42 name: super cool ruleset @@ -84270,12 +84604,12 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#list-repository-rule-suites parameters: - - *262 - - *263 - - *532 - - *533 - - *534 + - *265 + - *266 - *535 + - *536 + - *537 + - *538 - *17 - *19 responses: @@ -84283,9 +84617,9 @@ paths: description: Response content: application/json: - schema: *536 + schema: *539 examples: - default: *537 + default: *540 '404': *6 '500': *140 x-github: @@ -84306,17 +84640,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *262 - - *263 - - *538 + - *265 + - *266 + - *541 responses: '200': description: Response content: application/json: - schema: *539 + schema: *542 examples: - default: *540 + default: *543 '404': *6 '500': *140 x-github: @@ -84344,8 +84678,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84365,9 +84699,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *541 + default: *544 '404': *6 '500': *140 put: @@ -84385,8 +84719,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84411,16 +84745,16 @@ paths: - branch - tag - push - enforcement: *222 + enforcement: *225 bypass_actors: type: array description: The actors that can bypass the rules in this ruleset - items: *223 - conditions: *220 + items: *226 + conditions: *223 rules: description: An array of rules within the ruleset. type: array - items: *225 + items: *228 examples: default: value: @@ -84448,9 +84782,9 @@ paths: description: Response content: application/json: - schema: *226 + schema: *229 examples: - default: *541 + default: *544 '404': *6 '500': *140 delete: @@ -84468,8 +84802,8 @@ paths: category: repos subcategory: rules parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84492,8 +84826,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-history parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 - name: ruleset_id @@ -84509,9 +84843,9 @@ paths: application/json: schema: type: array - items: *228 + items: *231 examples: - default: *542 + default: *545 '404': *6 '500': *140 x-github: @@ -84530,8 +84864,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/rules#get-repository-ruleset-version parameters: - - *262 - - *263 + - *265 + - *266 - name: ruleset_id description: The ID of the ruleset. in: path @@ -84549,7 +84883,7 @@ paths: description: Response content: application/json: - schema: *543 + schema: *546 examples: default: value: @@ -84604,20 +84938,20 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *262 - - *263 - - *229 - - *230 - - *231 + - *265 + - *266 - *232 - - *46 - - *19 - - *17 - - *544 - - *545 - *233 - *234 - *235 + - *46 + - *19 + - *17 + - *547 + - *548 + - *236 + - *237 + - *238 responses: '200': description: Response @@ -84625,7 +84959,7 @@ paths: application/json: schema: type: array - items: &548 + items: &551 type: object properties: number: *52 @@ -84641,8 +84975,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *546 - resolution: *547 + state: *549 + resolution: *550 resolved_at: type: - string @@ -84861,15 +85195,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 responses: '200': description: Response content: application/json: - schema: *548 + schema: *551 examples: default: value: @@ -84921,9 +85255,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#update-a-secret-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 requestBody: required: true content: @@ -84931,8 +85265,8 @@ paths: schema: type: object properties: - state: *546 - resolution: *547 + state: *549 + resolution: *550 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -84951,7 +85285,7 @@ paths: description: Response content: application/json: - schema: *548 + schema: *551 examples: default: value: @@ -85026,9 +85360,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#list-locations-for-a-secret-scanning-alert parameters: - - *262 - - *263 - - *361 + - *265 + - *266 + - *364 - *19 - *17 responses: @@ -85039,7 +85373,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &677 + items: &680 type: object properties: type: @@ -85418,8 +85752,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/secret-scanning/secret-scanning#create-a-push-protection-bypass parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -85427,14 +85761,14 @@ paths: schema: type: object properties: - reason: &550 + reason: &553 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *549 + placeholder_id: *552 required: - reason - placeholder_id @@ -85451,7 +85785,7 @@ paths: schema: type: object properties: - reason: *550 + reason: *553 expire_at: type: - string @@ -85495,8 +85829,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: - - *262 - - *263 + - *265 + - *266 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -85511,7 +85845,7 @@ paths: properties: incremental_scans: type: array - items: &551 + items: &554 description: Information on a single scan performed by secret scanning on the repository type: object @@ -85539,15 +85873,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *551 + items: *554 backfill_scans: type: array - items: *551 + items: *554 custom_pattern_backfill_scans: type: array items: allOf: - - *551 + - *554 - type: object properties: pattern_name: @@ -85617,8 +85951,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *262 - - *263 + - *265 + - *266 - *46 - name: sort description: The property to sort the results by. @@ -85662,9 +85996,9 @@ paths: application/json: schema: type: array - items: *552 + items: *555 examples: - default: *553 + default: *556 '400': *14 '404': *6 x-github: @@ -85687,8 +86021,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-repository-security-advisory parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -85768,7 +86102,7 @@ paths: login: type: string description: The username of the user credited. - type: *238 + type: *241 required: - login - type @@ -85858,9 +86192,9 @@ paths: description: Response content: application/json: - schema: *552 + schema: *555 examples: - default: &555 + default: &558 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -86093,8 +86427,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#privately-report-a-security-vulnerability parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -86207,7 +86541,7 @@ paths: description: Response content: application/json: - schema: *552 + schema: *555 examples: default: value: @@ -86354,17 +86688,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#get-a-repository-security-advisory parameters: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 responses: '200': description: Response content: application/json: - schema: *552 + schema: *555 examples: - default: *555 + default: *558 '403': *27 '404': *6 x-github: @@ -86388,9 +86722,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#update-a-repository-security-advisory parameters: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 requestBody: required: true content: @@ -86470,7 +86804,7 @@ paths: login: type: string description: The username of the user credited. - type: *238 + type: *241 required: - login - type @@ -86561,10 +86895,10 @@ paths: description: Response content: application/json: - schema: *552 + schema: *555 examples: - default: *555 - add_credit: *555 + default: *558 + add_credit: *558 '403': *27 '404': *6 '422': @@ -86602,9 +86936,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: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 responses: '202': *45 '400': *14 @@ -86631,17 +86965,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/security-advisories/repository-advisories#create-a-temporary-private-fork parameters: - - *262 - - *263 - - *554 + - *265 + - *266 + - *557 responses: '202': description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 '400': *14 '422': *15 '403': *27 @@ -86667,8 +87001,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-stargazers parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -86764,8 +87098,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -86774,7 +87108,7 @@ paths: application/json: schema: type: array - items: &556 + items: &559 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -86807,8 +87141,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-last-year-of-commit-activity parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -86886,8 +87220,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -86981,8 +87315,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -87136,8 +87470,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/statistics#get-the-hourly-commit-count-for-each-day parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -87147,7 +87481,7 @@ paths: application/json: schema: type: array - items: *556 + items: *559 examples: default: value: @@ -87180,8 +87514,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/commits/statuses#create-a-commit-status parameters: - - *262 - - *263 + - *265 + - *266 - name: sha in: path required: true @@ -87237,7 +87571,7 @@ paths: description: Response content: application/json: - schema: *557 + schema: *560 examples: default: value: @@ -87291,8 +87625,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#list-watchers parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -87304,7 +87638,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -87324,14 +87658,14 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#get-a-repository-subscription parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &558 + schema: &561 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -87404,8 +87738,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#set-a-repository-subscription parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: false content: @@ -87431,7 +87765,7 @@ paths: description: Response content: application/json: - schema: *558 + schema: *561 examples: default: value: @@ -87458,8 +87792,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/watching#delete-a-repository-subscription parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -87479,8 +87813,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-tags parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -87562,8 +87896,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -87571,7 +87905,7 @@ paths: application/json: schema: type: array - items: &559 + items: &562 title: Tag protection description: Tag protection type: object @@ -87628,8 +87962,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -87652,7 +87986,7 @@ paths: description: Response content: application/json: - schema: *559 + schema: *562 examples: default: value: @@ -87683,8 +88017,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -87721,8 +88055,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *262 - - *263 + - *265 + - *266 - name: ref in: path required: true @@ -87758,8 +88092,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#list-repository-teams parameters: - - *262 - - *263 + - *265 + - *266 - *17 - *19 responses: @@ -87771,7 +88105,7 @@ paths: type: array items: *180 examples: - default: *196 + default: *199 headers: Link: *57 '404': *6 @@ -87791,8 +88125,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#get-all-repository-topics parameters: - - *262 - - *263 + - *265 + - *266 - *19 - *17 responses: @@ -87800,7 +88134,7 @@ paths: description: Response content: application/json: - schema: &560 + schema: &563 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -87812,7 +88146,7 @@ paths: required: - names examples: - default: &561 + default: &564 value: names: - octocat @@ -87835,8 +88169,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#replace-all-repository-topics parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -87867,9 +88201,9 @@ paths: description: Response content: application/json: - schema: *560 + schema: *563 examples: - default: *561 + default: *564 '404': *6 '422': *7 x-github: @@ -87890,9 +88224,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-repository-clones parameters: - - *262 - - *263 - - &562 + - *265 + - *266 + - &565 name: per description: The time frame to display results for. in: query @@ -87923,7 +88257,7 @@ paths: - 128 clones: type: array - items: &563 + items: &566 title: Traffic type: object properties: @@ -88010,8 +88344,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-paths parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -88105,8 +88439,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-top-referral-sources parameters: - - *262 - - *263 + - *265 + - *266 responses: '200': description: Response @@ -88169,9 +88503,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/metrics/traffic#get-page-views parameters: - - *262 - - *263 - - *562 + - *265 + - *266 + - *565 responses: '200': description: Response @@ -88192,7 +88526,7 @@ paths: - 3782 views: type: array - items: *563 + items: *566 required: - uniques - count @@ -88269,8 +88603,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#transfer-a-repository parameters: - - *262 - - *263 + - *265 + - *266 requestBody: required: true content: @@ -88544,8 +88878,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#check-if-vulnerability-alerts-are-enabled-for-a-repository parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -88568,8 +88902,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#enable-vulnerability-alerts parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -88591,8 +88925,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/repos/repos#disable-vulnerability-alerts parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -88618,8 +88952,8 @@ paths: url: https://docs.github.com/rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *262 - - *263 + - *265 + - *266 - name: ref in: path required: true @@ -88711,9 +89045,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -88962,7 +89296,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &564 + text_matches: &567 title: Search Result Text Matches type: array items: @@ -89125,7 +89459,7 @@ paths: enum: - author-date - committer-date - - &565 + - &568 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 @@ -89194,7 +89528,7 @@ paths: committer: anyOf: - type: 'null' - - *328 + - *331 comment_count: type: integer message: @@ -89213,7 +89547,7 @@ paths: url: type: string format: uri - verification: *439 + verification: *442 required: - author - committer @@ -89228,7 +89562,7 @@ paths: committer: anyOf: - type: 'null' - - *328 + - *331 parents: type: array items: @@ -89245,7 +89579,7 @@ paths: type: number node_id: type: string - text_matches: *564 + text_matches: *567 required: - sha - node_id @@ -89427,7 +89761,7 @@ paths: - interactions - created - updated - - *565 + - *568 - *17 - *19 - name: advanced_search @@ -89551,7 +89885,7 @@ paths: milestone: anyOf: - type: 'null' - - *394 + - *397 comments: type: integer created_at: @@ -89565,7 +89899,7 @@ paths: - string - 'null' format: date-time - text_matches: *564 + text_matches: *567 pull_request: type: object properties: @@ -89614,6 +89948,7 @@ paths: timeline_url: type: string format: uri + type: *181 performed_via_github_app: anyOf: - type: 'null' @@ -89790,7 +90125,7 @@ paths: enum: - created - updated - - *565 + - *568 - *17 - *19 responses: @@ -89835,7 +90170,7 @@ paths: - 'null' score: type: number - text_matches: *564 + text_matches: *567 required: - id - node_id @@ -89920,7 +90255,7 @@ paths: - forks - help-wanted-issues - updated - - *565 + - *568 - *17 - *19 responses: @@ -90157,7 +90492,7 @@ paths: - admin - pull - push - text_matches: *564 + text_matches: *567 temp_clone_token: type: string allow_merge_commit: @@ -90465,7 +90800,7 @@ paths: - string - 'null' format: uri - text_matches: *564 + text_matches: *567 related: type: - array @@ -90658,7 +90993,7 @@ paths: - followers - repositories - joined - - *565 + - *568 - *17 - *19 responses: @@ -90768,7 +91103,7 @@ paths: type: - boolean - 'null' - text_matches: *564 + text_matches: *567 blog: type: - string @@ -90850,7 +91185,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#get-a-team-legacy parameters: - - &566 + - &569 name: team_id description: The unique identifier of the team. in: path @@ -90862,9 +91197,9 @@ paths: description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 x-github: githubCloudOnly: false @@ -90891,7 +91226,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#update-a-team-legacy parameters: - - *566 + - *569 requestBody: required: true content: @@ -90955,16 +91290,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '201': description: Response content: application/json: - schema: *247 + schema: *250 examples: - default: *248 + default: *251 '404': *6 '422': *15 '403': *27 @@ -90992,7 +91327,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#delete-a-team-legacy parameters: - - *566 + - *569 responses: '204': description: Response @@ -91023,7 +91358,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#list-discussions-legacy parameters: - - *566 + - *569 - *46 - *17 - *19 @@ -91034,9 +91369,9 @@ paths: application/json: schema: type: array - items: *249 + items: *252 examples: - default: *567 + default: *570 headers: Link: *57 x-github: @@ -91065,7 +91400,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#create-a-discussion-legacy parameters: - - *566 + - *569 requestBody: required: true content: @@ -91099,9 +91434,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *250 + default: *253 x-github: triggersNotification: true githubCloudOnly: false @@ -91128,16 +91463,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#get-a-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 responses: '200': description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *250 + default: *253 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91162,8 +91497,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#update-a-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 requestBody: required: false content: @@ -91186,9 +91521,9 @@ paths: description: Response content: application/json: - schema: *249 + schema: *252 examples: - default: *568 + default: *571 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91213,8 +91548,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussions#delete-a-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 responses: '204': description: Response @@ -91243,8 +91578,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *566 - - *251 + - *569 + - *254 - *46 - *17 - *19 @@ -91255,9 +91590,9 @@ paths: application/json: schema: type: array - items: *252 + items: *255 examples: - default: *569 + default: *572 headers: Link: *57 x-github: @@ -91286,8 +91621,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 + - *254 requestBody: required: true content: @@ -91309,9 +91644,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: triggersNotification: true githubCloudOnly: false @@ -91338,17 +91673,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 responses: '200': description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *253 + default: *256 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91373,9 +91708,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 requestBody: required: true content: @@ -91397,9 +91732,9 @@ paths: description: Response content: application/json: - schema: *252 + schema: *255 examples: - default: *570 + default: *573 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91424,9 +91759,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 responses: '204': description: Response @@ -91455,9 +91790,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -91483,9 +91818,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 x-github: @@ -91514,9 +91849,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *566 - - *251 + - *569 - *254 + - *257 requestBody: required: true content: @@ -91548,9 +91883,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91576,8 +91911,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 - name: content description: Returns a single [reaction type](https://docs.github.com/rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -91603,9 +91938,9 @@ paths: application/json: schema: type: array - items: *255 + items: *258 examples: - default: *257 + default: *260 headers: Link: *57 x-github: @@ -91634,8 +91969,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *566 - - *251 + - *569 + - *254 requestBody: required: true content: @@ -91667,9 +92002,9 @@ paths: description: Response content: application/json: - schema: *255 + schema: *258 examples: - default: *256 + default: *259 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -91693,7 +92028,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-pending-team-invitations-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -91731,7 +92066,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#list-team-members-legacy parameters: - - *566 + - *569 - name: role description: Filters members returned by their role in the team. in: query @@ -91754,7 +92089,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '404': *6 @@ -91782,7 +92117,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-member-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -91819,7 +92154,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-team-member-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -91859,7 +92194,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-member-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -91896,16 +92231,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#get-team-membership-for-a-user-legacy parameters: - - *566 + - *569 - *128 responses: '200': description: Response content: application/json: - schema: *259 + schema: *262 examples: - response-if-user-is-a-team-maintainer: *571 + response-if-user-is-a-team-maintainer: *574 '404': *6 x-github: githubCloudOnly: false @@ -91938,7 +92273,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#add-or-update-team-membership-for-a-user-legacy parameters: - - *566 + - *569 - *128 requestBody: required: false @@ -91964,9 +92299,9 @@ paths: description: Response content: application/json: - schema: *259 + schema: *262 examples: - response-if-users-membership-with-team-is-now-pending: *572 + response-if-users-membership-with-team-is-now-pending: *575 '403': description: Forbidden if team synchronization is set up '422': @@ -92000,7 +92335,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/members#remove-team-membership-for-a-user-legacy parameters: - - *566 + - *569 - *128 responses: '204': @@ -92029,7 +92364,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-projects-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -92039,9 +92374,9 @@ paths: application/json: schema: type: array - items: *260 + items: *263 examples: - default: *573 + default: *576 headers: Link: *57 '404': *6 @@ -92067,16 +92402,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *566 - - *261 + - *569 + - *264 responses: '200': description: Response content: application/json: - schema: *260 + schema: *263 examples: - default: *574 + default: *577 '404': description: Not Found if project is not managed by this team x-github: @@ -92100,8 +92435,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *566 - - *261 + - *569 + - *264 requestBody: required: false content: @@ -92168,8 +92503,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *566 - - *261 + - *569 + - *264 responses: '204': description: Response @@ -92196,7 +92531,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-team-repositories-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -92208,7 +92543,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 '404': *6 @@ -92238,15 +92573,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#check-team-permissions-for-a-repository-legacy parameters: - - *566 - - *262 - - *263 + - *569 + - *265 + - *266 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *575 + schema: *578 examples: alternative-response-with-extra-repository-information: value: @@ -92397,9 +92732,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#add-or-update-team-repository-permissions-legacy parameters: - - *566 - - *262 - - *263 + - *569 + - *265 + - *266 requestBody: required: false content: @@ -92449,9 +92784,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#remove-a-repository-from-a-team-legacy parameters: - - *566 - - *262 - - *263 + - *569 + - *265 + - *266 responses: '204': description: Response @@ -92476,7 +92811,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/teams/teams#list-child-teams-legacy parameters: - - *566 + - *569 - *17 - *19 responses: @@ -92488,7 +92823,7 @@ paths: type: array items: *180 examples: - response-if-child-teams-exist: *576 + response-if-child-teams-exist: *579 headers: Link: *57 '404': *6 @@ -92521,7 +92856,7 @@ paths: application/json: schema: oneOf: - - &578 + - &581 title: Private User description: Private User type: object @@ -92771,7 +93106,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *577 + - *580 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -92931,7 +93266,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *581 examples: default: value: @@ -93010,7 +93345,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 '304': *35 '404': *6 '403': *27 @@ -93134,9 +93469,9 @@ paths: type: integer codespaces: type: array - items: *184 + items: *187 examples: - default: *185 + default: *188 '304': *35 '500': *140 '401': *23 @@ -93275,17 +93610,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '401': *23 '403': *27 '404': *6 @@ -93329,7 +93664,7 @@ paths: type: integer secrets: type: array - items: &579 + items: &582 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -93371,7 +93706,7 @@ paths: - visibility - selected_repositories_url examples: - default: *383 + default: *386 headers: Link: *57 x-github: @@ -93449,7 +93784,7 @@ paths: description: Response content: application/json: - schema: *579 + schema: *582 examples: default: value: @@ -93595,7 +93930,7 @@ paths: type: array items: *115 examples: - default: *580 + default: *583 '401': *23 '403': *27 '404': *6 @@ -93739,15 +94074,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '304': *35 '500': *140 '401': *23 @@ -93773,7 +94108,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#update-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 requestBody: required: false content: @@ -93803,9 +94138,9 @@ paths: description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '401': *23 '403': *27 '404': *6 @@ -93827,7 +94162,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#delete-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '202': *45 '304': *35 @@ -93856,13 +94191,13 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#export-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '202': description: Response content: application/json: - schema: &581 + schema: &584 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -93915,7 +94250,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &582 + default: &585 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -93947,7 +94282,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *186 + - *189 - name: export_id in: path required: true @@ -93960,9 +94295,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: - default: *582 + default: *585 '404': *6 x-github: githubCloudOnly: false @@ -93983,7 +94318,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *186 + - *189 responses: '200': description: Response @@ -93999,9 +94334,9 @@ paths: type: integer machines: type: array - items: *382 + items: *385 examples: - default: *583 + default: *586 '304': *35 '500': *140 '401': *23 @@ -94030,7 +94365,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#create-a-repository-from-an-unpublished-codespace parameters: - - *186 + - *189 requestBody: required: true content: @@ -94086,11 +94421,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *273 + repository: *276 machine: anyOf: - type: 'null' - - *382 + - *385 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -94887,15 +95222,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#start-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '304': *35 '500': *140 '400': *14 @@ -94927,15 +95262,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/codespaces/codespaces#stop-a-codespace-for-the-authenticated-user parameters: - - *186 + - *189 responses: '200': description: Response content: application/json: - schema: *184 + schema: *187 examples: - default: *381 + default: *384 '500': *140 '401': *23 '403': *27 @@ -94965,9 +95300,9 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: &596 + default: &599 value: - id: 197 name: hello_docker @@ -95068,7 +95403,7 @@ paths: application/json: schema: type: array - items: &584 + items: &587 title: Email description: Email type: object @@ -95138,9 +95473,9 @@ paths: application/json: schema: type: array - items: *584 + items: *587 examples: - default: &598 + default: &601 value: - email: octocat@github.com verified: true @@ -95217,7 +95552,7 @@ paths: application/json: schema: type: array - items: *584 + items: *587 examples: default: value: @@ -95329,7 +95664,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '304': *35 @@ -95362,7 +95697,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 '304': *35 @@ -95475,7 +95810,7 @@ paths: application/json: schema: type: array - items: &585 + items: &588 title: GPG Key description: A unique encryption key type: object @@ -95620,7 +95955,7 @@ paths: - subkeys - revoked examples: - default: &609 + default: &612 value: - id: 3 name: Octocat's GPG Key @@ -95705,9 +96040,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *588 examples: - default: &586 + default: &589 value: id: 3 name: Octocat's GPG Key @@ -95764,7 +96099,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &587 + - &590 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -95776,9 +96111,9 @@ paths: description: Response content: application/json: - schema: *585 + schema: *588 examples: - default: *586 + default: *589 '404': *6 '304': *35 '403': *27 @@ -95801,7 +96136,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *587 + - *590 responses: '204': description: Response @@ -95992,7 +96327,7 @@ paths: type: array items: *59 examples: - default: *588 + default: *591 headers: Link: *57 '404': *6 @@ -96106,7 +96441,7 @@ paths: required: true content: application/json: - schema: *450 + schema: *453 examples: default: value: @@ -96198,7 +96533,7 @@ paths: - closed - all default: open - - *181 + - *184 - name: sort description: What to sort results by. in: query @@ -96223,7 +96558,7 @@ paths: type: array items: *74 examples: - default: *182 + default: *185 headers: Link: *57 '404': *6 @@ -96256,7 +96591,7 @@ paths: application/json: schema: type: array - items: &589 + items: &592 title: Key description: Key type: object @@ -96354,9 +96689,9 @@ paths: description: Response content: application/json: - schema: *589 + schema: *592 examples: - default: &590 + default: &593 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -96389,15 +96724,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#get-a-public-ssh-key-for-the-authenticated-user parameters: - - *477 + - *480 responses: '200': description: Response content: application/json: - schema: *589 + schema: *592 examples: - default: *590 + default: *593 '404': *6 '304': *35 '403': *27 @@ -96420,7 +96755,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/keys#delete-a-public-ssh-key-for-the-authenticated-user parameters: - - *477 + - *480 responses: '204': description: Response @@ -96453,7 +96788,7 @@ paths: application/json: schema: type: array - items: &591 + items: &594 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -96532,7 +96867,7 @@ paths: - account - plan examples: - default: &592 + default: &595 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -96594,9 +96929,9 @@ paths: application/json: schema: type: array - items: *591 + items: *594 examples: - default: *592 + default: *595 headers: Link: *57 '304': *35 @@ -96636,7 +96971,7 @@ paths: application/json: schema: type: array - items: *188 + items: *191 examples: default: value: @@ -96744,7 +97079,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *191 examples: default: value: @@ -96827,7 +97162,7 @@ paths: description: Response content: application/json: - schema: *188 + schema: *191 examples: default: value: @@ -96895,7 +97230,7 @@ paths: application/json: schema: type: array - items: *190 + items: *193 examples: default: value: @@ -97157,7 +97492,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -97337,7 +97672,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#get-a-user-migration-status parameters: - - *191 + - *194 - name: exclude in: query required: false @@ -97350,7 +97685,7 @@ paths: description: Response content: application/json: - schema: *190 + schema: *193 examples: default: value: @@ -97544,7 +97879,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#download-a-user-migration-archive parameters: - - *191 + - *194 responses: '302': description: Response @@ -97570,7 +97905,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#delete-a-user-migration-archive parameters: - - *191 + - *194 responses: '204': description: Response @@ -97599,8 +97934,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#unlock-a-user-repository parameters: - - *191 - - *593 + - *194 + - *596 responses: '204': description: Response @@ -97624,7 +97959,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *191 + - *194 - *17 - *19 responses: @@ -97636,7 +97971,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 '404': *6 @@ -97673,7 +98008,7 @@ paths: type: array items: *142 examples: - default: *594 + default: *597 headers: Link: *57 '304': *35 @@ -97715,7 +98050,7 @@ paths: - docker - nuget - container - - *595 + - *598 - *19 - *17 responses: @@ -97725,10 +98060,10 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *596 - '400': *597 + default: *599 + '400': *600 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -97748,16 +98083,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-the-authenticated-user parameters: - - *199 - - *200 + - *202 + - *203 responses: '200': description: Response content: application/json: - schema: *197 + schema: *200 examples: - default: &610 + default: &613 value: id: 40201 name: octo-name @@ -97870,8 +98205,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-the-authenticated-user parameters: - - *199 - - *200 + - *202 + - *203 responses: '204': description: Response @@ -97901,8 +98236,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-the-authenticated-user parameters: - - *199 - - *200 + - *202 + - *203 - name: token description: package token schema: @@ -97934,8 +98269,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: - - *199 - - *200 + - *202 + - *203 - *19 - *17 - name: state @@ -97955,7 +98290,7 @@ paths: application/json: schema: type: array - items: *201 + items: *204 examples: default: value: @@ -98004,15 +98339,15 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-the-authenticated-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -98048,9 +98383,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-version-for-the-authenticated-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 responses: '204': description: Response @@ -98080,9 +98415,9 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-version-for-the-authenticated-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 responses: '204': description: Response @@ -98140,7 +98475,7 @@ paths: description: Response content: application/json: - schema: *213 + schema: *216 examples: default: value: @@ -98212,9 +98547,9 @@ paths: application/json: schema: type: array - items: *584 + items: *587 examples: - default: *598 + default: *601 headers: Link: *57 '304': *35 @@ -98327,7 +98662,7 @@ paths: type: array items: *59 examples: - default: &605 + default: &608 summary: Default response value: - id: 1296269 @@ -98643,9 +98978,9 @@ paths: description: Response content: application/json: - schema: *273 + schema: *276 examples: - default: *275 + default: *278 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -98683,9 +99018,9 @@ paths: application/json: schema: type: array - items: *452 + items: *455 examples: - default: *599 + default: *602 headers: Link: *57 '304': *35 @@ -98764,7 +99099,7 @@ paths: application/json: schema: type: array - items: &600 + items: &603 title: Social account description: Social media account type: object @@ -98781,7 +99116,7 @@ paths: - provider - url examples: - default: &601 + default: &604 value: - provider: twitter url: https://twitter.com/github @@ -98844,9 +99179,9 @@ paths: application/json: schema: type: array - items: *600 + items: *603 examples: - default: *601 + default: *604 '422': *15 '304': *35 '404': *6 @@ -98934,7 +99269,7 @@ paths: application/json: schema: type: array - items: &602 + items: &605 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -98954,7 +99289,7 @@ paths: - title - created_at examples: - default: &617 + default: &620 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99021,9 +99356,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *605 examples: - default: &603 + default: &606 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -99054,7 +99389,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: - - &604 + - &607 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -99066,9 +99401,9 @@ paths: description: Response content: application/json: - schema: *602 + schema: *605 examples: - default: *603 + default: *606 '404': *6 '304': *35 '403': *27 @@ -99091,7 +99426,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: - - *604 + - *607 responses: '204': description: Response @@ -99120,7 +99455,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &618 + - &621 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 @@ -99145,11 +99480,11 @@ paths: type: array items: *59 examples: - default-response: *605 + default-response: *608 application/vnd.github.v3.star+json: schema: type: array - items: &619 + items: &622 title: Starred Repository description: Starred Repository type: object @@ -99305,8 +99640,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: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response if this repository is starred by you @@ -99334,8 +99669,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#star-a-repository-for-the-authenticated-user parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -99359,8 +99694,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/activity/starring#unstar-a-repository-for-the-authenticated-user parameters: - - *262 - - *263 + - *265 + - *266 responses: '204': description: Response @@ -99395,7 +99730,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 '304': *35 @@ -99432,7 +99767,7 @@ paths: application/json: schema: type: array - items: *247 + items: *250 examples: default: value: @@ -99518,10 +99853,10 @@ paths: application/json: schema: oneOf: - - *578 - - *577 + - *581 + - *580 examples: - default-response: &607 + default-response: &610 summary: Default response value: login: octocat @@ -99556,7 +99891,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &608 + response-with-git-hub-plan-information: &611 summary: Response with GitHub plan information value: login: octocat @@ -99616,7 +99951,7 @@ paths: description: API method documentation url: https://docs.github.com/rest/users/users#list-users parameters: - - *606 + - *609 - *17 responses: '200': @@ -99627,7 +99962,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: example: ; rel="next" @@ -99665,11 +100000,11 @@ paths: application/json: schema: oneOf: - - *578 - - *577 + - *581 + - *580 examples: - default-response: *607 - response-with-git-hub-plan-information: *608 + default-response: *610 + response-with-git-hub-plan-information: *611 '404': *6 x-github: githubCloudOnly: false @@ -99745,7 +100080,7 @@ paths: bundle_url: type: string examples: - default: *324 + default: *327 '201': description: Response content: @@ -99784,9 +100119,9 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *596 + default: *599 '403': *27 '401': *23 x-github: @@ -100069,7 +100404,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -100100,7 +100435,7 @@ paths: type: array items: *4 examples: - default: *183 + default: *186 headers: Link: *57 x-github: @@ -100190,9 +100525,9 @@ paths: application/json: schema: type: array - items: *585 + items: *588 examples: - default: *609 + default: *612 headers: Link: *57 x-github: @@ -100296,7 +100631,7 @@ paths: application/json: schema: *20 examples: - default: *449 + default: *452 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100374,7 +100709,7 @@ paths: type: array items: *142 examples: - default: *594 + default: *597 headers: Link: *57 x-github: @@ -100413,7 +100748,7 @@ paths: - docker - nuget - container - - *595 + - *598 - *128 - *19 - *17 @@ -100424,12 +100759,12 @@ paths: application/json: schema: type: array - items: *197 + items: *200 examples: - default: *596 + default: *599 '403': *27 '401': *23 - '400': *597 + '400': *600 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100449,17 +100784,17 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-for-a-user parameters: - - *199 - - *200 + - *202 + - *203 - *128 responses: '200': description: Response content: application/json: - schema: *197 + schema: *200 examples: - default: *610 + default: *613 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -100480,8 +100815,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-a-package-for-a-user parameters: - - *199 - - *200 + - *202 + - *203 - *128 responses: '204': @@ -100514,8 +100849,8 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-a-package-for-a-user parameters: - - *199 - - *200 + - *202 + - *203 - *128 - name: token description: package token @@ -100548,8 +100883,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: - - *199 - - *200 + - *202 + - *203 - *128 responses: '200': @@ -100558,7 +100893,7 @@ paths: application/json: schema: type: array - items: *201 + items: *204 examples: default: value: @@ -100616,16 +100951,16 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#get-a-package-version-for-a-user parameters: - - *199 - - *200 - *202 + - *203 + - *205 - *128 responses: '200': description: Response content: application/json: - schema: *201 + schema: *204 examples: default: value: @@ -100660,10 +100995,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#delete-package-version-for-a-user parameters: - - *199 - - *200 - - *128 - *202 + - *203 + - *128 + - *205 responses: '204': description: Response @@ -100695,10 +101030,10 @@ paths: description: API method documentation url: https://docs.github.com/rest/packages/packages#restore-package-version-for-a-user parameters: - - *199 - - *200 - - *128 - *202 + - *203 + - *128 + - *205 responses: '204': description: Response @@ -100745,7 +101080,7 @@ paths: application/json: schema: type: array - items: *213 + items: *216 examples: default: value: @@ -101028,7 +101363,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -101058,9 +101393,9 @@ paths: description: Response content: application/json: - schema: *611 + schema: *614 examples: - default: *612 + default: *615 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101088,9 +101423,9 @@ paths: description: Response content: application/json: - schema: *613 + schema: *616 examples: - default: *614 + default: *617 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101118,9 +101453,9 @@ paths: description: Response content: application/json: - schema: *615 + schema: *618 examples: - default: *616 + default: *619 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -101148,9 +101483,9 @@ paths: application/json: schema: type: array - items: *600 + items: *603 examples: - default: *601 + default: *604 headers: Link: *57 x-github: @@ -101180,9 +101515,9 @@ paths: application/json: schema: type: array - items: *602 + items: *605 examples: - default: *617 + default: *620 headers: Link: *57 x-github: @@ -101207,7 +101542,7 @@ paths: url: https://docs.github.com/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *128 - - *618 + - *621 - *46 - *17 - *19 @@ -101219,11 +101554,11 @@ paths: schema: anyOf: - type: array - items: *619 + items: *622 - type: array items: *59 examples: - default-response: *605 + default-response: *608 headers: Link: *57 x-github: @@ -101254,7 +101589,7 @@ paths: type: array items: *115 examples: - default: *203 + default: *206 headers: Link: *57 x-github: @@ -101383,7 +101718,7 @@ webhooks: type: string enum: - disabled - enterprise: &620 + enterprise: &623 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -101452,7 +101787,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &621 + installation: &624 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -101473,7 +101808,7 @@ webhooks: required: - id - node_id - organization: &622 + organization: &625 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -101546,7 +101881,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &623 + repository: &626 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -102459,10 +102794,10 @@ webhooks: type: string enum: - enabled - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -102538,11 +102873,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - rule: &624 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + rule: &627 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) @@ -102765,11 +103100,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - rule: *624 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + rule: *627 sender: *4 required: - action @@ -102957,11 +103292,11 @@ webhooks: - everyone required: - from - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - rule: *624 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + rule: *627 sender: *4 required: - action @@ -103045,7 +103380,7 @@ webhooks: type: string enum: - completed - check_run: &626 + check_run: &629 title: CheckRun description: A check performed on the code of a given code change type: object @@ -103113,7 +103448,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *341 + items: *344 repository: *115 status: type: string @@ -103158,7 +103493,7 @@ webhooks: - examples: - neutral - deployment: *625 + deployment: *628 details_url: type: string examples: @@ -103218,7 +103553,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *341 + items: *344 started_at: type: string format: date-time @@ -103256,9 +103591,9 @@ webhooks: - output - app - pull_requests - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - check_run @@ -103651,10 +103986,10 @@ webhooks: type: string enum: - created - check_run: *626 - installation: *621 - organization: *622 - repository: *623 + check_run: *629 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - check_run @@ -104050,10 +104385,10 @@ webhooks: type: string enum: - requested_action - check_run: *626 - installation: *621 - organization: *622 - repository: *623 + check_run: *629 + installation: *624 + organization: *625 + repository: *626 requested_action: description: The action requested by the user. type: object @@ -104458,10 +104793,10 @@ webhooks: type: string enum: - rerequested - check_run: *626 - installation: *621 - organization: *622 - repository: *623 + check_run: *629 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - check_run @@ -105453,10 +105788,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -106141,10 +106476,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -106823,10 +107158,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -106992,7 +107327,7 @@ webhooks: required: - login - id - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107144,20 +107479,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &627 + commit_oid: &630 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: *620 - installation: *621 - organization: *622 - ref: &628 + enterprise: *623 + installation: *624 + organization: *625 + ref: &631 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: *623 + repository: *626 sender: *4 required: - action @@ -107321,7 +107656,7 @@ webhooks: required: - login - id - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -107562,12 +107897,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -107665,7 +108000,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -107847,12 +108182,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -108018,7 +108353,7 @@ webhooks: required: - login - id - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -108195,12 +108530,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -108300,7 +108635,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108480,9 +108815,9 @@ webhooks: type: - string - 'null' - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -108490,7 +108825,7 @@ webhooks: type: - string - 'null' - repository: *623 + repository: *626 sender: *4 required: - action @@ -108586,7 +108921,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *356 + dismissed_comment: *359 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -108733,12 +109068,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *627 - enterprise: *620 - installation: *621 - organization: *622 - ref: *628 - repository: *623 + commit_oid: *630 + enterprise: *623 + installation: *624 + organization: *625 + ref: *631 + repository: *626 sender: *4 required: - action @@ -109000,10 +109335,10 @@ webhooks: - updated_at - author_association - body - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -109084,18 +109419,18 @@ webhooks: type: - string - 'null' - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *622 - pusher_type: &629 + organization: *625 + pusher_type: &632 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &630 + ref: &633 description: The [`git ref`](https://docs.github.com/rest/git/refs#get-a-reference) resource. type: string @@ -109105,7 +109440,7 @@ webhooks: enum: - tag - branch - repository: *623 + repository: *626 sender: *4 required: - ref @@ -109187,10 +109522,10 @@ webhooks: type: string enum: - created - definition: *214 - enterprise: *620 - installation: *621 - organization: *622 + definition: *217 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -109275,9 +109610,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -109354,10 +109689,10 @@ webhooks: type: string enum: - updated - definition: *214 - enterprise: *620 - installation: *621 - organization: *622 + definition: *217 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -109434,19 +109769,19 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - repository: *623 - organization: *622 + enterprise: *623 + installation: *624 + repository: *626 + organization: *625 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *218 + items: *221 old_property_values: type: array description: The old custom property values for the repository. - items: *218 + items: *221 required: - action - repository @@ -109522,18 +109857,18 @@ webhooks: title: delete event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - pusher_type: *629 - ref: *630 + enterprise: *623 + installation: *624 + organization: *625 + pusher_type: *632 + ref: *633 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *623 + repository: *626 sender: *4 required: - ref @@ -109617,11 +109952,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109705,11 +110040,11 @@ webhooks: type: string enum: - auto_reopened - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109793,11 +110128,11 @@ webhooks: type: string enum: - created - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109879,11 +110214,11 @@ webhooks: type: string enum: - dismissed - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -109965,11 +110300,11 @@ webhooks: type: string enum: - fixed - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -110052,11 +110387,11 @@ webhooks: type: string enum: - reintroduced - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -110138,11 +110473,11 @@ webhooks: type: string enum: - reopened - alert: *408 - installation: *621 - organization: *622 - enterprise: *620 - repository: *623 + alert: *411 + installation: *624 + organization: *625 + enterprise: *623 + repository: *626 sender: *4 required: - action @@ -110219,9 +110554,9 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - key: &631 + enterprise: *623 + installation: *624 + key: &634 description: The [`deploy key`](https://docs.github.com/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -110259,8 +110594,8 @@ webhooks: - verified - created_at - read_only - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -110337,11 +110672,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - key: *631 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + key: *634 + organization: *625 + repository: *626 sender: *4 required: - action @@ -110913,12 +111248,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: &635 + workflow: &638 title: Workflow type: - object @@ -111656,13 +111991,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *414 + deployment: *417 pull_requests: type: array - items: *496 - repository: *623 - organization: *622 - installation: *621 + items: *499 + repository: *626 + organization: *625 + installation: *624 sender: *4 responses: '200': @@ -111733,7 +112068,7 @@ webhooks: type: string enum: - approved - approver: &632 + approver: &635 type: object properties: avatar_url: @@ -111776,11 +112111,11 @@ webhooks: type: string comment: type: string - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - reviewers: &633 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + reviewers: &636 type: array items: type: object @@ -111861,7 +112196,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &634 + workflow_job_run: &637 type: object properties: conclusion: @@ -112607,18 +112942,18 @@ webhooks: type: string enum: - rejected - approver: *632 + approver: *635 comment: type: string - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - reviewers: *633 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + reviewers: *636 sender: *4 since: type: string - workflow_job_run: *634 + workflow_job_run: *637 workflow_job_runs: type: array items: @@ -113335,13 +113670,13 @@ webhooks: type: string enum: - requested - enterprise: *620 + enterprise: *623 environment: type: string - installation: *621 - organization: *622 - repository: *623 - requestor: &640 + installation: *624 + organization: *625 + repository: *626 + requestor: &643 title: User type: - object @@ -115284,12 +115619,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Deployment Workflow Run type: @@ -115980,7 +116315,7 @@ webhooks: type: string enum: - answered - answer: &638 + answer: &641 type: object properties: author_association: @@ -116140,7 +116475,7 @@ webhooks: - created_at - updated_at - body - discussion: &636 + discussion: &639 title: Discussion description: A Discussion in a repository. type: object @@ -116436,7 +116771,7 @@ webhooks: - id labels: type: array - items: *459 + items: *462 required: - repository_url - category @@ -116458,10 +116793,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -116588,11 +116923,11 @@ webhooks: - from required: - category - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -116675,11 +117010,11 @@ webhooks: type: string enum: - closed - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -116761,7 +117096,7 @@ webhooks: type: string enum: - created - comment: &637 + comment: &640 type: object properties: author_association: @@ -116921,11 +117256,11 @@ webhooks: - updated_at - body - reactions - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117008,12 +117343,12 @@ webhooks: type: string enum: - deleted - comment: *637 - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + comment: *640 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117108,12 +117443,12 @@ webhooks: - from required: - body - comment: *637 - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + comment: *640 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117197,11 +117532,11 @@ webhooks: type: string enum: - created - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117283,11 +117618,11 @@ webhooks: type: string enum: - deleted - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117387,11 +117722,11 @@ webhooks: type: string required: - from - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117473,10 +117808,10 @@ webhooks: type: string enum: - labeled - discussion: *636 - enterprise: *620 - installation: *621 - label: &639 + discussion: *639 + enterprise: *623 + installation: *624 + label: &642 title: Label type: object properties: @@ -117509,8 +117844,8 @@ webhooks: - color - default - description - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117593,11 +117928,11 @@ webhooks: type: string enum: - locked - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117679,11 +118014,11 @@ webhooks: type: string enum: - pinned - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117765,11 +118100,11 @@ webhooks: type: string enum: - reopened - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117854,16 +118189,16 @@ webhooks: changes: type: object properties: - new_discussion: *636 - new_repository: *623 + new_discussion: *639 + new_repository: *626 required: - new_discussion - new_repository - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -117946,10 +118281,10 @@ webhooks: type: string enum: - unanswered - discussion: *636 - old_answer: *638 - organization: *622 - repository: *623 + discussion: *639 + old_answer: *641 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118031,12 +118366,12 @@ webhooks: type: string enum: - unlabeled - discussion: *636 - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118119,11 +118454,11 @@ webhooks: type: string enum: - unlocked - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118205,11 +118540,11 @@ webhooks: type: string enum: - unpinned - discussion: *636 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + discussion: *639 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -118282,7 +118617,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *620 + enterprise: *623 forkee: description: The created [`repository`](https://docs.github.com/rest/repos/repos#get-a-repository) resource. @@ -118960,9 +119295,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - forkee @@ -119108,9 +119443,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pages: description: The pages that were updated. type: array @@ -119148,7 +119483,7 @@ webhooks: - action - sha - html_url - repository: *623 + repository: *626 sender: *4 required: - pages @@ -119224,10 +119559,10 @@ webhooks: type: string enum: - created - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: &641 + organization: *625 + repositories: &644 description: An array of repository objects that the installation can access. type: array @@ -119253,8 +119588,8 @@ webhooks: - name - full_name - private - repository: *623 - requester: *640 + repository: *626 + requester: *643 sender: *4 required: - action @@ -119329,11 +119664,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -119410,11 +119745,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -119491,10 +119826,10 @@ webhooks: type: string enum: - added - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories_added: &642 + organization: *625 + repositories_added: &645 description: An array of repository objects, which were added to the installation. type: array @@ -119540,15 +119875,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *623 - repository_selection: &643 + repository: *626 + repository_selection: &646 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *640 + requester: *643 sender: *4 required: - action @@ -119627,10 +119962,10 @@ webhooks: type: string enum: - removed - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories_added: *642 + organization: *625 + repositories_added: *645 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -119657,9 +119992,9 @@ webhooks: - name - full_name - private - repository: *623 - repository_selection: *643 - requester: *640 + repository: *626 + repository_selection: *646 + requester: *643 sender: *4 required: - action @@ -119738,11 +120073,11 @@ webhooks: type: string enum: - suspend - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -119924,10 +120259,10 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 target_type: type: string @@ -120006,11 +120341,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *620 + enterprise: *623 installation: *20 - organization: *622 - repositories: *641 - repository: *623 + organization: *625 + repositories: *644 + repository: *626 requester: type: - 'null' @@ -120258,8 +120593,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -121106,6 +121441,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -121449,8 +121785,8 @@ webhooks: - state - locked - assignee - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -121530,7 +121866,7 @@ webhooks: type: string enum: - deleted - comment: &644 + comment: &647 title: issue comment description: The [comment](https://docs.github.com/rest/issues/comments#get-an-issue-comment) itself. @@ -121697,8 +122033,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -122541,6 +122877,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -122886,8 +123223,8 @@ webhooks: - state - locked - assignee - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -122967,7 +123304,7 @@ webhooks: type: string enum: - edited - changes: &669 + changes: &672 description: The changes to the comment. type: object properties: @@ -122979,9 +123316,9 @@ webhooks: type: string required: - from - comment: *644 - enterprise: *620 - installation: *621 + comment: *647 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) the comment belongs to. @@ -123827,6 +124164,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -124170,8 +124508,8 @@ webhooks: - state - locked - assignee - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -124253,10 +124591,10 @@ webhooks: type: string enum: - assigned - assignee: *640 - enterprise: *620 - installation: *621 - issue: &647 + assignee: *643 + enterprise: *623 + installation: *624 + issue: &650 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -125098,6 +125436,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -125200,8 +125539,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -125281,8 +125620,8 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -126129,6 +126468,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -126374,8 +126714,8 @@ webhooks: required: - state - closed_at - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -126454,8 +126794,8 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -127291,6 +127631,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -127392,8 +127733,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -127472,8 +127813,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -128334,6 +128675,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -128414,7 +128756,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &645 + milestone: &648 title: Milestone description: A collection of related issues and pull requests. type: object @@ -128557,8 +128899,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -128657,8 +128999,8 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -129497,6 +129839,7 @@ webhooks: timeline_url: type: string format: uri + type: *181 title: description: Title of the issue type: string @@ -129602,9 +129945,9 @@ webhooks: - active_lock_reason - body - reactions - label: *639 - organization: *622 - repository: *623 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -129684,8 +130027,8 @@ webhooks: type: string enum: - labeled - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -130523,6 +130866,7 @@ webhooks: timeline_url: type: string format: uri + type: *181 title: description: Title of the issue type: string @@ -130628,9 +130972,9 @@ webhooks: - active_lock_reason - body - reactions - label: *639 - organization: *622 - repository: *623 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -130710,8 +131054,8 @@ webhooks: type: string enum: - locked - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -131574,6 +131918,7 @@ webhooks: timeline_url: type: string format: uri + type: *181 title: description: Title of the issue type: string @@ -131656,8 +132001,8 @@ webhooks: format: uri user_view_type: type: string - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -131736,8 +132081,8 @@ webhooks: type: string enum: - milestoned - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -132597,6 +132942,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -132676,9 +133022,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *645 - organization: *622 - repository: *623 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -134178,8 +134524,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -135021,6 +135367,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -135122,8 +135469,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -135203,9 +135550,9 @@ webhooks: type: string enum: - pinned - enterprise: *620 - installation: *621 - issue: &646 + enterprise: *623 + installation: *624 + issue: &649 title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) itself. @@ -136041,6 +136388,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -136142,8 +136490,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -136222,8 +136570,8 @@ webhooks: type: string enum: - reopened - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -137167,8 +137515,9 @@ webhooks: format: uri user_view_type: type: string - organization: *622 - repository: *623 + type: *181 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138087,6 +138436,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -138668,11 +139018,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *620 - installation: *621 - issue: *646 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *649 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138753,7 +139103,7 @@ webhooks: type: string enum: - unassigned - assignee: &672 + assignee: &675 title: User type: - object @@ -138825,11 +139175,11 @@ webhooks: required: - login - id - enterprise: *620 - installation: *621 - issue: *647 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *650 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138908,12 +139258,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *620 - installation: *621 - issue: *647 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *650 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -138993,8 +139343,8 @@ webhooks: type: string enum: - unlocked - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 issue: title: Issue description: The [issue](https://docs.github.com/rest/issues/issues#get-an-issue) @@ -139858,6 +140208,7 @@ webhooks: title: description: Title of the issue type: string + type: *181 updated_at: type: string format: date-time @@ -139937,8 +140288,8 @@ webhooks: format: uri user_view_type: type: string - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140018,11 +140369,11 @@ webhooks: type: string enum: - unpinned - enterprise: *620 - installation: *621 - issue: *646 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + issue: *649 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140101,11 +140452,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140183,11 +140534,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140297,11 +140648,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - label: *639 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + label: *642 + organization: *625 + repository: *626 sender: *4 required: - action @@ -140383,9 +140734,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: &648 + enterprise: *623 + installation: *624 + marketplace_purchase: &651 title: Marketplace Purchase type: object required: @@ -140473,8 +140824,8 @@ webhooks: type: integer unit_count: type: integer - organization: *622 - previous_marketplace_purchase: &649 + organization: *625 + previous_marketplace_purchase: &652 title: Marketplace Purchase type: object properties: @@ -140558,7 +140909,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *623 + repository: *626 sender: *4 required: - action @@ -140638,10 +140989,10 @@ webhooks: - changed effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: *648 - organization: *622 + enterprise: *623 + installation: *624 + marketplace_purchase: *651 + organization: *625 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140729,7 +141080,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *623 + repository: *626 sender: *4 required: - action @@ -140811,10 +141162,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: *648 - organization: *622 + enterprise: *623 + installation: *624 + marketplace_purchase: *651 + organization: *625 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -140900,7 +141251,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *623 + repository: *626 sender: *4 required: - action @@ -140981,8 +141332,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 marketplace_purchase: title: Marketplace Purchase type: object @@ -141068,9 +141419,9 @@ webhooks: type: integer unit_count: type: integer - organization: *622 - previous_marketplace_purchase: *649 - repository: *623 + organization: *625 + previous_marketplace_purchase: *652 + repository: *626 sender: *4 required: - action @@ -141150,12 +141501,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *620 - installation: *621 - marketplace_purchase: *648 - organization: *622 - previous_marketplace_purchase: *649 - repository: *623 + enterprise: *623 + installation: *624 + marketplace_purchase: *651 + organization: *625 + previous_marketplace_purchase: *652 + repository: *626 sender: *4 required: - action @@ -141257,11 +141608,11 @@ webhooks: type: string required: - to - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 sender: *4 required: - action @@ -141363,11 +141714,11 @@ webhooks: type: - string - 'null' - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 sender: *4 required: - action @@ -141446,11 +141797,11 @@ webhooks: type: string enum: - removed - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 sender: *4 required: - action @@ -141528,11 +141879,11 @@ webhooks: type: string enum: - added - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141610,7 +141961,7 @@ webhooks: required: - login - id - team: &650 + team: &653 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -141803,11 +142154,11 @@ webhooks: type: string enum: - removed - enterprise: *620 - installation: *621 - member: *640 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + member: *643 + organization: *625 + repository: *626 scope: description: The scope of the membership. Currently, can only be `team`. @@ -141886,7 +142237,7 @@ webhooks: required: - login - id - team: *650 + team: *653 required: - action - scope @@ -141968,8 +142319,8 @@ webhooks: type: string enum: - checks_requested - installation: *621 - merge_group: &651 + installation: *624 + merge_group: &654 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -141988,15 +142339,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *345 + head_commit: *348 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142082,10 +142433,10 @@ webhooks: - merged - invalidated - dequeued - installation: *621 - merge_group: *651 - organization: *622 - repository: *623 + installation: *624 + merge_group: *654 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142158,7 +142509,7 @@ webhooks: type: string enum: - deleted - enterprise: *620 + enterprise: *623 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -142266,12 +142617,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *621 - organization: *622 + installation: *624 + organization: *625 repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -142351,11 +142702,11 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 - milestone: *645 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142434,9 +142785,9 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - milestone: &652 + enterprise: *623 + installation: *624 + milestone: &655 title: Milestone description: A collection of related issues and pull requests. type: object @@ -142578,8 +142929,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142658,11 +143009,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - milestone: *645 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142772,11 +143123,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - milestone: *645 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *648 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142856,11 +143207,11 @@ webhooks: type: string enum: - opened - enterprise: *620 - installation: *621 - milestone: *652 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + milestone: *655 + organization: *625 + repository: *626 sender: *4 required: - action @@ -142939,11 +143290,11 @@ webhooks: type: string enum: - blocked - blocked_user: *640 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + blocked_user: *643 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143022,11 +143373,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *640 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + blocked_user: *643 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143105,9 +143456,9 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - membership: &653 + enterprise: *623 + installation: *624 + membership: &656 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -143201,8 +143552,8 @@ webhooks: - role - organization_url - user - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143280,11 +143631,11 @@ webhooks: type: string enum: - member_added - enterprise: *620 - installation: *621 - membership: *653 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + membership: *656 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143363,8 +143714,8 @@ webhooks: type: string enum: - member_invited - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -143486,10 +143837,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 - user: *640 + user: *643 required: - action - invitation @@ -143567,11 +143918,11 @@ webhooks: type: string enum: - member_removed - enterprise: *620 - installation: *621 - membership: *653 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + membership: *656 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143658,11 +144009,11 @@ webhooks: properties: from: type: string - enterprise: *620 - installation: *621 - membership: *653 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + membership: *656 + organization: *625 + repository: *626 sender: *4 required: - action @@ -143738,9 +144089,9 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 package: description: Information about the package. type: object @@ -144263,7 +144614,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &654 + items: &657 title: Ruby Gems metadata type: object properties: @@ -144360,7 +144711,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -144436,9 +144787,9 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 package: description: Information about the package. type: object @@ -144800,7 +145151,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *654 + items: *657 source_url: type: string format: uri @@ -144871,7 +145222,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -145052,12 +145403,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *620 + enterprise: *623 id: type: integer - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - id @@ -145137,7 +145488,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &655 + personal_access_token_request: &658 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -145287,10 +145638,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *620 - organization: *622 + enterprise: *623 + organization: *625 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145369,11 +145720,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *655 - enterprise: *620 - organization: *622 + personal_access_token_request: *658 + enterprise: *623 + organization: *625 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145451,11 +145802,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *655 - enterprise: *620 - organization: *622 + personal_access_token_request: *658 + enterprise: *623 + organization: *625 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145532,11 +145883,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *655 - organization: *622 - enterprise: *620 + personal_access_token_request: *658 + organization: *625 + enterprise: *623 sender: *4 - installation: *621 + installation: *624 required: - action - personal_access_token_request @@ -145640,7 +145991,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *656 + last_response: *659 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -145672,8 +146023,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 zen: description: Random string of GitHub zen. @@ -145918,10 +146269,10 @@ webhooks: - from required: - note - enterprise: *620 - installation: *621 - organization: *622 - project_card: &657 + enterprise: *623 + installation: *624 + organization: *625 + project_card: &660 title: Project Card type: object properties: @@ -146044,7 +146395,7 @@ webhooks: - creator - created_at - updated_at - repository: *623 + repository: *626 sender: *4 required: - action @@ -146125,11 +146476,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - project_card: *657 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_card: *660 + repository: *626 sender: *4 required: - action @@ -146209,9 +146560,9 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 project_card: title: Project Card type: object @@ -146341,7 +146692,7 @@ webhooks: repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -146435,11 +146786,11 @@ webhooks: - from required: - note - enterprise: *620 - installation: *621 - organization: *622 - project_card: *657 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_card: *660 + repository: *626 sender: *4 required: - action @@ -146533,9 +146884,9 @@ webhooks: - from required: - column_id - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 project_card: allOf: - title: Project Card @@ -146732,7 +147083,7 @@ webhooks: type: string required: - after_id - repository: *623 + repository: *626 sender: *4 required: - action @@ -146812,10 +147163,10 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 - organization: *622 - project: &659 + enterprise: *623 + installation: *624 + organization: *625 + project: &662 title: Project type: object properties: @@ -146942,7 +147293,7 @@ webhooks: - creator - created_at - updated_at - repository: *623 + repository: *626 sender: *4 required: - action @@ -147022,10 +147373,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - project_column: &658 + enterprise: *623 + installation: *624 + organization: *625 + project_column: &661 title: Project Column type: object properties: @@ -147065,7 +147416,7 @@ webhooks: - name - created_at - updated_at - repository: *623 + repository: *626 sender: *4 required: - action @@ -147144,14 +147495,14 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - project_column: *658 + enterprise: *623 + installation: *624 + organization: *625 + project_column: *661 repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -147240,11 +147591,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - project_column: *658 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_column: *661 + repository: *626 sender: *4 required: - action @@ -147324,11 +147675,11 @@ webhooks: type: string enum: - moved - enterprise: *620 - installation: *621 - organization: *622 - project_column: *658 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project_column: *661 + repository: *626 sender: *4 required: - action @@ -147408,11 +147759,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - project: *659 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 + repository: *626 sender: *4 required: - action @@ -147492,14 +147843,14 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - project: *659 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 repository: anyOf: - type: 'null' - - *623 + - *626 sender: *4 required: - action @@ -147600,11 +147951,11 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - project: *659 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 + repository: *626 sender: *4 required: - action @@ -147683,11 +148034,11 @@ webhooks: type: string enum: - reopened - enterprise: *620 - installation: *621 - organization: *622 - project: *659 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + project: *662 + repository: *626 sender: *4 required: - action @@ -147768,9 +148119,9 @@ webhooks: type: string enum: - closed - installation: *621 - organization: *622 - projects_v2: &660 + installation: *624 + organization: *625 + projects_v2: &663 title: Projects v2 Project description: A projects v2 project type: object @@ -147918,9 +148269,9 @@ webhooks: type: string enum: - created - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -148001,9 +148352,9 @@ webhooks: type: string enum: - deleted - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -148124,9 +148475,9 @@ webhooks: type: string to: type: string - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -148209,7 +148560,7 @@ webhooks: type: string enum: - archived - changes: &664 + changes: &667 type: object properties: archived_at: @@ -148225,9 +148576,9 @@ webhooks: - string - 'null' format: date-time - installation: *621 - organization: *622 - projects_v2_item: &661 + installation: *624 + organization: *625 + projects_v2_item: &664 title: Projects v2 Item description: An item belonging to a project type: object @@ -148366,9 +148717,9 @@ webhooks: - 'null' to: type: string - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148450,9 +148801,9 @@ webhooks: type: string enum: - created - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148533,9 +148884,9 @@ webhooks: type: string enum: - deleted - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148640,7 +148991,7 @@ webhooks: oneOf: - type: string - type: integer - - &662 + - &665 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -148660,7 +149011,7 @@ webhooks: required: - id - name - - &663 + - &666 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -148689,8 +149040,8 @@ webhooks: oneOf: - type: string - type: integer - - *662 - - *663 + - *665 + - *666 type: - 'null' - string @@ -148713,9 +149064,9 @@ webhooks: - 'null' required: - body - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148812,9 +149163,9 @@ webhooks: type: - string - 'null' - installation: *621 - organization: *622 - projects_v2_item: *661 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148897,10 +149248,10 @@ webhooks: type: string enum: - restored - changes: *664 - installation: *621 - organization: *622 - projects_v2_item: *661 + changes: *667 + installation: *624 + organization: *625 + projects_v2_item: *664 sender: *4 required: - action @@ -148982,9 +149333,9 @@ webhooks: type: string enum: - reopened - installation: *621 - organization: *622 - projects_v2: *660 + installation: *624 + organization: *625 + projects_v2: *663 sender: *4 required: - action @@ -149065,9 +149416,9 @@ webhooks: type: string enum: - created - installation: *621 - organization: *622 - projects_v2_status_update: &665 + installation: *624 + organization: *625 + projects_v2_status_update: &668 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -149202,9 +149553,9 @@ webhooks: type: string enum: - deleted - installation: *621 - organization: *622 - projects_v2_status_update: *665 + installation: *624 + organization: *625 + projects_v2_status_update: *668 sender: *4 required: - action @@ -149350,9 +149701,9 @@ webhooks: - string - 'null' format: date - installation: *621 - organization: *622 - projects_v2_status_update: *665 + installation: *624 + organization: *625 + projects_v2_status_update: *668 sender: *4 required: - action @@ -149423,10 +149774,10 @@ webhooks: title: public event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - repository @@ -149503,13 +149854,13 @@ webhooks: type: string enum: - assigned - assignee: *640 - enterprise: *620 - installation: *621 - number: &666 + assignee: *643 + enterprise: *623 + installation: *624 + number: &669 description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -151858,7 +152209,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -151940,11 +152291,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -154286,7 +154637,7 @@ webhooks: - draft reason: type: string - repository: *623 + repository: *626 sender: *4 required: - action @@ -154368,11 +154719,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -156714,7 +157065,7 @@ webhooks: - draft reason: type: string - repository: *623 + repository: *626 sender: *4 required: - action @@ -156796,13 +157147,13 @@ webhooks: type: string enum: - closed - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: &667 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: &670 allOf: - - *496 + - *499 - type: object properties: allow_auto_merge: @@ -156864,7 +157215,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *623 + repository: *626 sender: *4 required: - action @@ -156945,12 +157296,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -157030,11 +157381,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *620 - milestone: *394 - number: *666 - organization: *622 - pull_request: &668 + enterprise: *623 + milestone: *397 + number: *669 + organization: *625 + pull_request: &671 title: Pull Request type: object properties: @@ -159361,7 +159712,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -159440,11 +159791,11 @@ webhooks: type: string enum: - dequeued - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -161790,7 +162141,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *623 + repository: *626 sender: *4 required: - action @@ -161914,12 +162265,12 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -161999,11 +162350,11 @@ webhooks: type: string enum: - enqueued - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -164334,7 +164685,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -164414,11 +164765,11 @@ webhooks: type: string enum: - labeled - enterprise: *620 - installation: *621 - label: *639 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + label: *642 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -166766,7 +167117,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -166847,10 +167198,10 @@ webhooks: type: string enum: - locked - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -169196,7 +169547,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -169276,12 +169627,12 @@ webhooks: type: string enum: - milestoned - enterprise: *620 - milestone: *394 - number: *666 - organization: *622 - pull_request: *668 - repository: *623 + enterprise: *623 + milestone: *397 + number: *669 + organization: *625 + pull_request: *671 + repository: *626 sender: *4 required: - action @@ -169360,12 +169711,12 @@ webhooks: type: string enum: - opened - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -169446,12 +169797,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -169531,12 +169882,12 @@ webhooks: type: string enum: - reopened - enterprise: *620 - installation: *621 - number: *666 - organization: *622 - pull_request: *667 - repository: *623 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 + pull_request: *670 + repository: *626 sender: *4 required: - action @@ -169911,9 +170262,9 @@ webhooks: - start_side - side - reactions - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: type: object properties: @@ -172143,7 +172494,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *623 + repository: *626 sender: *4 required: - action @@ -172223,7 +172574,7 @@ webhooks: type: string enum: - deleted - comment: &670 + comment: &673 title: Pull Request Review Comment description: The [comment](https://docs.github.com/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -172516,9 +172867,9 @@ webhooks: - start_side - side - reactions - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: type: object properties: @@ -174736,7 +175087,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *623 + repository: *626 sender: *4 required: - action @@ -174816,11 +175167,11 @@ webhooks: type: string enum: - edited - changes: *669 - comment: *670 - enterprise: *620 - installation: *621 - organization: *622 + changes: *672 + comment: *673 + enterprise: *623 + installation: *624 + organization: *625 pull_request: type: object properties: @@ -177041,7 +177392,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *623 + repository: *626 sender: *4 required: - action @@ -177122,9 +177473,9 @@ webhooks: type: string enum: - dismissed - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -179357,7 +179708,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 + repository: *626 review: description: The review that was affected. type: object @@ -179603,9 +179954,9 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -181719,8 +182070,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 - review: &671 + repository: *626 + review: &674 description: The review that was affected. type: object properties: @@ -181953,12 +182304,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -184305,7 +184656,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_reviewer: title: User type: @@ -184391,12 +184742,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -186750,7 +187101,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_team: title: Team description: Groups of organization members that gives permissions @@ -186945,12 +187296,12 @@ webhooks: type: string enum: - review_requested - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -189299,7 +189650,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_reviewer: title: User type: @@ -189386,12 +189737,12 @@ webhooks: type: string enum: - review_requested - enterprise: *620 - installation: *621 + enterprise: *623 + installation: *624 number: description: The pull request number. type: integer - organization: *622 + organization: *625 pull_request: title: Pull Request type: object @@ -191731,7 +192082,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 requested_team: title: Team description: Groups of organization members that gives permissions @@ -191915,9 +192266,9 @@ webhooks: type: string enum: - submitted - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -194153,8 +194504,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 - review: *671 + repository: *626 + review: *674 sender: *4 required: - action @@ -194234,9 +194585,9 @@ webhooks: type: string enum: - resolved - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -196367,7 +196718,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 + repository: *626 sender: *4 thread: type: object @@ -196759,9 +197110,9 @@ webhooks: type: string enum: - unresolved - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 pull_request: title: Simple Pull Request type: object @@ -198875,7 +199226,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *623 + repository: *626 sender: *4 thread: type: object @@ -199269,10 +199620,10 @@ webhooks: type: string before: type: string - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -201607,7 +201958,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -201689,11 +202040,11 @@ webhooks: type: string enum: - unassigned - assignee: *672 - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + assignee: *675 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -204043,7 +204394,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -204122,11 +204473,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *620 - installation: *621 - label: *639 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + label: *642 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -206465,7 +206816,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -206546,10 +206897,10 @@ webhooks: type: string enum: - unlocked - enterprise: *620 - installation: *621 - number: *666 - organization: *622 + enterprise: *623 + installation: *624 + number: *669 + organization: *625 pull_request: title: Pull Request type: object @@ -208878,7 +209229,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *623 + repository: *626 sender: *4 required: - action @@ -209081,7 +209432,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *620 + enterprise: *623 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -209176,8 +209527,8 @@ webhooks: - url - author - committer - installation: *621 - organization: *622 + installation: *624 + organization: *625 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -209765,9 +210116,9 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 registry_package: type: object properties: @@ -210244,7 +210595,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *654 + items: *657 summary: type: string tag_name: @@ -210300,7 +210651,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -210378,9 +210729,9 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 registry_package: type: object properties: @@ -210692,7 +211043,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *654 + items: *657 summary: type: string tag_name: @@ -210742,7 +211093,7 @@ webhooks: - owner - package_version - registry - repository: *623 + repository: *626 sender: *4 required: - action @@ -210819,10 +211170,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - release: &673 + enterprise: *623 + installation: *624 + organization: *625 + release: &676 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -211138,7 +211489,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *623 + repository: *626 sender: *4 required: - action @@ -211215,11 +211566,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - release: *673 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *676 + repository: *626 sender: *4 required: - action @@ -211336,11 +211687,11 @@ webhooks: type: boolean required: - to - enterprise: *620 - installation: *621 - organization: *622 - release: *673 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *676 + repository: *626 sender: *4 required: - action @@ -211418,9 +211769,9 @@ webhooks: type: string enum: - prereleased - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 release: title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) @@ -211741,7 +212092,7 @@ webhooks: - string - 'null' format: uri - repository: *623 + repository: *626 sender: *4 required: - action @@ -211817,10 +212168,10 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 - release: &674 + enterprise: *623 + installation: *624 + organization: *625 + release: &677 title: Release description: The [release](https://docs.github.com/rest/releases/releases/#get-a-release) object. @@ -212138,7 +212489,7 @@ webhooks: - string - 'null' format: uri - repository: *623 + repository: *626 sender: *4 required: - action @@ -212214,11 +212565,11 @@ webhooks: type: string enum: - released - enterprise: *620 - installation: *621 - organization: *622 - release: *673 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *676 + repository: *626 sender: *4 required: - action @@ -212294,11 +212645,11 @@ webhooks: type: string enum: - unpublished - enterprise: *620 - installation: *621 - organization: *622 - release: *674 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + release: *677 + repository: *626 sender: *4 required: - action @@ -212374,11 +212725,11 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_advisory: *552 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_advisory: *555 sender: *4 required: - action @@ -212454,11 +212805,11 @@ webhooks: type: string enum: - reported - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_advisory: *552 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_advisory: *555 sender: *4 required: - action @@ -212534,10 +212885,10 @@ webhooks: type: string enum: - archived - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212614,10 +212965,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212695,10 +213046,10 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212783,10 +213134,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212901,10 +213252,10 @@ webhooks: - 'null' items: type: string - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -212976,10 +213327,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 status: type: string @@ -213060,10 +213411,10 @@ webhooks: type: string enum: - privatized - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213140,10 +213491,10 @@ webhooks: type: string enum: - publicized - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213237,10 +213588,10 @@ webhooks: - name required: - repository - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213320,11 +213671,11 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_ruleset: *226 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_ruleset: *229 sender: *4 required: - action @@ -213402,11 +213753,11 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_ruleset: *226 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_ruleset: *229 sender: *4 required: - action @@ -213484,11 +213835,11 @@ webhooks: type: string enum: - edited - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - repository_ruleset: *226 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + repository_ruleset: *229 changes: type: object properties: @@ -213507,16 +213858,16 @@ webhooks: properties: added: type: array - items: *220 + items: *223 deleted: type: array - items: *220 + items: *223 updated: type: array items: type: object properties: - condition: *220 + condition: *223 changes: type: object properties: @@ -213549,16 +213900,16 @@ webhooks: properties: added: type: array - items: *225 + items: *228 deleted: type: array - items: *225 + items: *228 updated: type: array items: type: object properties: - rule: *225 + rule: *228 changes: type: object properties: @@ -213795,10 +214146,10 @@ webhooks: - from required: - owner - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213876,10 +214227,10 @@ webhooks: type: string enum: - unarchived - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -213957,7 +214308,7 @@ webhooks: type: string enum: - create - alert: &675 + alert: &678 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -214081,10 +214432,10 @@ webhooks: type: string enum: - open - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214294,10 +214645,10 @@ webhooks: type: string enum: - dismissed - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214375,11 +214726,11 @@ webhooks: type: string enum: - reopen - alert: *675 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *678 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214581,10 +214932,10 @@ webhooks: enum: - fixed - open - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214662,7 +215013,7 @@ webhooks: type: string enum: - created - alert: &676 + alert: &679 type: object properties: number: *52 @@ -214772,10 +215123,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -214856,11 +215207,11 @@ webhooks: type: string enum: - created - alert: *676 - installation: *621 - location: *677 - organization: *622 - repository: *623 + alert: *679 + installation: *624 + location: *680 + organization: *625 + repository: *626 sender: *4 required: - location @@ -215098,11 +215449,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215180,11 +215531,11 @@ webhooks: type: string enum: - reopened - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215262,11 +215613,11 @@ webhooks: type: string enum: - resolved - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215344,11 +215695,11 @@ webhooks: type: string enum: - validated - alert: *676 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + alert: *679 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -215478,10 +215829,10 @@ webhooks: - organization - enterprise - - repository: *623 - enterprise: *620 - installation: *621 - organization: *622 + repository: *626 + enterprise: *623 + installation: *624 + organization: *625 sender: *4 required: - action @@ -215559,11 +215910,11 @@ webhooks: type: string enum: - published - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - security_advisory: &678 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + security_advisory: &681 description: The details of the security advisory, including summary, description, and severity. type: object @@ -215749,11 +216100,11 @@ webhooks: type: string enum: - updated - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 - security_advisory: *678 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 + security_advisory: *681 sender: *4 required: - action @@ -215826,10 +216177,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -216015,11 +216366,11 @@ webhooks: from: type: object properties: - security_and_analysis: *219 - enterprise: *620 - installation: *621 - organization: *622 - repository: *273 + security_and_analysis: *222 + enterprise: *623 + installation: *624 + organization: *625 + repository: *276 sender: *4 required: - changes @@ -216097,12 +216448,12 @@ webhooks: type: string enum: - cancelled - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: &679 + sponsorship: &682 type: object properties: created_at: @@ -216407,12 +216758,12 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - sponsorship @@ -216500,12 +216851,12 @@ webhooks: type: string required: - from - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - changes @@ -216582,17 +216933,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &680 + effective_date: &683 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: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - sponsorship @@ -216666,7 +217017,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &681 + changes: &684 type: object properties: tier: @@ -216710,13 +217061,13 @@ webhooks: - from required: - tier - effective_date: *680 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + effective_date: *683 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - changes @@ -216793,13 +217144,13 @@ webhooks: type: string enum: - tier_changed - changes: *681 - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + changes: *684 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - sponsorship: *679 + sponsorship: *682 required: - action - changes @@ -216873,10 +217224,10 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -216960,10 +217311,10 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -217397,15 +217748,15 @@ webhooks: type: - string - 'null' - enterprise: *620 + enterprise: *623 id: description: The unique identifier of the status. type: integer - installation: *621 + installation: *624 name: type: string - organization: *622 - repository: *623 + organization: *625 + repository: *626 sender: *4 sha: description: The Commit SHA. @@ -217521,9 +217872,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217613,9 +217964,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217705,9 +218056,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217797,9 +218148,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *74 - installation: *621 - organization: *622 - repository: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -217876,12 +218227,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - team: &682 + team: &685 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -218074,9 +218425,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -218546,7 +218897,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -218622,9 +218973,9 @@ webhooks: type: string enum: - created - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -219094,7 +219445,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -219171,9 +219522,9 @@ webhooks: type: string enum: - deleted - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -219643,7 +219994,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -219787,9 +220138,9 @@ webhooks: - from required: - permissions - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -220259,7 +220610,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - changes @@ -220337,9 +220688,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *620 - installation: *621 - organization: *622 + enterprise: *623 + installation: *624 + organization: *625 repository: title: Repository description: A git repository @@ -220809,7 +221160,7 @@ webhooks: - topics - visibility sender: *4 - team: *682 + team: *685 required: - action - team @@ -220885,10 +221236,10 @@ webhooks: type: string enum: - started - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 required: - action @@ -220961,17 +221312,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *620 + enterprise: *623 inputs: type: - object - 'null' additionalProperties: true - installation: *621 - organization: *622 + installation: *624 + organization: *625 ref: type: string - repository: *623 + repository: *626 sender: *4 workflow: type: string @@ -221053,10 +221404,10 @@ webhooks: type: string enum: - completed - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: allOf: @@ -221312,7 +221663,7 @@ webhooks: type: string required: - conclusion - deployment: *414 + deployment: *417 required: - action - repository @@ -221391,10 +221742,10 @@ webhooks: type: string enum: - in_progress - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: allOf: @@ -221676,7 +222027,7 @@ webhooks: required: - status - steps - deployment: *414 + deployment: *417 required: - action - repository @@ -221755,10 +222106,10 @@ webhooks: type: string enum: - queued - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: type: object @@ -221904,7 +222255,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *414 + deployment: *417 required: - action - repository @@ -221983,10 +222334,10 @@ webhooks: type: string enum: - waiting - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 workflow_job: type: object @@ -222133,7 +222484,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *414 + deployment: *417 required: - action - repository @@ -222213,12 +222564,12 @@ webhooks: type: string enum: - completed - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Workflow Run type: object @@ -223237,12 +223588,12 @@ webhooks: type: string enum: - in_progress - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Workflow Run type: object @@ -224246,12 +224597,12 @@ webhooks: type: string enum: - requested - enterprise: *620 - installation: *621 - organization: *622 - repository: *623 + enterprise: *623 + installation: *624 + organization: *625 + repository: *626 sender: *4 - workflow: *635 + workflow: *638 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json index 0c509214ac..d37f96f85e 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.json @@ -5501,7 +5501,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -6586,7 +6586,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7450,7 +7450,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7879,7 +7879,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -10154,7 +10154,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -11277,7 +11277,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12264,7 +12264,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12954,7 +12954,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -40456,7 +40456,7 @@ }, "patch": { "summary": "Create or update custom properties for an enterprise", - "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", "tags": [ "enterprise-admin" ], @@ -41373,6 +41373,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -54838,6 +54853,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -72930,6 +73012,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -79646,6 +79795,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -127587,6 +127803,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -135018,7 +135301,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -136118,7 +136401,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -138157,25 +138440,1001 @@ } }, "x-github": { - "triggersNotification": true, + "triggersNotification": true, + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/invitations/{invitation_id}/teams": { + "get": { + "summary": "List organization invitation teams", + "description": "List all teams associated with an invitation. In order to see invitations\nin an organization, the authenticated user must be an organization owner.\n\nThis endpoint is not available for [Enterprise Managed User (EMU) organizations](https://docs.github.com/enterprise-cloud@latest//admin/identity-and-access-management/using-enterprise-managed-users-for-iam/about-enterprise-managed-users).", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-invitation-teams", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "invitation_id", + "description": "The unique identifier of the invitation.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VGVhbTE=" + ] + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1" + ] + }, + "members_url": { + "type": "string", + "examples": [ + "https://api.github.com/organizations/1/team/1/members{/member}" + ] + }, + "name": { + "description": "Name of the team", + "type": "string", + "examples": [ + "Justice League" + ] + }, + "description": { + "description": "Description of the team", + "type": [ + "string", + "null" + ], + "examples": [ + "A great team." + ] + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "examples": [ + "admin" + ] + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "examples": [ + "closed" + ] + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "examples": [ + "notifications_enabled" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "repositories_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1/repos" + ] + }, + "slug": { + "type": "string", + "examples": [ + "justice-league" + ] + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "type": "string", + "examples": [ + "uid=example,ou=users,dc=github,dc=com" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 1, + "node_id": "MDQ6VGVhbTE=", + "url": "https://api.github.com/teams/1", + "html_url": "https://github.com/orgs/github/teams/justice-league", + "name": "Justice League", + "slug": "justice-league", + "description": "A great team.", + "privacy": "closed", + "notification_setting": "notifications_enabled", + "permission": "admin", + "members_url": "https://api.github.com/teams/1/members{/member}", + "repositories_url": "https://api.github.com/teams/1/repos", + "parent": null + } + ] + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } - } - }, - "/orgs/{org}/invitations/{invitation_id}/teams": { - "get": { - "summary": "List organization invitation teams", - "description": "List all teams associated with an invitation. In order to see invitations\nin an organization, the authenticated user must be an organization owner.\n\nThis endpoint is not available for [Enterprise Managed User (EMU) organizations](https://docs.github.com/enterprise-cloud@latest//admin/identity-and-access-management/using-enterprise-managed-users-for-iam/about-enterprise-managed-users).", + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", "tags": [ "orgs" ], - "operationId": "orgs/list-invitation-teams", + "operationId": "orgs/delete-issue-type", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams" + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization" }, "parameters": [ { @@ -138188,281 +139447,47 @@ } }, { - "name": "invitation_id", - "description": "The unique identifier of the invitation.", + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", "in": "path", "required": true, "schema": { "type": "integer" } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "name": "page", - "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } } ], "responses": { - "200": { - "description": "Response", + "204": { + "description": "Response" + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", "content": { "application/json": { "schema": { - "type": "array", - "items": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "slug": { - "type": "string" - }, - "description": { - "type": [ - "string", - "null" - ] - }, - "privacy": { - "type": "string" - }, - "notification_setting": { - "type": "string" - }, - "permission": { - "type": "string" - }, - "permissions": { - "type": "object", - "properties": { - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - }, - "admin": { - "type": "boolean" - } - }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] - }, - "url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "anyOf": [ - { - "type": "null" - }, - { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "examples": [ - 1 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDQ6VGVhbTE=" - ] - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1" - ] - }, - "members_url": { - "type": "string", - "examples": [ - "https://api.github.com/organizations/1/team/1/members{/member}" - ] - }, - "name": { - "description": "Name of the team", - "type": "string", - "examples": [ - "Justice League" - ] - }, - "description": { - "description": "Description of the team", - "type": [ - "string", - "null" - ], - "examples": [ - "A great team." - ] - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "examples": [ - "admin" - ] - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "examples": [ - "closed" - ] - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "examples": [ - "notifications_enabled" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "repositories_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1/repos" - ] - }, - "slug": { - "type": "string", - "examples": [ - "justice-league" - ] - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "type": "string", - "examples": [ - "uid=example,ou=users,dc=github,dc=com" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ] - } - ] - } + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "parent" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 1, - "node_id": "MDQ6VGVhbTE=", - "url": "https://api.github.com/teams/1", - "html_url": "https://github.com/orgs/github/teams/justice-league", - "name": "Justice League", - "slug": "justice-league", - "description": "A great team.", - "privacy": "closed", - "notification_setting": "notifications_enabled", - "permission": "admin", - "members_url": "https://api.github.com/teams/1/members{/member}", - "repositories_url": "https://api.github.com/teams/1/repos", - "parent": null + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" } - ] + } } } } - }, - "headers": { - "Link": { - "example": "; rel=\"next\", ; rel=\"last\"", - "schema": { - "type": "string" - } - } } }, "404": { @@ -138496,7 +139521,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -138564,6 +139589,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -139870,6 +140904,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -168414,7 +169515,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -169103,6 +170204,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -352192,6 +353308,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -369874,7 +371057,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -373954,6 +375137,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -375287,6 +376479,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -377192,6 +378451,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -378462,6 +379731,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -385886,6 +387222,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -390648,6 +392051,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -395207,6 +396677,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -397096,6 +398633,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -398364,6 +399911,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -401532,6 +403146,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -404497,6 +406178,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -424175,6 +425923,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -427237,6 +429052,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -430267,6 +432149,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -433402,6 +435351,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -447237,6 +449253,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -576570,6 +578653,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "performed_via_github_app": { "anyOf": [ { @@ -622379,7 +624529,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -626265,6 +628415,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -660644,6 +662861,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -664409,6 +666693,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -668176,6 +670527,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -672694,7 +675112,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -679289,6 +681707,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -683056,6 +685541,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -893319,7 +895871,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -896379,7 +898931,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -899344,7 +901896,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -902309,7 +904861,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -905408,7 +907960,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -908514,7 +911066,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -913615,7 +916167,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -918017,6 +920569,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -922253,6 +924872,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -926513,6 +929199,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -930210,6 +932963,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -933460,6 +936280,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -936915,6 +939802,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -940177,6 +943131,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -943616,6 +946637,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -946902,6 +949990,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -950216,6 +953371,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -953458,6 +956680,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -958770,6 +962059,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -962008,6 +965364,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -965382,6 +968805,73 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -968377,6 +971867,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -970386,6 +973943,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -973732,6 +977356,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -976977,6 +980668,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -980289,6 +984047,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -983504,6 +987329,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -1394197,6 +1398089,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1397857,6 +1401816,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1402471,6 +1406497,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1406131,6 +1410224,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1410745,6 +1414905,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1414405,6 +1418632,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1419019,6 +1423313,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1422679,6 +1427040,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", diff --git a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml index 289687c26b..598e45cf23 100644 --- a/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.2022-11-28.deref.yaml @@ -905,7 +905,7 @@ paths: - subscriptions_url - type - url - type: &327 + type: &330 type: string description: The type of credit the user is receiving. enum: @@ -1071,7 +1071,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: - - &638 + - &641 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1811,7 +1811,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &648 + schema: &651 title: Scim Error description: Scim Error type: object @@ -2372,7 +2372,7 @@ paths: - write dependabot_secrets: type: string - description: The leve of permission to grant the access + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -11648,7 +11648,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &441 + instances_url: &444 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11684,7 +11684,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &442 + dismissed_reason: &445 type: - string - 'null' @@ -11695,14 +11695,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &443 + dismissed_comment: &446 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &444 + rule: &447 type: object properties: id: @@ -11763,7 +11763,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &445 + tool: &448 type: object properties: name: *85 @@ -11774,15 +11774,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *86 - most_recent_instance: &446 + most_recent_instance: &449 type: object properties: - ref: &439 + ref: &442 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &456 + analysis_key: &459 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11793,7 +11793,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &457 + category: &460 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -14105,7 +14105,7 @@ paths: parent: anyOf: - type: 'null' - - &290 + - &293 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -15281,7 +15281,7 @@ paths: - direct - transitive - - security_advisory: &493 + security_advisory: &496 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15517,7 +15517,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: &494 + auto_dismissed_at: &497 type: - string - 'null' @@ -16015,7 +16015,7 @@ paths: - name - created_on examples: - default: &336 + default: &339 value: total_count: 2 network_configurations: @@ -16238,7 +16238,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: - *38 - - &337 + - &340 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -16250,7 +16250,7 @@ paths: description: Response content: application/json: - schema: &338 + schema: &341 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -16289,7 +16289,7 @@ paths: - subnet_id - region examples: - default: &339 + default: &342 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -16440,6 +16440,10 @@ paths: Creates new or updates existing custom properties defined for an enterprise in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be an administrator for the enterprise. tags: - enterprise-admin @@ -16612,7 +16616,7 @@ paths: required: true content: application/json: - schema: &309 + schema: &312 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16657,6 +16661,17 @@ paths: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type examples: @@ -16980,7 +16995,7 @@ paths: type: object description: A repository rule. oneOf: - - &600 + - &603 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16992,7 +17007,7 @@ paths: type: string enum: - creation - - &601 + - &604 title: update description: Only allow users with bypass permission to update matching refs. @@ -17013,7 +17028,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &603 + - &606 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17025,7 +17040,7 @@ paths: type: string enum: - deletion - - &604 + - &607 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17037,7 +17052,7 @@ paths: type: string enum: - required_linear_history - - &605 + - &608 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -17113,7 +17128,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &606 + - &609 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17137,7 +17152,7 @@ paths: type: string required: - required_deployment_environments - - &607 + - &610 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -17149,7 +17164,7 @@ paths: type: string enum: - required_signatures - - &608 + - &611 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -17200,7 +17215,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &609 + - &612 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -17247,7 +17262,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &610 + - &613 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -17259,7 +17274,7 @@ paths: type: string enum: - non_fast_forward - - &611 + - &614 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -17295,7 +17310,7 @@ paths: required: - operator - pattern - - &612 + - &615 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -17331,7 +17346,7 @@ paths: required: - operator - pattern - - &613 + - &616 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -17367,7 +17382,7 @@ paths: required: - operator - pattern - - &614 + - &617 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -17403,7 +17418,7 @@ paths: required: - operator - pattern - - &615 + - &618 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -17529,7 +17544,7 @@ paths: maximum: 100 required: - max_file_size - - &616 + - &619 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17578,7 +17593,7 @@ paths: - repository_id required: - workflows - - &617 + - &620 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17735,7 +17750,7 @@ paths: conditions: anyOf: - *117 - - &314 + - &317 title: Organization ruleset conditions type: object description: |- @@ -18019,7 +18034,7 @@ paths: type: string format: date-time examples: - default: &316 + default: &319 value: - version_id: 3 actor: @@ -18072,7 +18087,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &320 allOf: - *127 - type: object @@ -18127,7 +18142,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *38 - - &318 + - &321 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18138,7 +18153,7 @@ paths: enum: - open - resolved - - &319 + - &322 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18148,7 +18163,7 @@ paths: required: false schema: type: string - - &320 + - &323 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18157,7 +18172,7 @@ paths: required: false schema: type: string - - &321 + - &324 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. @@ -18173,7 +18188,7 @@ paths: - *17 - *82 - *83 - - &322 + - &325 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18182,7 +18197,7 @@ paths: required: false schema: type: string - - &323 + - &326 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18191,7 +18206,7 @@ paths: schema: type: boolean default: false - - &324 + - &327 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18207,7 +18222,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 type: object properties: number: *96 @@ -18223,14 +18238,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &630 + state: &633 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: &631 + resolution: &634 type: - string - 'null' @@ -18335,7 +18350,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &326 + default: &329 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18598,7 +18613,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &331 type: object properties: total_minutes_used: @@ -18668,7 +18683,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &329 + default: &332 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -18706,7 +18721,7 @@ paths: description: Success content: application/json: - schema: &330 + schema: &333 type: object properties: total_advanced_security_committers: @@ -18769,7 +18784,7 @@ paths: required: - repositories examples: - default: &331 + default: &334 value: total_advanced_security_committers: 2 total_count: 2 @@ -19008,7 +19023,7 @@ paths: description: Response content: application/json: - schema: &332 + schema: &335 type: object properties: total_gigabytes_bandwidth_used: @@ -19026,7 +19041,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &333 + default: &336 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -19058,7 +19073,7 @@ paths: description: Response content: application/json: - schema: &334 + schema: &337 type: object properties: days_left_in_billing_cycle: @@ -19076,7 +19091,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &335 + default: &338 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -19331,7 +19346,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-an-enterprise-team parameters: - *38 - - &289 + - &292 name: team_slug description: The slug of the team name. in: path @@ -19705,7 +19720,7 @@ paths: milestone: anyOf: - type: 'null' - - &481 + - &484 title: Milestone description: A collection of related issues and pull requests. @@ -19877,6 +19892,59 @@ paths: timeline_url: type: string format: uri + type: &278 + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description repository: *61 performed_via_github_app: anyOf: @@ -19969,7 +20037,7 @@ paths: - author_association - created_at - updated_at - comment: &540 + comment: &543 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20544,7 +20612,7 @@ paths: url: type: string format: uri - user: &687 + user: &690 title: Public User description: Public User type: object @@ -22439,7 +22507,7 @@ paths: - closed - all default: open - - &278 + - &281 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -22490,7 +22558,7 @@ paths: type: array items: *148 examples: - default: &279 + default: &282 value: - id: 1 node_id: MDU6SXNzdWUx @@ -23901,14 +23969,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: - - &359 + - &362 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &360 + - &363 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -23979,7 +24047,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &373 + '301': &376 description: Moved permanently content: application/json: @@ -24001,7 +24069,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &572 name: all description: If `true`, show notifications marked as read. in: query @@ -24009,7 +24077,7 @@ paths: schema: type: boolean default: false - - &570 + - &573 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -24019,7 +24087,7 @@ paths: type: boolean default: false - *138 - - &571 + - &574 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: @@ -24390,7 +24458,7 @@ paths: type: boolean examples: - false - security_and_analysis: &311 + security_and_analysis: &314 type: - object - 'null' @@ -24545,7 +24613,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &575 value: - id: '1' repository: @@ -25098,7 +25166,7 @@ paths: type: array items: *56 examples: - default: &704 + default: &707 value: - login: github id: 1 @@ -26101,7 +26169,7 @@ paths: type: integer repository_cache_usages: type: array - items: &378 + items: &381 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -26774,7 +26842,7 @@ paths: type: array items: *61 examples: - default: &698 + default: &701 value: total_count: 1 repositories: @@ -27597,7 +27665,7 @@ paths: type: array items: *190 examples: - default: &690 + default: &693 value: total_count: 1 repositories: @@ -28640,7 +28708,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &401 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -28675,7 +28743,7 @@ paths: - key_id - key examples: - default: &399 + default: &402 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29088,7 +29156,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *164 - - &383 + - &386 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29706,7 +29774,7 @@ paths: bundle_url: type: string examples: - default: &412 + default: &415 value: attestations: - bundle: @@ -29875,7 +29943,7 @@ paths: type: array items: *4 examples: - default: &280 + default: &283 value: - login: octocat id: 1 @@ -30053,7 +30121,7 @@ paths: application/json: schema: type: array - items: &429 + items: &432 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -30184,7 +30252,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &430 + default: &433 value: - id: 21 number: 42 @@ -30297,7 +30365,7 @@ paths: be returned. in: query required: false - schema: &440 + schema: &443 type: string description: Severity of a code scanning alert. enum: @@ -31267,7 +31335,7 @@ paths: type: integer codespaces: type: array - items: &281 + items: &284 type: object title: Codespace description: A codespace. @@ -31302,7 +31370,7 @@ paths: machine: anyOf: - type: 'null' - - &469 + - &472 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -31589,7 +31657,7 @@ paths: - pulls_url - recent_folders examples: - default: &282 + default: &285 value: total_count: 3 codespaces: @@ -32254,7 +32322,7 @@ paths: - updated_at - visibility examples: - default: &470 + default: &473 value: total_count: 2 secrets: @@ -32292,7 +32360,7 @@ paths: description: Response content: application/json: - schema: &471 + schema: &474 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32327,7 +32395,7 @@ paths: - key_id - key examples: - default: &472 + default: &475 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32359,7 +32427,7 @@ paths: application/json: schema: *231 examples: - default: &474 + default: &477 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -34128,7 +34196,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &500 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34147,7 +34215,7 @@ paths: - key_id - key examples: - default: &498 + default: &501 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34474,7 +34542,7 @@ paths: application/json: schema: type: array - items: &292 + items: &295 title: Package description: A software package type: object @@ -34545,7 +34613,7 @@ paths: - created_at - updated_at examples: - default: &293 + default: &296 value: - id: 197 name: hello_docker @@ -34729,7 +34797,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &357 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -34819,7 +34887,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &355 + default: &358 value: group_id: '123' group_name: Octocat admins @@ -34874,7 +34942,7 @@ paths: description: Response content: application/json: - schema: &352 + schema: &355 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -34914,7 +34982,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &353 + default: &356 value: groups: - group_id: '123' @@ -35079,7 +35147,7 @@ paths: application/json: schema: type: array - items: &312 + items: &315 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -35093,7 +35161,7 @@ paths: - name - description examples: - default: &313 + default: &316 value: - name: add_assignee description: Assign or remove a user @@ -36243,7 +36311,7 @@ paths: application/json: schema: *20 examples: - default: &536 + default: &539 value: id: 1 account: @@ -36471,7 +36539,7 @@ paths: required: true content: application/json: - schema: &537 + schema: &540 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -36765,7 +36833,7 @@ paths: type: array items: *277 examples: - default: &291 + default: &294 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -36788,6 +36856,243 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - *164 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *278 + examples: + default: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - *164 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *278 + examples: + default: &279 + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - *164 + - &280 + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *278 + examples: + default: *279 + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - *164 + - *280 + responses: + '204': + description: Response + '422': *7 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -36840,7 +37145,13 @@ paths: - closed - all default: open - - *278 + - *281 + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -36865,7 +37176,7 @@ paths: type: array items: *148 examples: - default: *279 + default: *282 headers: Link: *37 '404': *6 @@ -36923,7 +37234,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '422': *15 @@ -37019,9 +37330,9 @@ paths: type: integer codespaces: type: array - items: *281 + items: *284 examples: - default: *282 + default: *285 '304': *35 '500': *95 '401': *23 @@ -37048,7 +37359,7 @@ paths: parameters: - *164 - *212 - - &283 + - &286 name: codespace_name in: path required: true @@ -37083,15 +37394,15 @@ paths: parameters: - *164 - *212 - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: &468 + default: &471 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -37346,7 +37657,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &287 title: Org Membership description: Org Membership type: object @@ -37399,7 +37710,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &285 + response-if-user-has-an-active-admin-membership-with-organization: &288 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -37496,9 +37807,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *287 examples: - response-if-user-already-had-membership-with-organization: *285 + response-if-user-already-had-membership-with-organization: *288 '422': *15 '403': *27 x-github: @@ -37567,7 +37878,7 @@ paths: application/json: schema: type: array - items: &286 + items: &289 title: Migration description: A migration. type: object @@ -37905,7 +38216,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -38084,7 +38395,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *164 - - &287 + - &290 name: migration_id description: The unique identifier of the migration. in: path @@ -38112,7 +38423,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -38282,7 +38593,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *164 - - *287 + - *290 responses: '302': description: Response @@ -38304,7 +38615,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *164 - - *287 + - *290 responses: '204': description: Response @@ -38328,8 +38639,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *164 - - *287 - - &703 + - *290 + - &706 name: repo_name description: repo_name parameter in: path @@ -38357,7 +38668,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *164 - - *287 + - *290 - *17 - *19 responses: @@ -38369,7 +38680,7 @@ paths: type: array items: *190 examples: - default: &298 + default: &301 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -38578,7 +38889,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &288 + items: &291 title: Organization Role description: Organization roles type: object @@ -38787,7 +39098,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -38839,7 +39150,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -38865,7 +39176,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *164 - - *289 + - *292 - *237 responses: '204': @@ -38896,7 +39207,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *164 - - *289 + - *292 - *237 responses: '204': @@ -39017,7 +39328,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -39114,7 +39425,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -39273,7 +39584,7 @@ paths: parent: anyOf: - type: 'null' - - *290 + - *293 required: - id - node_id @@ -39287,7 +39598,7 @@ paths: - slug - parent examples: - default: *291 + default: *294 headers: Link: *37 '404': @@ -39346,7 +39657,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *290 + items: *293 name: type: - string @@ -39463,7 +39774,7 @@ paths: - type - url examples: - default: *280 + default: *283 headers: Link: *37 '404': @@ -39511,7 +39822,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -39653,7 +39964,7 @@ paths: - nuget - container - *164 - - &705 + - &708 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -39689,12 +40000,12 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *293 + default: *296 '403': *27 '401': *23 - '400': &707 + '400': &710 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39716,7 +40027,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &294 + - &297 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 @@ -39734,7 +40045,7 @@ paths: - docker - nuget - container - - &295 + - &298 name: package_name description: The name of the package. in: path @@ -39747,7 +40058,7 @@ paths: description: Response content: application/json: - schema: *292 + schema: *295 examples: default: value: @@ -39799,8 +40110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *294 - - *295 + - *297 + - *298 - *164 responses: '204': @@ -39833,8 +40144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *294 - - *295 + - *297 + - *298 - *164 - name: token description: package token @@ -39867,8 +40178,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: - - *294 - - *295 + - *297 + - *298 - *164 - *19 - *17 @@ -39889,7 +40200,7 @@ paths: application/json: schema: type: array - items: &296 + items: &299 title: Package Version description: A version of a software package type: object @@ -40024,10 +40335,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: - - *294 - - *295 + - *297 + - *298 - *164 - - &297 + - &300 name: package_version_id description: Unique identifier of the package version. in: path @@ -40039,7 +40350,7 @@ paths: description: Response content: application/json: - schema: *296 + schema: *299 examples: default: value: @@ -40075,10 +40386,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *294 - - *295 - - *164 - *297 + - *298 + - *164 + - *300 responses: '204': description: Response @@ -40110,10 +40421,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *294 - - *295 - - *164 - *297 + - *298 + - *164 + - *300 responses: '204': description: Response @@ -40143,7 +40454,7 @@ paths: - *164 - *17 - *19 - - &299 + - &302 name: sort description: The property by which to sort the results. in: query @@ -40154,7 +40465,7 @@ paths: - created_at default: created_at - *84 - - &300 + - &303 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -40166,7 +40477,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &301 + - &304 name: repository description: The name of the repository to use to filter the results. in: query @@ -40175,7 +40486,7 @@ paths: type: string examples: - Hello-World - - &302 + - &305 name: permission description: The permission to use to filter the results. in: query @@ -40184,7 +40495,7 @@ paths: type: string examples: - issues_read - - &303 + - &306 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) @@ -40194,7 +40505,7 @@ paths: schema: type: string format: date-time - - &304 + - &307 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) @@ -40204,7 +40515,7 @@ paths: schema: type: string format: date-time - - &305 + - &308 name: token_id description: The ID of the token in: query @@ -40523,7 +40834,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -40549,14 +40860,14 @@ paths: - *164 - *17 - *19 - - *299 - - *84 - - *300 - - *301 - *302 + - *84 - *303 - *304 - *305 + - *306 + - *307 + - *308 responses: '500': *95 '422': *15 @@ -40840,7 +41151,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -40884,7 +41195,7 @@ paths: type: integer configurations: type: array - items: &306 + items: &309 title: Organization private registry description: Private registry configuration for an organization type: object @@ -41096,7 +41407,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &307 + org-private-registry-with-selected-visibility: &310 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -41198,9 +41509,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *306 + schema: *309 examples: - default: *307 + default: *310 '404': *6 x-github: githubCloudOnly: false @@ -41351,7 +41662,7 @@ paths: application/json: schema: type: array - items: &308 + items: &311 title: Project description: Projects are a way to organize columns and cards of work. @@ -41533,7 +41844,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: default: value: @@ -41571,7 +41882,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &370 + '410': &373 description: Gone content: application/json: @@ -41621,6 +41932,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -41733,7 +42048,7 @@ paths: required: true content: application/json: - schema: *309 + schema: *312 examples: default: value: @@ -41839,7 +42154,7 @@ paths: - octocat/Hello-World properties: type: array - items: &310 + items: &313 title: Custom Property Value description: Custom property name and associated value type: object @@ -41929,7 +42244,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *310 + items: *313 required: - repository_names - properties @@ -41982,7 +42297,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -42122,7 +42437,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -42326,7 +42641,7 @@ paths: description: Response content: application/json: - schema: &372 + schema: &375 title: Full Repository description: Full Repository type: object @@ -42791,7 +43106,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &487 + code_of_conduct: &490 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -42821,7 +43136,7 @@ paths: - key - name - html_url - security_and_analysis: *311 + security_and_analysis: *314 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42905,7 +43220,7 @@ paths: - network_count - subscribers_count examples: - default: &374 + default: &377 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43431,9 +43746,9 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -43458,7 +43773,7 @@ paths: - *164 - *17 - *19 - - &618 + - &621 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43550,7 +43865,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *314 + conditions: *317 rules: type: array description: An array of rules within the ruleset. @@ -43594,7 +43909,7 @@ paths: application/json: schema: *124 examples: - default: &315 + default: &318 value: id: 21 name: super cool ruleset @@ -43649,7 +43964,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *164 - - &619 + - &622 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 @@ -43661,14 +43976,14 @@ paths: x-multi-segment: true - *219 - *215 - - &620 + - &623 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 - - &621 + - &624 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -43688,7 +44003,7 @@ paths: description: Response content: application/json: - schema: &622 + schema: &625 title: Rule Suites description: Response type: array @@ -43744,7 +44059,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &623 + default: &626 value: - id: 21 actor_id: 12 @@ -43788,7 +44103,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *164 - - &624 + - &627 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -43804,7 +44119,7 @@ paths: description: Response content: application/json: - schema: &625 + schema: &628 title: Rule Suite description: Response type: object @@ -43911,7 +44226,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &626 + default: &629 value: id: 21 actor_id: 12 @@ -43986,7 +44301,7 @@ paths: application/json: schema: *124 examples: - default: *315 + default: *318 '404': *6 '500': *95 put: @@ -44035,7 +44350,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *314 + conditions: *317 rules: description: An array of rules within the ruleset. type: array @@ -44076,7 +44391,7 @@ paths: application/json: schema: *124 examples: - default: *315 + default: *318 '404': *6 '500': *95 delete: @@ -44135,7 +44450,7 @@ paths: type: array items: *127 examples: - default: *316 + default: *319 '404': *6 '500': *95 x-github: @@ -44172,7 +44487,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *320 examples: default: value: @@ -44235,14 +44550,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *164 - - *318 - - *319 - - *320 - *321 + - *322 + - *323 + - *324 - *84 - *19 - *17 - - &628 + - &631 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 @@ -44252,7 +44567,7 @@ paths: required: false schema: type: string - - &629 + - &632 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 @@ -44262,9 +44577,9 @@ paths: required: false schema: type: string - - *322 - - *323 - - *324 + - *325 + - *326 + - *327 responses: '200': description: Response @@ -44272,9 +44587,9 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: - default: *326 + default: *329 headers: Link: *37 '404': *6 @@ -44344,7 +44659,7 @@ paths: application/json: schema: type: array - items: &636 + items: &639 description: A repository security advisory. type: object properties: @@ -44588,7 +44903,7 @@ paths: login: type: string description: The username of the user credited. - type: *327 + type: *330 credits_detailed: type: - array @@ -44599,7 +44914,7 @@ paths: type: object properties: user: *4 - type: *327 + type: *330 state: type: string description: The state of the user's acceptance of the @@ -44663,7 +44978,7 @@ paths: - private_fork additionalProperties: false examples: - default: &637 + default: &640 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -45050,9 +45365,9 @@ paths: application/json: schema: type: array - items: *290 + items: *293 examples: - default: *291 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45076,7 +45391,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -45102,7 +45417,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -45137,9 +45452,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45171,9 +45486,9 @@ paths: description: Success content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45201,9 +45516,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *333 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45231,9 +45546,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45273,7 +45588,7 @@ paths: type: array items: *107 examples: - default: *336 + default: *339 headers: Link: *37 x-github: @@ -45474,15 +45789,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: - *164 - - *337 + - *340 responses: '200': description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: *339 + default: *342 headers: Link: *37 x-github: @@ -45520,7 +45835,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &364 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -45572,7 +45887,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &362 + default: &365 value: groups: - group_id: '123' @@ -45618,7 +45933,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *164 - - *289 + - *292 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -45691,7 +46006,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *164 - - *289 + - *292 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -45759,7 +46074,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 headers: Link: *37 '403': *27 @@ -45853,7 +46168,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &343 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45927,7 +46242,7 @@ paths: parent: anyOf: - type: 'null' - - *290 + - *293 members_count: type: integer examples: @@ -46233,7 +46548,7 @@ paths: - repos_count - organization examples: - default: &341 + default: &344 value: id: 1 node_id: MDQ6VGVhbTE= @@ -46304,15 +46619,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *164 - - *289 + - *292 responses: '200': description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 x-github: githubCloudOnly: false @@ -46334,7 +46649,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *164 - - *289 + - *292 requestBody: required: false content: @@ -46397,16 +46712,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '201': description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 '422': *15 '403': *27 @@ -46432,7 +46747,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -46459,7 +46774,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *164 - - *289 + - *292 - *84 - *17 - *19 @@ -46476,7 +46791,7 @@ paths: application/json: schema: type: array - items: &342 + items: &345 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46587,7 +46902,7 @@ paths: - updated_at - url examples: - default: &677 + default: &680 value: - author: login: octocat @@ -46662,7 +46977,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *164 - - *289 + - *292 requestBody: required: true content: @@ -46696,9 +47011,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: &343 + default: &346 value: author: login: octocat @@ -46771,8 +47086,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *164 - - *289 - - &344 + - *292 + - &347 name: discussion_number description: The number that identifies the discussion. in: path @@ -46784,9 +47099,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *343 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46809,8 +47124,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 requestBody: required: false content: @@ -46833,9 +47148,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: &678 + default: &681 value: author: login: octocat @@ -46906,8 +47221,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 responses: '204': description: Response @@ -46934,8 +47249,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *164 - - *289 - - *344 + - *292 + - *347 - *84 - *17 - *19 @@ -46946,7 +47261,7 @@ paths: application/json: schema: type: array - items: &345 + items: &348 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -47026,7 +47341,7 @@ paths: - updated_at - url examples: - default: &679 + default: &682 value: - author: login: octocat @@ -47095,8 +47410,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 + - *347 requestBody: required: true content: @@ -47118,9 +47433,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &346 + default: &349 value: author: login: octocat @@ -47187,9 +47502,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *164 - - *289 - - *344 - - &347 + - *292 + - *347 + - &350 name: comment_number description: The number that identifies the comment. in: path @@ -47201,9 +47516,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47226,9 +47541,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 requestBody: required: true content: @@ -47250,9 +47565,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &680 + default: &683 value: author: login: octocat @@ -47317,9 +47632,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 responses: '204': description: Response @@ -47346,9 +47661,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -47374,7 +47689,7 @@ paths: application/json: schema: type: array - items: &348 + items: &351 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -47418,7 +47733,7 @@ paths: - content - created_at examples: - default: &350 + default: &353 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47469,9 +47784,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 requestBody: required: true content: @@ -47504,9 +47819,9 @@ paths: team discussion comment content: application/json: - schema: *348 + schema: *351 examples: - default: &349 + default: &352 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47535,9 +47850,9 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47561,10 +47876,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *164 - - *289 - - *344 + - *292 - *347 - - &351 + - *350 + - &354 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47597,8 +47912,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47624,9 +47939,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 x-github: @@ -47653,8 +47968,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 requestBody: required: true content: @@ -47686,16 +48001,16 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47719,9 +48034,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *164 - - *289 - - *344 - - *351 + - *292 + - *347 + - *354 responses: '204': description: Response @@ -47745,15 +48060,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *164 - - *289 + - *292 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: *353 + default: *356 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47773,7 +48088,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *164 - - *289 + - *292 requestBody: required: true content: @@ -47797,9 +48112,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *357 examples: - default: *355 + default: *358 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47819,7 +48134,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -47844,7 +48159,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -47879,7 +48194,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *164 - - *289 + - *292 - name: role description: Filters members returned by their role in the team. in: query @@ -47902,7 +48217,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -47933,14 +48248,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *164 - - *289 + - *292 - *212 responses: '200': description: Response content: application/json: - schema: &356 + schema: &359 title: Team Membership description: Team Membership type: object @@ -47968,7 +48283,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &681 + response-if-user-is-a-team-maintainer: &684 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48005,7 +48320,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *164 - - *289 + - *292 - *212 requestBody: required: false @@ -48031,9 +48346,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *359 examples: - response-if-users-membership-with-team-is-now-pending: &682 + response-if-users-membership-with-team-is-now-pending: &685 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48069,7 +48384,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *164 - - *289 + - *292 - *212 responses: '204': @@ -48096,7 +48411,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -48106,7 +48421,7 @@ paths: application/json: schema: type: array - items: &357 + items: &360 title: Team Project description: A team's access to a project. type: object @@ -48175,7 +48490,7 @@ paths: - updated_at - permissions examples: - default: &683 + default: &686 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48239,8 +48554,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *164 - - *289 - - &358 + - *292 + - &361 name: project_id description: The unique identifier of the project. in: path @@ -48252,9 +48567,9 @@ paths: description: Response content: application/json: - schema: *357 + schema: *360 examples: - default: &684 + default: &687 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48317,8 +48632,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *164 - - *289 - - *358 + - *292 + - *361 requestBody: required: false content: @@ -48386,8 +48701,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *164 - - *289 - - *358 + - *292 + - *361 responses: '204': description: Response @@ -48415,7 +48730,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -48427,7 +48742,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -48457,15 +48772,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *164 - - *289 - - *359 - - *360 + - *292 + - *362 + - *363 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &685 + schema: &688 title: Team Repository description: A team's access to a repository. type: object @@ -49107,9 +49422,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *164 - - *289 - - *359 - - *360 + - *292 + - *362 + - *363 requestBody: required: false content: @@ -49155,9 +49470,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *164 - - *289 - - *359 - - *360 + - *292 + - *362 + - *363 responses: '204': description: Response @@ -49184,15 +49499,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *164 - - *289 + - *292 responses: '200': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49215,7 +49530,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *164 - - *289 + - *292 requestBody: required: true content: @@ -49258,7 +49573,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -49291,7 +49606,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -49303,7 +49618,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: &686 + response-if-child-teams-exist: &689 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -49430,7 +49745,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &363 + - &366 name: card_id description: The unique identifier of the card. in: path @@ -49442,7 +49757,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &367 title: Project Card description: Project cards represent a scope of work. type: object @@ -49517,7 +49832,7 @@ paths: - created_at - updated_at examples: - default: &365 + default: &368 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -49573,7 +49888,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *363 + - *366 requestBody: required: false content: @@ -49603,9 +49918,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *365 + default: *368 '304': *35 '403': *27 '401': *23 @@ -49632,7 +49947,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *363 + - *366 responses: '204': description: Response @@ -49676,7 +49991,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *363 + - *366 requestBody: required: true content: @@ -49789,7 +50104,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &366 + - &369 name: column_id description: The unique identifier of the column. in: path @@ -49801,7 +50116,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &370 title: Project Column description: Project columns contain cards of work. type: object @@ -49855,7 +50170,7 @@ paths: - created_at - updated_at examples: - default: &368 + default: &371 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -49890,7 +50205,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *366 + - *369 requestBody: required: true content: @@ -49915,9 +50230,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: *368 + default: *371 '304': *35 '403': *27 '401': *23 @@ -49942,7 +50257,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *366 + - *369 responses: '204': description: Response @@ -49971,7 +50286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *366 + - *369 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -49992,7 +50307,7 @@ paths: application/json: schema: type: array - items: *364 + items: *367 examples: default: value: @@ -50051,7 +50366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *366 + - *369 requestBody: required: true content: @@ -50095,9 +50410,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *365 + default: *368 '304': *35 '403': *27 '401': *23 @@ -50153,7 +50468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *366 + - *369 requestBody: required: true content: @@ -50214,15 +50529,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *358 + - *361 responses: '200': description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: &369 + default: &372 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -50279,7 +50594,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *358 + - *361 requestBody: required: false content: @@ -50328,9 +50643,9 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: *369 + default: *372 '404': description: Not Found if the authenticated user does not have access to the project @@ -50351,7 +50666,7 @@ paths: items: type: string '401': *23 - '410': *370 + '410': *373 '422': *7 x-github: githubCloudOnly: false @@ -50374,7 +50689,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *358 + - *361 responses: '204': description: Delete Success @@ -50395,7 +50710,7 @@ paths: items: type: string '401': *23 - '410': *370 + '410': *373 '404': *6 x-github: githubCloudOnly: false @@ -50419,7 +50734,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *358 + - *361 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -50446,7 +50761,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '404': *6 @@ -50476,7 +50791,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *358 + - *361 - *212 requestBody: required: false @@ -50531,7 +50846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *358 + - *361 - *212 responses: '204': @@ -50563,7 +50878,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *358 + - *361 - *212 responses: '200': @@ -50634,7 +50949,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *358 + - *361 - *17 - *19 responses: @@ -50644,7 +50959,7 @@ paths: application/json: schema: type: array - items: *367 + items: *370 examples: default: value: @@ -50682,7 +50997,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *358 + - *361 requestBody: required: true content: @@ -50706,7 +51021,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: default: value: @@ -50770,7 +51085,7 @@ paths: resources: type: object properties: - core: &371 + core: &374 title: Rate Limit type: object properties: @@ -50787,20 +51102,20 @@ paths: - remaining - reset - used - graphql: *371 - search: *371 - code_search: *371 - source_import: *371 - integration_manifest: *371 - code_scanning_upload: *371 - actions_runner_registration: *371 - scim: *371 - dependency_snapshots: *371 - code_scanning_autofix: *371 + graphql: *374 + search: *374 + code_search: *374 + source_import: *374 + integration_manifest: *374 + code_scanning_upload: *374 + actions_runner_registration: *374 + scim: *374 + dependency_snapshots: *374 + code_scanning_autofix: *374 required: - core - search - rate: *371 + rate: *374 required: - rate - resources @@ -50904,14 +51219,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: default-response: summary: Default response @@ -51416,7 +51731,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *373 + '301': *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51434,8 +51749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -51682,10 +51997,10 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 - '307': &375 + default: *377 + '307': &378 description: Temporary Redirect content: application/json: @@ -51714,8 +52029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -51737,7 +52052,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': *375 + '307': *378 '404': *6 x-github: githubCloudOnly: false @@ -51760,11 +52075,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - - &390 + - &393 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51787,7 +52102,7 @@ paths: type: integer artifacts: type: array - items: &376 + items: &379 title: Artifact description: An artifact type: object @@ -51882,7 +52197,7 @@ paths: - expires_at - updated_at examples: - default: &391 + default: &394 value: total_count: 2 artifacts: @@ -51943,9 +52258,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *359 - - *360 - - &377 + - *362 + - *363 + - &380 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51957,7 +52272,7 @@ paths: description: Response content: application/json: - schema: *376 + schema: *379 examples: default: value: @@ -51995,9 +52310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *359 - - *360 - - *377 + - *362 + - *363 + - *380 responses: '204': description: Response @@ -52021,9 +52336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *359 - - *360 - - *377 + - *362 + - *363 + - *380 - name: archive_format in: path required: true @@ -52037,7 +52352,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52060,14 +52375,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *378 + schema: *381 examples: default: value: @@ -52093,11 +52408,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: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - - &379 + - &382 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 @@ -52131,7 +52446,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &383 title: Repository actions caches description: Repository actions caches type: object @@ -52181,7 +52496,7 @@ paths: - total_count - actions_caches examples: - default: &381 + default: &384 value: total_count: 1 actions_caches: @@ -52213,23 +52528,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: - - *359 - - *360 + - *362 + - *363 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *379 + - *382 responses: '200': description: Response content: application/json: - schema: *380 + schema: *383 examples: - default: *381 + default: *384 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52249,8 +52564,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: - - *359 - - *360 + - *362 + - *363 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52281,9 +52596,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: - - *359 - - *360 - - &382 + - *362 + - *363 + - &385 name: job_id description: The unique identifier of the job. in: path @@ -52295,7 +52610,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &397 title: Job description: Information of a job execution in a workflow run type: object @@ -52642,9 +52957,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: - - *359 - - *360 - - *382 + - *362 + - *363 + - *385 responses: '302': description: Response @@ -52672,9 +52987,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: - - *359 - - *360 - - *382 + - *362 + - *363 + - *385 requestBody: required: false content: @@ -52720,8 +53035,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Status response @@ -52771,8 +53086,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -52835,8 +53150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -52854,7 +53169,7 @@ paths: type: integer secrets: type: array - items: &396 + items: &399 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -52875,7 +53190,7 @@ paths: - created_at - updated_at examples: - default: &397 + default: &400 value: total_count: 2 secrets: @@ -52908,9 +53223,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *359 - - *360 - - *383 + - *362 + - *363 + - *386 - *19 responses: '200': @@ -52927,7 +53242,7 @@ paths: type: integer variables: type: array - items: &400 + items: &403 title: Actions Variable type: object properties: @@ -52961,7 +53276,7 @@ paths: - created_at - updated_at examples: - default: &401 + default: &404 value: total_count: 2 variables: @@ -52994,8 +53309,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53004,7 +53319,7 @@ paths: schema: type: object properties: - enabled: &384 + enabled: &387 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *46 @@ -53037,8 +53352,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -53049,7 +53364,7 @@ paths: schema: type: object properties: - enabled: *384 + enabled: *387 allowed_actions: *46 required: - enabled @@ -53080,14 +53395,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: &385 + schema: &388 type: object properties: access_level: @@ -53105,7 +53420,7 @@ paths: required: - access_level examples: - default: &386 + default: &389 value: access_level: organization x-github: @@ -53130,15 +53445,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: application/json: - schema: *385 + schema: *388 examples: - default: *386 + default: *389 responses: '204': description: Response @@ -53162,8 +53477,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53194,8 +53509,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -53227,8 +53542,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53257,8 +53572,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Success response @@ -53298,8 +53613,8 @@ paths: in: query schema: type: string - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -53343,8 +53658,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53376,8 +53691,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -53451,8 +53766,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: - - *359 - - *360 + - *362 + - *363 responses: '201': description: Response @@ -53488,8 +53803,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: - - *359 - - *360 + - *362 + - *363 responses: '201': description: Response @@ -53519,8 +53834,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '200': @@ -53550,8 +53865,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '204': @@ -53577,8 +53892,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '200': *64 @@ -53603,8 +53918,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: - - *359 - - *360 + - *362 + - *363 - *58 requestBody: required: true @@ -53653,8 +53968,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: - - *359 - - *360 + - *362 + - *363 - *58 requestBody: required: true @@ -53704,8 +54019,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '200': *197 @@ -53735,8 +54050,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: - - *359 - - *360 + - *362 + - *363 - *58 - *198 responses: @@ -53766,9 +54081,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: - - *359 - - *360 - - &404 + - *362 + - *363 + - &407 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -53776,7 +54091,7 @@ paths: required: false schema: type: string - - &405 + - &408 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53784,7 +54099,7 @@ paths: required: false schema: type: string - - &406 + - &409 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53793,7 +54108,7 @@ paths: required: false schema: type: string - - &407 + - &410 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -53820,7 +54135,7 @@ paths: - pending - *17 - *19 - - &408 + - &411 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -53829,7 +54144,7 @@ paths: schema: type: string format: date-time - - &387 + - &390 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53838,13 +54153,13 @@ paths: schema: type: boolean default: false - - &409 + - &412 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &410 + - &413 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -53867,7 +54182,7 @@ paths: type: integer workflow_runs: type: array - items: &388 + items: &391 title: Workflow Run description: An invocation of a workflow type: object @@ -53984,7 +54299,7 @@ paths: type: - array - 'null' - items: &431 + items: &434 title: Pull Request Minimal type: object properties: @@ -54111,7 +54426,7 @@ paths: head_commit: anyOf: - type: 'null' - - &435 + - &438 title: Simple Commit description: A commit. type: object @@ -54226,7 +54541,7 @@ paths: - workflow_url - pull_requests examples: - default: &411 + default: &414 value: total_count: 1 workflow_runs: @@ -54462,24 +54777,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *359 - - *360 - - &389 + - *362 + - *363 + - &392 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *387 + - *390 responses: '200': description: Response content: application/json: - schema: *388 + schema: *391 examples: - default: &392 + default: &395 value: id: 30433642 name: Build @@ -54720,9 +55035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '204': description: Response @@ -54745,9 +55060,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '200': description: Response @@ -54875,9 +55190,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '201': description: Response @@ -54910,12 +55225,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 - *17 - *19 - - *390 + - *393 responses: '200': description: Response @@ -54931,9 +55246,9 @@ paths: type: integer artifacts: type: array - items: *376 + items: *379 examples: - default: *391 + default: *394 headers: Link: *37 x-github: @@ -54957,25 +55272,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *359 - - *360 - - *389 - - &393 + - *362 + - *363 + - *392 + - &396 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *387 + - *390 responses: '200': description: Response content: application/json: - schema: *388 + schema: *391 examples: - default: *392 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54998,10 +55313,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: - - *359 - - *360 - - *389 - - *393 + - *362 + - *363 + - *392 + - *396 - *17 - *19 responses: @@ -55019,9 +55334,9 @@ paths: type: integer jobs: type: array - items: *394 + items: *397 examples: - default: &395 + default: &398 value: total_count: 1 jobs: @@ -55134,10 +55449,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *359 - - *360 - - *389 - - *393 + - *362 + - *363 + - *392 + - *396 responses: '302': description: Response @@ -55165,9 +55480,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '202': description: Response @@ -55200,9 +55515,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: true content: @@ -55269,9 +55584,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '202': description: Response @@ -55304,9 +55619,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 - 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 @@ -55336,9 +55651,9 @@ paths: type: integer jobs: type: array - items: *394 + items: *397 examples: - default: *395 + default: *398 headers: Link: *37 x-github: @@ -55363,9 +55678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '302': description: Response @@ -55392,9 +55707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '204': description: Response @@ -55421,9 +55736,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '200': description: Response @@ -55492,7 +55807,7 @@ paths: items: type: object properties: - type: &506 + type: &509 type: string description: The type of reviewer. enum: @@ -55578,9 +55893,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: true content: @@ -55630,7 +55945,7 @@ paths: application/json: schema: type: array - items: &501 + items: &504 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -55742,7 +56057,7 @@ paths: - created_at - updated_at examples: - default: &502 + default: &505 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55798,9 +56113,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: false content: @@ -55845,9 +56160,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: false content: @@ -55902,9 +56217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '200': description: Response @@ -56041,8 +56356,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -56060,9 +56375,9 @@ paths: type: integer secrets: type: array - items: *396 + items: *399 examples: - default: *397 + default: *400 headers: Link: *37 x-github: @@ -56087,16 +56402,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56118,17 +56433,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '200': description: Response content: application/json: - schema: *396 + schema: *399 examples: - default: &519 + default: &522 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56154,8 +56469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 requestBody: required: true @@ -56213,8 +56528,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '204': @@ -56240,9 +56555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *359 - - *360 - - *383 + - *362 + - *363 + - *386 - *19 responses: '200': @@ -56259,9 +56574,9 @@ paths: type: integer variables: type: array - items: *400 + items: *403 examples: - default: *401 + default: *404 headers: Link: *37 x-github: @@ -56284,8 +56599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -56337,17 +56652,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: - default: &520 + default: &523 value: name: USERNAME value: octocat @@ -56373,8 +56688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 requestBody: required: true @@ -56417,8 +56732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 responses: '204': @@ -56444,8 +56759,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -56463,7 +56778,7 @@ paths: type: integer workflows: type: array - items: &402 + items: &405 title: Workflow description: A GitHub Actions workflow type: object @@ -56581,9 +56896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *359 - - *360 - - &403 + - *362 + - *363 + - &406 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56598,7 +56913,7 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: default: value: @@ -56631,9 +56946,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '204': description: Response @@ -56658,9 +56973,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '204': description: Response @@ -56711,9 +57026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '204': description: Response @@ -56740,19 +57055,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: - - *359 - - *360 - - *403 - - *404 - - *405 + - *362 + - *363 - *406 - *407 - - *17 - - *19 - *408 - - *387 - *409 - *410 + - *17 + - *19 + - *411 + - *390 + - *412 + - *413 responses: '200': description: Response @@ -56768,9 +57083,9 @@ paths: type: integer workflow_runs: type: array - items: *388 + items: *391 examples: - default: *411 + default: *414 headers: Link: *37 x-github: @@ -56803,9 +57118,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '200': description: Response @@ -56866,8 +57181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *359 - - *360 + - *362 + - *363 - *84 - *17 - *82 @@ -57035,8 +57350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -57048,7 +57363,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '404': *6 @@ -57073,8 +57388,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: - - *359 - - *360 + - *362 + - *363 - name: assignee in: path required: true @@ -57110,8 +57425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -57223,8 +57538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *82 - *83 @@ -57278,7 +57593,7 @@ paths: bundle_url: type: string examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57298,8 +57613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -57307,7 +57622,7 @@ paths: application/json: schema: type: array - items: &413 + items: &416 title: Autolink reference description: An autolink reference. type: object @@ -57361,8 +57676,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -57401,9 +57716,9 @@ paths: description: response content: application/json: - schema: *413 + schema: *416 examples: - default: &414 + default: &417 value: id: 1 key_prefix: TICKET- @@ -57434,9 +57749,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: - - *359 - - *360 - - &415 + - *362 + - *363 + - &418 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57448,9 +57763,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *414 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -57470,9 +57785,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: - - *359 - - *360 - - *415 + - *362 + - *363 + - *418 responses: '204': description: Response @@ -57496,8 +57811,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response if Dependabot is enabled @@ -57547,8 +57862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -57569,8 +57884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -57590,8 +57905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *359 - - *360 + - *362 + - *363 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57629,7 +57944,7 @@ paths: - url protected: type: boolean - protection: &417 + protection: &420 title: Branch Protection description: Branch Protection type: object @@ -57672,7 +57987,7 @@ paths: required: - contexts - checks - enforce_admins: &420 + enforce_admins: &423 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57689,7 +58004,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &422 + required_pull_request_reviews: &425 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57773,7 +58088,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &419 + restrictions: &422 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -58098,9 +58413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *359 - - *360 - - &418 + - *362 + - *363 + - &421 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). @@ -58114,14 +58429,14 @@ paths: description: Response content: application/json: - schema: &428 + schema: &431 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &477 + commit: &480 title: Commit description: Commit type: object @@ -58160,7 +58475,7 @@ paths: author: anyOf: - type: 'null' - - &416 + - &419 title: Git User description: Metaproperties for Git author/committer information. @@ -58181,7 +58496,7 @@ paths: committer: anyOf: - type: 'null' - - *416 + - *419 message: type: string examples: @@ -58205,7 +58520,7 @@ paths: required: - sha - url - verification: &526 + verification: &529 title: Verification type: object properties: @@ -58285,7 +58600,7 @@ paths: type: integer files: type: array - items: &489 + items: &492 title: Diff Entry description: Diff Entry type: object @@ -58379,7 +58694,7 @@ paths: - self protected: type: boolean - protection: *417 + protection: *420 protection_url: type: string format: uri @@ -58488,7 +58803,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *373 + '301': *376 '404': *6 x-github: githubCloudOnly: false @@ -58510,15 +58825,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *417 + schema: *420 examples: default: value: @@ -58712,9 +59027,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -58974,7 +59289,7 @@ paths: url: type: string format: uri - required_status_checks: &425 + required_status_checks: &428 title: Status Check Policy description: Status Check Policy type: object @@ -59133,7 +59448,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *419 + restrictions: *422 required_conversation_resolution: type: object properties: @@ -59245,9 +59560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59272,17 +59587,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: &421 + default: &424 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -59304,17 +59619,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: *421 + default: *424 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59333,9 +59648,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59360,17 +59675,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *422 + schema: *425 examples: - default: &423 + default: &426 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59466,9 +59781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -59566,9 +59881,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *425 examples: - default: *423 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -59589,9 +59904,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59618,17 +59933,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: &424 + default: &427 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59651,17 +59966,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: *424 + default: *427 '404': *6 x-github: githubCloudOnly: false @@ -59681,9 +59996,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59708,17 +60023,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: &426 + default: &429 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59744,9 +60059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -59798,9 +60113,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: *426 + default: *429 '404': *6 '422': *15 x-github: @@ -59822,9 +60137,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59848,9 +60163,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -59884,9 +60199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -59953,9 +60268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -60019,9 +60334,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: content: application/json: @@ -60087,15 +60402,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *419 + schema: *422 examples: default: value: @@ -60186,9 +60501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -60211,9 +60526,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: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -60223,7 +60538,7 @@ paths: type: array items: *5 examples: - default: &427 + default: &430 value: - id: 1 slug: octoapp @@ -60280,9 +60595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60316,7 +60631,7 @@ paths: type: array items: *5 examples: - default: *427 + default: *430 '422': *15 x-github: githubCloudOnly: false @@ -60337,9 +60652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60373,7 +60688,7 @@ paths: type: array items: *5 examples: - default: *427 + default: *430 '422': *15 x-github: githubCloudOnly: false @@ -60394,9 +60709,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60430,7 +60745,7 @@ paths: type: array items: *5 examples: - default: *427 + default: *430 '422': *15 x-github: githubCloudOnly: false @@ -60452,9 +60767,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: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -60464,7 +60779,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '404': *6 x-github: githubCloudOnly: false @@ -60484,9 +60799,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -60524,7 +60839,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '422': *15 x-github: githubCloudOnly: false @@ -60545,9 +60860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -60585,7 +60900,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '422': *15 x-github: githubCloudOnly: false @@ -60606,9 +60921,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: content: application/json: @@ -60645,7 +60960,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '422': *15 x-github: githubCloudOnly: false @@ -60667,9 +60982,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: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -60679,7 +60994,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '404': *6 x-github: githubCloudOnly: false @@ -60703,9 +61018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60738,7 +61053,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '422': *15 x-github: githubCloudOnly: false @@ -60763,9 +61078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60798,7 +61113,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '422': *15 x-github: githubCloudOnly: false @@ -60823,9 +61138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60858,7 +61173,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '422': *15 x-github: githubCloudOnly: false @@ -60885,9 +61200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60909,7 +61224,7 @@ paths: description: Response content: application/json: - schema: *428 + schema: *431 examples: default: value: @@ -61023,8 +61338,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *359 - - *360 + - *362 + - *363 - *213 - *214 - *215 @@ -61060,8 +61375,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_request_number in: path required: true @@ -61134,8 +61449,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - *213 - *214 - *215 @@ -61149,9 +61464,9 @@ paths: application/json: schema: type: array - items: *429 + items: *432 examples: - default: *430 + default: *433 '404': *6 '403': *27 '500': *95 @@ -61175,8 +61490,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_request_number in: path required: true @@ -61188,7 +61503,7 @@ paths: description: A single bypass request. content: application/json: - schema: *429 + schema: *432 examples: default: value: @@ -61246,8 +61561,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_request_number in: path required: true @@ -61318,8 +61633,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_response_id in: path required: true @@ -61352,8 +61667,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -61632,7 +61947,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &435 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61767,8 +62082,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *431 - deployment: &736 + items: *434 + deployment: &739 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62055,9 +62370,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *359 - - *360 - - &433 + - *362 + - *363 + - &436 name: check_run_id description: The unique identifier of the check run. in: path @@ -62069,9 +62384,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *435 examples: - default: &434 + default: &437 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -62171,9 +62486,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *359 - - *360 - - *433 + - *362 + - *363 + - *436 requestBody: required: true content: @@ -62413,9 +62728,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *435 examples: - default: *434 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62435,9 +62750,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *359 - - *360 - - *433 + - *362 + - *363 + - *436 - *17 - *19 responses: @@ -62549,9 +62864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *359 - - *360 - - *433 + - *362 + - *363 + - *436 responses: '201': description: Response @@ -62595,8 +62910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -62618,7 +62933,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &436 + schema: &439 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -62700,7 +63015,7 @@ paths: type: - array - 'null' - items: *431 + items: *434 app: anyOf: - type: 'null' @@ -62716,7 +63031,7 @@ paths: - string - 'null' format: date-time - head_commit: *435 + head_commit: *438 latest_check_runs_count: type: integer check_runs_url: @@ -62744,7 +63059,7 @@ paths: - check_runs_url - pull_requests examples: - default: &437 + default: &440 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -63035,9 +63350,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *436 + schema: *439 examples: - default: *437 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63056,8 +63371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -63366,9 +63681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *359 - - *360 - - &438 + - *362 + - *363 + - &441 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63380,9 +63695,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *439 examples: - default: *437 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63405,17 +63720,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: - - *359 - - *360 - - *438 - - &484 + - *362 + - *363 + - *441 + - &487 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &485 + - &488 name: status description: Returns check runs with the specified `status`. in: query @@ -63454,9 +63769,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *435 examples: - default: &486 + default: &489 value: total_count: 1 check_runs: @@ -63558,9 +63873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *359 - - *360 - - *438 + - *362 + - *363 + - *441 responses: '201': description: Response @@ -63593,21 +63908,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: - - *359 - - *360 + - *362 + - *363 - *221 - *222 - *19 - *17 - - &454 + - &457 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: *439 - - &455 + schema: *442 + - &458 name: pr description: The number of the pull request for the results you want to list. in: query @@ -63638,7 +63953,7 @@ paths: be returned. in: query required: false - schema: *440 + schema: *443 responses: '200': description: Response @@ -63654,7 +63969,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *441 + instances_url: *444 state: *87 fixed_at: *106 dismissed_by: @@ -63662,11 +63977,11 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *442 - dismissed_comment: *443 - rule: *444 - tool: *445 - most_recent_instance: *446 + dismissed_reason: *445 + dismissed_comment: *446 + rule: *447 + tool: *448 + most_recent_instance: *449 dismissal_approved_by: anyOf: - type: 'null' @@ -63786,7 +64101,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &447 + '403': &450 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -63813,9 +64128,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: - - *359 - - *360 - - &448 + - *362 + - *363 + - &451 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63829,7 +64144,7 @@ paths: description: Response content: application/json: - schema: &449 + schema: &452 type: object properties: number: *96 @@ -63837,7 +64152,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *441 + instances_url: *444 state: *87 fixed_at: *106 dismissed_by: @@ -63845,8 +64160,8 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *442 - dismissed_comment: *443 + dismissed_reason: *445 + dismissed_comment: *446 rule: type: object properties: @@ -63908,8 +64223,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *445 - most_recent_instance: *446 + tool: *448 + most_recent_instance: *449 dismissal_approved_by: anyOf: - type: 'null' @@ -64002,7 +64317,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64022,9 +64337,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 requestBody: required: true content: @@ -64039,8 +64354,8 @@ paths: enum: - open - dismissed - dismissed_reason: *442 - dismissed_comment: *443 + dismissed_reason: *445 + dismissed_comment: *446 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -64059,7 +64374,7 @@ paths: description: Response content: application/json: - schema: *449 + schema: *452 examples: default: value: @@ -64135,7 +64450,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &453 + '403': &456 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -64162,15 +64477,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 responses: '200': description: Response content: application/json: - schema: &450 + schema: &453 type: object properties: status: @@ -64197,13 +64512,13 @@ paths: - description - started_at examples: - default: &451 + default: &454 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &452 + '400': &455 description: Bad Request content: application/json: @@ -64214,7 +64529,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': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64239,29 +64554,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 responses: '200': description: OK content: application/json: - schema: *450 + schema: *453 examples: - default: *451 + default: *454 '202': description: Accepted content: application/json: - schema: *450 + schema: *453 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *452 + '400': *455 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64293,9 +64608,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 requestBody: required: false content: @@ -64341,8 +64656,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *452 - '403': *453 + '400': *455 + '403': *456 '404': *6 '422': description: Unprocessable Entity @@ -64366,13 +64681,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 - *19 - *17 - - *454 - - *455 + - *457 + - *458 responses: '200': description: Response @@ -64380,7 +64695,7 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: default: value: @@ -64419,7 +64734,7 @@ paths: end_column: 50 classifications: - source - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64453,25 +64768,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: - - *359 - - *360 + - *362 + - *363 - *221 - *222 - *19 - *17 - - *455 + - *458 - 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: *439 + schema: *442 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &458 + schema: &461 type: string description: An identifier for the upload. examples: @@ -64493,23 +64808,23 @@ paths: application/json: schema: type: array - items: &459 + items: &462 type: object properties: - ref: *439 - commit_sha: &467 + ref: *442 + commit_sha: &470 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *456 + analysis_key: *459 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *457 + category: *460 error: type: string examples: @@ -64534,8 +64849,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *458 - tool: *445 + sarif_id: *461 + tool: *448 deletable: type: boolean warning: @@ -64597,7 +64912,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64633,8 +64948,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: - - *359 - - *360 + - *362 + - *363 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64647,7 +64962,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: response: summary: application/json response @@ -64701,7 +65016,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64783,8 +65098,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: - - *359 - - *360 + - *362 + - *363 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64840,7 +65155,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': *453 + '403': *456 '404': *6 '503': *128 x-github: @@ -64862,8 +65177,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -64871,7 +65186,7 @@ paths: application/json: schema: type: array - items: &460 + items: &463 title: CodeQL Database description: A CodeQL database. type: object @@ -64983,7 +65298,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': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -65012,8 +65327,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: - - *359 - - *360 + - *362 + - *363 - name: language in: path description: The language of the CodeQL database. @@ -65025,7 +65340,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: default: value: @@ -65057,9 +65372,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': &491 + '302': &494 description: Found - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -65081,8 +65396,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *359 - - *360 + - *362 + - *363 - name: language in: path description: The language of the CodeQL database. @@ -65092,7 +65407,7 @@ paths: responses: '204': description: Response - '403': *453 + '403': *456 '404': *6 '503': *128 x-github: @@ -65120,8 +65435,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -65130,7 +65445,7 @@ paths: type: object additionalProperties: false properties: - language: &461 + language: &464 type: string description: The language targeted by the CodeQL query enum: @@ -65208,7 +65523,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &465 + schema: &468 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -65218,7 +65533,7 @@ paths: description: The ID of the variant analysis. controller_repo: *94 actor: *4 - query_language: *461 + query_language: *464 query_pack_url: type: string description: The download url for the query pack. @@ -65266,7 +65581,7 @@ paths: items: type: object properties: - repository: &462 + repository: &465 title: Repository Identifier description: Repository Identifier type: object @@ -65308,7 +65623,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &466 + analysis_status: &469 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65340,7 +65655,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &463 + access_mismatch_repos: &466 type: object properties: repository_count: @@ -65355,7 +65670,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: *462 + items: *465 required: - repository_count - repositories @@ -65378,8 +65693,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *463 - over_limit_repos: *463 + no_codeql_db_repos: *466 + over_limit_repos: *466 required: - access_mismatch_repos - not_found_repos @@ -65395,7 +65710,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &464 + value: &467 summary: Default response value: id: 1 @@ -65547,10 +65862,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *464 + value: *467 repository_lists: summary: Response for a successful variant analysis submission - value: *464 + value: *467 '404': *6 '422': description: Unable to process variant analysis submission @@ -65578,8 +65893,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: - - *359 - - *360 + - *362 + - *363 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -65591,9 +65906,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: - default: *464 + default: *467 '404': *6 '503': *128 x-github: @@ -65616,7 +65931,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: - - *359 + - *362 - name: repo in: path description: The name of the controller repository. @@ -65651,7 +65966,7 @@ paths: type: object properties: repository: *94 - analysis_status: *466 + analysis_status: *469 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65776,8 +66091,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -65859,7 +66174,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -65880,8 +66195,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -65965,7 +66280,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *453 + '403': *456 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -66030,8 +66345,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -66039,7 +66354,7 @@ paths: schema: type: object properties: - commit_sha: *467 + commit_sha: *470 ref: type: string description: |- @@ -66099,7 +66414,7 @@ paths: schema: type: object properties: - id: *458 + id: *461 url: type: string description: The REST API URL for checking the status of the upload. @@ -66113,7 +66428,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': *453 + '403': *456 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -66136,8 +66451,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: - - *359 - - *360 + - *362 + - *363 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -66185,7 +66500,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': *447 + '403': *450 '404': description: Not Found if the sarif id does not match any upload '503': *128 @@ -66210,8 +66525,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -66292,8 +66607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *359 - - *360 + - *362 + - *363 - 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 @@ -66421,8 +66736,8 @@ paths: parameters: - *17 - *19 - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -66438,7 +66753,7 @@ paths: type: integer codespaces: type: array - items: *281 + items: *284 examples: default: value: @@ -66736,8 +67051,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -66801,17 +67116,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '400': *14 '401': *23 '403': *27 @@ -66840,8 +67155,8 @@ paths: parameters: - *17 - *19 - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -66905,8 +67220,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: - - *359 - - *360 + - *362 + - *363 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66943,9 +67258,9 @@ paths: type: integer machines: type: array - items: *469 + items: *472 examples: - default: &693 + default: &696 value: total_count: 2 machines: @@ -66985,8 +67300,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *359 - - *360 + - *362 + - *363 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -67073,8 +67388,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: - - *359 - - *360 + - *362 + - *363 - 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 @@ -67143,8 +67458,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -67162,7 +67477,7 @@ paths: type: integer secrets: type: array - items: &473 + items: &476 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -67183,7 +67498,7 @@ paths: - created_at - updated_at examples: - default: *470 + default: *473 headers: Link: *37 x-github: @@ -67206,16 +67521,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *471 + schema: *474 examples: - default: *472 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67235,17 +67550,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '200': description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *474 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67265,8 +67580,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: - - *359 - - *360 + - *362 + - *363 - *200 requestBody: required: true @@ -67319,8 +67634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '204': @@ -67349,8 +67664,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *359 - - *360 + - *362 + - *363 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67388,7 +67703,7 @@ paths: application/json: schema: type: array - items: &475 + items: &478 title: Collaborator description: Collaborator type: object @@ -67581,8 +67896,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: - - *359 - - *360 + - *362 + - *363 - *212 responses: '204': @@ -67625,8 +67940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *359 - - *360 + - *362 + - *363 - *212 requestBody: required: false @@ -67653,7 +67968,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &539 + schema: &542 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67874,8 +68189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *359 - - *360 + - *362 + - *363 - *212 responses: '204': @@ -67905,8 +68220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *359 - - *360 + - *362 + - *363 - *212 responses: '200': @@ -67927,7 +68242,7 @@ paths: user: anyOf: - type: 'null' - - *475 + - *478 required: - permission - role_name @@ -67981,8 +68296,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -67992,7 +68307,7 @@ paths: application/json: schema: type: array - items: &476 + items: &479 title: Commit Comment description: Commit Comment type: object @@ -68050,7 +68365,7 @@ paths: - created_at - updated_at examples: - default: &479 + default: &482 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68109,17 +68424,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '200': description: Response content: application/json: - schema: *476 + schema: *479 examples: - default: &480 + default: &483 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68176,8 +68491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -68200,7 +68515,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *479 examples: default: value: @@ -68251,8 +68566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '204': @@ -68274,8 +68589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -68302,9 +68617,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -68325,8 +68640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -68359,16 +68674,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -68390,10 +68705,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *359 - - *360 + - *362 + - *363 - *147 - - *351 + - *354 responses: '204': description: Response @@ -68442,8 +68757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *359 - - *360 + - *362 + - *363 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68499,9 +68814,9 @@ paths: application/json: schema: type: array - items: *477 + items: *480 examples: - default: &587 + default: &590 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68595,9 +68910,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *359 - - *360 - - &478 + - *362 + - *363 + - &481 name: commit_sha description: The SHA of the commit. in: path @@ -68669,9 +68984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 - *17 - *19 responses: @@ -68681,9 +68996,9 @@ paths: application/json: schema: type: array - items: *476 + items: *479 examples: - default: *479 + default: *482 headers: Link: *37 x-github: @@ -68711,9 +69026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 requestBody: required: true content: @@ -68748,9 +69063,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *479 examples: - default: *480 + default: *483 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68778,9 +69093,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: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 - *17 - *19 responses: @@ -68790,7 +69105,7 @@ paths: application/json: schema: type: array - items: &578 + items: &581 title: Pull Request Simple description: Pull Request Simple type: object @@ -68910,7 +69225,7 @@ paths: milestone: anyOf: - type: 'null' - - *481 + - *484 active_lock_reason: type: - string @@ -69009,7 +69324,7 @@ paths: _links: type: object properties: - comments: &482 + comments: &485 title: Link description: Hypermedia Link type: object @@ -69018,13 +69333,13 @@ paths: type: string required: - href - commits: *482 - statuses: *482 - html: *482 - issue: *482 - review_comments: *482 - review_comment: *482 - self: *482 + commits: *485 + statuses: *485 + html: *485 + issue: *485 + review_comments: *485 + review_comment: *485 + self: *485 required: - comments - commits @@ -69035,7 +69350,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: &580 + auto_merge: &583 title: Auto merge description: The status of auto merging a pull request. type: @@ -69100,7 +69415,7 @@ paths: - author_association - auto_merge examples: - default: &579 + default: &582 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69637,11 +69952,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *359 - - *360 + - *362 + - *363 - *19 - *17 - - &483 + - &486 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)" @@ -69656,9 +69971,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &566 + default: &569 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69771,11 +70086,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: - - *359 - - *360 - - *483 - - *484 - - *485 + - *362 + - *363 + - *486 + - *487 + - *488 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -69809,9 +70124,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *435 examples: - default: *486 + default: *489 headers: Link: *37 x-github: @@ -69836,9 +70151,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: - - *359 - - *360 - - *483 + - *362 + - *363 + - *486 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -69846,7 +70161,7 @@ paths: schema: type: integer example: 1 - - *484 + - *487 - *17 - *19 responses: @@ -69864,7 +70179,7 @@ paths: type: integer check_suites: type: array - items: *436 + items: *439 examples: default: value: @@ -70064,9 +70379,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: - - *359 - - *360 - - *483 + - *362 + - *363 + - *486 - *17 - *19 responses: @@ -70268,9 +70583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *359 - - *360 - - *483 + - *362 + - *363 + - *486 - *17 - *19 responses: @@ -70280,7 +70595,7 @@ paths: application/json: schema: type: array - items: &641 + items: &644 title: Status description: The status of a commit. type: object @@ -70361,7 +70676,7 @@ paths: site_admin: false headers: Link: *37 - '301': *373 + '301': *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70389,8 +70704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -70423,11 +70738,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *487 + - *490 code_of_conduct_file: anyOf: - type: 'null' - - &488 + - &491 title: Community Health File type: object properties: @@ -70447,19 +70762,19 @@ paths: contributing: anyOf: - type: 'null' - - *488 + - *491 readme: anyOf: - type: 'null' - - *488 + - *491 issue_template: anyOf: - type: 'null' - - *488 + - *491 pull_request_template: anyOf: - type: 'null' - - *488 + - *491 required: - code_of_conduct - code_of_conduct_file @@ -70588,8 +70903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *359 - - *360 + - *362 + - *363 - *19 - *17 - name: basehead @@ -70637,8 +70952,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *477 - merge_base_commit: *477 + base_commit: *480 + merge_base_commit: *480 status: type: string enum: @@ -70662,10 +70977,10 @@ paths: - 6 commits: type: array - items: *477 + items: *480 files: type: array - items: *489 + items: *492 required: - url - html_url @@ -70951,8 +71266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *359 - - *360 + - *362 + - *363 - name: path description: path parameter in: path @@ -71103,7 +71418,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &490 + response-if-content-is-a-file: &493 summary: Response if content is a file value: type: file @@ -71240,7 +71555,7 @@ paths: - size - type - url - - &592 + - &595 title: Content File description: Content File type: object @@ -71458,7 +71773,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *490 + response-if-content-is-a-file: *493 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71527,7 +71842,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *491 + '302': *494 '304': *35 x-github: githubCloudOnly: false @@ -71550,8 +71865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *359 - - *360 + - *362 + - *363 - name: path description: path parameter in: path @@ -71646,7 +71961,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &495 title: File Commit description: File Commit type: object @@ -71802,7 +72117,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: example-for-creating-a-file: value: @@ -71856,7 +72171,7 @@ paths: schema: oneOf: - *3 - - &521 + - &524 description: Repository rule violation was detected type: object properties: @@ -71877,7 +72192,7 @@ paths: items: type: object properties: - placeholder_id: &633 + placeholder_id: &636 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71909,8 +72224,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *359 - - *360 + - *362 + - *363 - name: path description: path parameter in: path @@ -71971,7 +72286,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: default: value: @@ -72026,8 +72341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *359 - - *360 + - *362 + - *363 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -72151,8 +72466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *240 - *241 - *242 @@ -72194,7 +72509,7 @@ paths: application/json: schema: type: array - items: &495 + items: &498 type: object description: A Dependabot alert. properties: @@ -72244,7 +72559,7 @@ paths: - direct - transitive - - security_advisory: *493 + security_advisory: *496 security_vulnerability: *100 url: *101 html_url: *102 @@ -72275,7 +72590,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: *494 + auto_dismissed_at: *497 required: - number - state @@ -72505,9 +72820,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *359 - - *360 - - &496 + - *362 + - *363 + - &499 name: alert_number in: path description: |- @@ -72522,7 +72837,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *498 examples: default: value: @@ -72635,9 +72950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *359 - - *360 - - *496 + - *362 + - *363 + - *499 requestBody: required: true content: @@ -72682,7 +72997,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *498 examples: default: value: @@ -72811,8 +73126,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -72830,7 +73145,7 @@ paths: type: integer secrets: type: array - items: &499 + items: &502 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72884,16 +73199,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *497 + schema: *500 examples: - default: *498 + default: *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72913,15 +73228,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '200': description: Response content: application/json: - schema: *499 + schema: *502 examples: default: value: @@ -72947,8 +73262,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 requestBody: required: true @@ -73001,8 +73316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '204': @@ -73025,8 +73340,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: - - *359 - - *360 + - *362 + - *363 - 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 @@ -73200,8 +73515,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -73461,8 +73776,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -73545,7 +73860,7 @@ paths: - version - url additionalProperties: false - metadata: &500 + metadata: &503 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73584,7 +73899,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *500 + metadata: *503 resolved: type: object description: A collection of resolved package dependencies. @@ -73598,7 +73913,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *500 + metadata: *503 relationship: type: string description: A notation of whether a dependency is requested @@ -73731,8 +74046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *359 - - *360 + - *362 + - *363 - name: sha description: The SHA recorded at creation time. in: query @@ -73773,9 +74088,9 @@ paths: application/json: schema: type: array - items: *501 + items: *504 examples: - default: *502 + default: *505 headers: Link: *37 x-github: @@ -73841,8 +74156,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -73924,7 +74239,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: simple-example: summary: Simple example @@ -73997,9 +74312,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *359 - - *360 - - &503 + - *362 + - *363 + - &506 name: deployment_id description: deployment_id parameter in: path @@ -74011,7 +74326,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -74076,9 +74391,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 responses: '204': description: Response @@ -74100,9 +74415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 - *17 - *19 responses: @@ -74112,7 +74427,7 @@ paths: application/json: schema: type: array - items: &504 + items: &507 title: Deployment Status description: The status of a deployment. type: object @@ -74276,9 +74591,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 requestBody: required: true content: @@ -74353,9 +74668,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: &505 + default: &508 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74411,9 +74726,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 - name: status_id in: path required: true @@ -74424,9 +74739,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 '404': *6 x-github: githubCloudOnly: false @@ -74451,8 +74766,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -74509,8 +74824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -74528,7 +74843,7 @@ paths: - 5 environments: type: array - items: &507 + items: &510 title: Environment description: Details of a deployment environment type: object @@ -74590,7 +74905,7 @@ paths: type: string examples: - wait_timer - wait_timer: &509 + wait_timer: &512 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -74632,7 +74947,7 @@ paths: items: type: object properties: - type: *506 + type: *509 reviewer: anyOf: - *4 @@ -74659,7 +74974,7 @@ paths: - id - node_id - type - deployment_branch_policy: &510 + deployment_branch_policy: &513 type: - object - 'null' @@ -74776,9 +75091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *359 - - *360 - - &508 + - *362 + - *363 + - &511 name: environment_name in: path required: true @@ -74791,9 +75106,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: &511 + default: &514 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74877,9 +75192,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 requestBody: required: false content: @@ -74889,7 +75204,7 @@ paths: - object - 'null' properties: - wait_timer: *509 + wait_timer: *512 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -74908,14 +75223,14 @@ paths: items: type: object properties: - type: *506 + type: *509 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *510 + deployment_branch_policy: *513 additionalProperties: false examples: default: @@ -74935,9 +75250,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74961,9 +75276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 responses: '204': description: Default response @@ -74988,9 +75303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *17 - *19 responses: @@ -75009,7 +75324,7 @@ paths: - 2 branch_policies: type: array - items: &512 + items: &515 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -75070,9 +75385,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 requestBody: required: true content: @@ -75120,9 +75435,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: - example-wildcard: &513 + example-wildcard: &516 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75164,10 +75479,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 - - &514 + - *362 + - *363 + - *511 + - &517 name: branch_policy_id in: path required: true @@ -75179,9 +75494,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: - default: *513 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75200,10 +75515,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 - - *514 + - *362 + - *363 + - *511 + - *517 requestBody: required: true content: @@ -75232,9 +75547,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: - default: *513 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75253,10 +75568,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 - - *514 + - *362 + - *363 + - *511 + - *517 responses: '204': description: Response @@ -75281,9 +75596,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: - - *508 - - *360 - - *359 + - *511 + - *363 + - *362 responses: '200': description: List of deployment protection rules @@ -75300,7 +75615,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &515 + items: &518 title: Deployment protection rule description: Deployment protection rule type: object @@ -75322,7 +75637,7 @@ paths: for the environment. examples: - true - app: &516 + app: &519 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75425,9 +75740,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: - - *508 - - *360 - - *359 + - *511 + - *363 + - *362 requestBody: content: application/json: @@ -75448,9 +75763,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *515 + schema: *518 examples: - default: &517 + default: &520 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75485,9 +75800,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: - - *508 - - *360 - - *359 + - *511 + - *363 + - *362 - *19 - *17 responses: @@ -75507,7 +75822,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *516 + items: *519 examples: default: value: @@ -75542,10 +75857,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: - - *359 - - *360 - - *508 - - &518 + - *362 + - *363 + - *511 + - &521 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75557,9 +75872,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *518 examples: - default: *517 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75580,10 +75895,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: - - *508 - - *360 - - *359 - - *518 + - *511 + - *363 + - *362 + - *521 responses: '204': description: Response @@ -75609,9 +75924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *17 - *19 responses: @@ -75629,9 +75944,9 @@ paths: type: integer secrets: type: array - items: *396 + items: *399 examples: - default: *397 + default: *400 headers: Link: *37 x-github: @@ -75656,17 +75971,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75688,18 +76003,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *200 responses: '200': description: Response content: application/json: - schema: *396 + schema: *399 examples: - default: *519 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75721,9 +76036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *200 requestBody: required: true @@ -75781,9 +76096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *200 responses: '204': @@ -75809,10 +76124,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *359 - - *360 - - *508 - - *383 + - *362 + - *363 + - *511 + - *386 - *19 responses: '200': @@ -75829,9 +76144,9 @@ paths: type: integer variables: type: array - items: *400 + items: *403 examples: - default: *401 + default: *404 headers: Link: *37 x-github: @@ -75854,9 +76169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 requestBody: required: true content: @@ -75908,18 +76223,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *203 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: - default: *520 + default: *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75940,10 +76255,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 - - *508 + - *511 requestBody: required: true content: @@ -75985,10 +76300,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 - - *508 + - *511 responses: '204': description: Response @@ -76010,8 +76325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -76088,8 +76403,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *359 - - *360 + - *362 + - *363 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -76248,8 +76563,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -76282,9 +76597,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 '400': *14 '422': *15 '403': *27 @@ -76305,8 +76620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -76366,7 +76681,7 @@ paths: schema: oneOf: - *173 - - *521 + - *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76391,8 +76706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *359 - - *360 + - *362 + - *363 - name: file_sha in: path required: true @@ -76492,8 +76807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -76602,7 +76917,7 @@ paths: description: Response content: application/json: - schema: &522 + schema: &525 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76829,15 +77144,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: default: value: @@ -76893,9 +77208,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *359 - - *360 - - &523 + - *362 + - *363 + - &526 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. @@ -76912,7 +77227,7 @@ paths: application/json: schema: type: array - items: &524 + items: &527 title: Git Reference description: Git references within a repository type: object @@ -76988,17 +77303,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *359 - - *360 - - *523 + - *362 + - *363 + - *526 responses: '200': description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: &525 + default: &528 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -77027,8 +77342,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -77057,9 +77372,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *525 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -77085,9 +77400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *359 - - *360 - - *523 + - *362 + - *363 + - *526 requestBody: required: true content: @@ -77116,9 +77431,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *525 + default: *528 '422': *15 '409': *92 x-github: @@ -77136,9 +77451,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *359 - - *360 - - *523 + - *362 + - *363 + - *526 responses: '204': description: Response @@ -77191,8 +77506,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -77259,7 +77574,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &530 title: Git Tag description: Metadata for a Git tag type: object @@ -77315,7 +77630,7 @@ paths: - sha - type - url - verification: *526 + verification: *529 required: - sha - url @@ -77325,7 +77640,7 @@ paths: - tag - message examples: - default: &528 + default: &531 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77398,8 +77713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *359 - - *360 + - *362 + - *363 - name: tag_sha in: path required: true @@ -77410,9 +77725,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *530 examples: - default: *528 + default: *531 '404': *6 '409': *92 x-github: @@ -77436,8 +77751,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -77511,7 +77826,7 @@ paths: description: Response content: application/json: - schema: &529 + schema: &532 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77629,8 +77944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *359 - - *360 + - *362 + - *363 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77653,7 +77968,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: default-response: summary: Default response @@ -77712,8 +78027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -77723,7 +78038,7 @@ paths: application/json: schema: type: array - items: &530 + items: &533 title: Webhook description: Webhooks for repositories. type: object @@ -77786,7 +78101,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &767 + last_response: &770 title: Hook Response type: object properties: @@ -77863,8 +78178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -77917,9 +78232,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: &531 + default: &534 value: type: Repository id: 12345678 @@ -77967,17 +78282,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '200': description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: *531 + default: *534 '404': *6 x-github: githubCloudOnly: false @@ -77997,8 +78312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 requestBody: required: true @@ -78044,9 +78359,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: *531 + default: *534 '422': *15 '404': *6 x-github: @@ -78067,8 +78382,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '204': @@ -78093,8 +78408,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '200': @@ -78122,8 +78437,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *254 requestBody: required: false @@ -78168,8 +78483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 - *17 - *255 @@ -78201,8 +78516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 - *16 responses: @@ -78231,8 +78546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 - *16 responses: @@ -78256,8 +78571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '204': @@ -78283,8 +78598,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '204': @@ -78343,14 +78658,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: &532 + schema: &535 title: Import description: A repository import from an external source. type: object @@ -78457,7 +78772,7 @@ paths: - html_url - authors_url examples: - default: &535 + default: &538 value: vcs: subversion use_lfs: true @@ -78473,7 +78788,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': &533 + '503': &536 description: Unavailable due to service under maintenance. content: application/json: @@ -78502,8 +78817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -78551,7 +78866,7 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: default: value: @@ -78576,7 +78891,7 @@ paths: type: string '422': *15 '404': *6 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78604,8 +78919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -78657,7 +78972,7 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: example-1: summary: Example 1 @@ -78705,7 +79020,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': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78728,12 +79043,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78759,9 +79074,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *359 - - *360 - - &716 + - *362 + - *363 + - &719 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78775,7 +79090,7 @@ paths: application/json: schema: type: array - items: &534 + items: &537 title: Porter Author description: Porter Author type: object @@ -78829,7 +79144,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': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78854,8 +79169,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *359 - - *360 + - *362 + - *363 - name: author_id in: path required: true @@ -78885,7 +79200,7 @@ paths: description: Response content: application/json: - schema: *534 + schema: *537 examples: default: value: @@ -78898,7 +79213,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78922,8 +79237,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -78964,7 +79279,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78992,8 +79307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -79020,11 +79335,11 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: - default: *535 + default: *538 '422': *15 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79047,8 +79362,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -79056,8 +79371,8 @@ paths: application/json: schema: *20 examples: - default: *536 - '301': *373 + default: *539 + '301': *376 '404': *6 x-github: githubCloudOnly: false @@ -79077,8 +79392,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -79091,7 +79406,7 @@ paths: properties: {} additionalProperties: false examples: - default: &538 + default: &541 value: limit: collaborators_only origin: repository @@ -79116,13 +79431,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: application/json: - schema: *537 + schema: *540 examples: default: summary: Example request body @@ -79136,7 +79451,7 @@ paths: application/json: schema: *272 examples: - default: *538 + default: *541 '409': description: Response x-github: @@ -79158,8 +79473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -79182,8 +79497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -79193,9 +79508,9 @@ paths: application/json: schema: type: array - items: *539 + items: *542 examples: - default: &709 + default: &712 value: - id: 1 repository: @@ -79326,8 +79641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *359 - - *360 + - *362 + - *363 - *276 requestBody: required: false @@ -79357,7 +79672,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *542 examples: default: value: @@ -79488,8 +79803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *359 - - *360 + - *362 + - *363 - *276 responses: '204': @@ -79521,8 +79836,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *359 - - *360 + - *362 + - *363 - 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 @@ -79550,6 +79865,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -79562,7 +79885,7 @@ paths: required: false schema: type: string - - *278 + - *281 - name: sort description: What to sort results by. in: query @@ -79587,7 +79910,7 @@ paths: type: array items: *148 examples: - default: &548 + default: &551 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79735,7 +80058,7 @@ paths: state_reason: completed headers: Link: *37 - '301': *373 + '301': *376 '422': *15 '404': *6 x-github: @@ -79764,8 +80087,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -79829,6 +80152,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -79848,7 +80178,7 @@ paths: application/json: schema: *148 examples: - default: &543 + default: &546 value: id: 1 node_id: MDU6SXNzdWUx @@ -80004,7 +80334,7 @@ paths: '422': *15 '503': *128 '404': *6 - '410': *370 + '410': *373 x-github: triggersNotification: true githubCloudOnly: false @@ -80032,8 +80362,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *157 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -80054,9 +80384,9 @@ paths: application/json: schema: type: array - items: *540 + items: *543 examples: - default: &545 + default: &548 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80114,17 +80444,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '200': description: Response content: application/json: - schema: *540 + schema: *543 examples: - default: &541 + default: &544 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80178,8 +80508,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -80202,9 +80532,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *543 examples: - default: *541 + default: *544 '422': *15 x-github: githubCloudOnly: false @@ -80222,8 +80552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '204': @@ -80244,8 +80574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80272,9 +80602,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -80295,8 +80625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -80329,16 +80659,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -80360,10 +80690,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *359 - - *360 + - *362 + - *363 - *147 - - *351 + - *354 responses: '204': description: Response @@ -80383,8 +80713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -80394,7 +80724,7 @@ paths: application/json: schema: type: array - items: &542 + items: &545 title: Issue Event description: Issue Event type: object @@ -80733,8 +81063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *359 - - *360 + - *362 + - *363 - name: event_id in: path required: true @@ -80745,7 +81075,7 @@ paths: description: Response content: application/json: - schema: *542 + schema: *545 examples: default: value: @@ -80938,7 +81268,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *370 + '410': *373 '403': *27 x-github: githubCloudOnly: false @@ -80972,9 +81302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *359 - - *360 - - &544 + - *362 + - *363 + - &547 name: issue_number description: The number that identifies the issue. in: path @@ -80988,10 +81318,10 @@ paths: application/json: schema: *148 examples: - default: *543 - '301': *373 + default: *546 + '301': *376 '404': *6 - '410': *370 + '410': *373 '304': *35 x-github: githubCloudOnly: false @@ -81016,9 +81346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -81110,6 +81440,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -81128,13 +81466,13 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 '422': *15 '503': *128 '403': *27 - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81152,9 +81490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -81182,7 +81520,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81198,9 +81536,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: content: application/json: @@ -81227,7 +81565,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81249,9 +81587,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: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - name: assignee in: path required: true @@ -81291,9 +81629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *138 - *17 - *19 @@ -81304,13 +81642,13 @@ paths: application/json: schema: type: array - items: *540 + items: *543 examples: - default: *545 + default: *548 headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81339,9 +81677,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -81363,16 +81701,16 @@ paths: description: Response content: application/json: - schema: *540 + schema: *543 examples: - default: *541 + default: *544 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *370 + '410': *373 '422': *15 '404': *6 x-github: @@ -81392,9 +81730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -81408,7 +81746,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &549 + - &552 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81457,7 +81795,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &550 + - &553 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81585,7 +81923,7 @@ paths: - performed_via_github_app - assignee - assigner - - &551 + - &554 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81631,7 +81969,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &555 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81677,7 +82015,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &556 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81726,7 +82064,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &557 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81768,7 +82106,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &558 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81810,7 +82148,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &559 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81866,7 +82204,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &560 title: Locked Issue Event description: Locked Issue Event type: object @@ -81911,7 +82249,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &561 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81972,7 +82310,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &562 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82033,7 +82371,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &563 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82094,7 +82432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &564 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82187,7 +82525,7 @@ paths: color: red headers: Link: *37 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82204,9 +82542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -82216,7 +82554,7 @@ paths: application/json: schema: type: array - items: &546 + items: &549 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -82271,7 +82609,7 @@ paths: - color - default examples: - default: &547 + default: &550 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82289,9 +82627,9 @@ paths: default: false headers: Link: *37 - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82308,9 +82646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -82369,12 +82707,12 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 - '301': *373 + default: *550 + '301': *376 '404': *6 - '410': *370 + '410': *373 '422': *15 x-github: githubCloudOnly: false @@ -82391,9 +82729,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -82453,12 +82791,12 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 - '301': *373 + default: *550 + '301': *376 '404': *6 - '410': *370 + '410': *373 '422': *15 x-github: githubCloudOnly: false @@ -82475,15 +82813,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 responses: '204': description: Response - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82502,9 +82840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - name: name in: path required: true @@ -82517,7 +82855,7 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: default: value: @@ -82528,9 +82866,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82550,9 +82888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -82581,7 +82919,7 @@ paths: '204': description: Response '403': *27 - '410': *370 + '410': *373 '404': *6 '422': *15 x-github: @@ -82599,9 +82937,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 responses: '204': description: Response @@ -82623,9 +82961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - 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. @@ -82651,13 +82989,13 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82675,9 +83013,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82709,16 +83047,16 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -82740,10 +83078,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *359 - - *360 - - *544 - - *351 + - *362 + - *363 + - *547 + - *354 responses: '204': description: Response @@ -82772,9 +83110,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82798,7 +83136,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82831,9 +83169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -82845,11 +83183,11 @@ paths: type: array items: *148 examples: - default: *548 + default: *551 headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82877,9 +83215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82908,14 +83246,14 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *370 + '410': *373 '422': *15 '404': *6 x-github: @@ -82935,9 +83273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82970,7 +83308,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 '403': *27 '404': *6 '422': *7 @@ -82992,9 +83330,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -83009,9 +83347,6 @@ paths: description: Timeline Event type: object anyOf: - - *549 - - *550 - - *551 - *552 - *553 - *554 @@ -83022,6 +83357,9 @@ paths: - *559 - *560 - *561 + - *562 + - *563 + - *564 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83345,7 +83683,7 @@ paths: type: string comments: type: array - items: &581 + items: &584 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83583,7 +83921,7 @@ paths: type: string comments: type: array - items: *476 + items: *479 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -83858,7 +84196,7 @@ paths: headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83875,8 +84213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -83886,7 +84224,7 @@ paths: application/json: schema: type: array - items: &562 + items: &565 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83953,8 +84291,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -83990,9 +84328,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *565 examples: - default: &563 + default: &566 value: id: 1 key: ssh-rsa AAA... @@ -84026,9 +84364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *359 - - *360 - - &564 + - *362 + - *363 + - &567 name: key_id description: The unique identifier of the key. in: path @@ -84040,9 +84378,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *565 examples: - default: *563 + default: *566 '404': *6 x-github: githubCloudOnly: false @@ -84060,9 +84398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *359 - - *360 - - *564 + - *362 + - *363 + - *567 responses: '204': description: Response @@ -84082,8 +84420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -84093,9 +84431,9 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 + default: *550 headers: Link: *37 '404': *6 @@ -84116,8 +84454,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84153,9 +84491,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: &565 + default: &568 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84187,8 +84525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *359 - - *360 + - *362 + - *363 - name: name in: path required: true @@ -84199,9 +84537,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: *565 + default: *568 '404': *6 x-github: githubCloudOnly: false @@ -84218,8 +84556,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *359 - - *360 + - *362 + - *363 - name: name in: path required: true @@ -84258,7 +84596,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: default: value: @@ -84284,8 +84622,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *359 - - *360 + - *362 + - *363 - name: name in: path required: true @@ -84311,8 +84649,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -84348,8 +84686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '202': *93 '403': @@ -84377,8 +84715,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -84404,9 +84742,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *359 - - *360 - - *454 + - *362 + - *363 + - *457 responses: '200': description: Response @@ -84553,8 +84891,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84619,8 +84957,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84654,9 +84992,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *477 + schema: *480 examples: - default: *566 + default: *569 '204': description: Response when already merged '404': @@ -84681,8 +85019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *359 - - *360 + - *362 + - *363 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -84723,7 +85061,7 @@ paths: application/json: schema: type: array - items: *481 + items: *484 examples: default: value: @@ -84779,8 +85117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84820,9 +85158,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *484 examples: - default: &567 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84881,9 +85219,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *359 - - *360 - - &568 + - *362 + - *363 + - &571 name: milestone_number description: The number that identifies the milestone. in: path @@ -84895,9 +85233,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *484 examples: - default: *567 + default: *570 '404': *6 x-github: githubCloudOnly: false @@ -84914,9 +85252,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *359 - - *360 - - *568 + - *362 + - *363 + - *571 requestBody: required: false content: @@ -84954,9 +85292,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *484 examples: - default: *567 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84972,9 +85310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *359 - - *360 - - *568 + - *362 + - *363 + - *571 responses: '204': description: Response @@ -84995,9 +85333,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: - - *359 - - *360 - - *568 + - *362 + - *363 + - *571 - *17 - *19 responses: @@ -85007,9 +85345,9 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 + default: *550 headers: Link: *37 x-github: @@ -85028,12 +85366,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: - - *359 - - *360 - - *569 - - *570 + - *362 + - *363 + - *572 + - *573 - *138 - - *571 + - *574 - *17 - *19 responses: @@ -85045,7 +85383,7 @@ paths: type: array items: *160 examples: - default: *572 + default: *575 headers: Link: *37 x-github: @@ -85069,8 +85407,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -85128,14 +85466,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: &573 + schema: &576 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85279,7 +85617,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &577 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85320,8 +85658,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -85376,9 +85714,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *576 examples: - default: *574 + default: *577 '422': *15 '409': *92 x-github: @@ -85401,8 +85739,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -85510,8 +85848,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -85537,8 +85875,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -85548,7 +85886,7 @@ paths: application/json: schema: type: array - items: &575 + items: &578 title: Page Build description: Page Build type: object @@ -85640,8 +85978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *359 - - *360 + - *362 + - *363 responses: '201': description: Response @@ -85688,16 +86026,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: &576 + default: &579 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85745,8 +86083,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *359 - - *360 + - *362 + - *363 - name: build_id in: path required: true @@ -85757,9 +86095,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: *576 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85779,8 +86117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -85888,9 +86226,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: - - *359 - - *360 - - &577 + - *362 + - *363 + - &580 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85948,9 +86286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *359 - - *360 - - *577 + - *362 + - *363 + - *580 responses: '204': *114 '404': *6 @@ -85977,8 +86315,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -86273,8 +86611,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Private vulnerability reporting status @@ -86311,8 +86649,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: - - *359 - - *360 + - *362 + - *363 responses: '204': *114 '422': *14 @@ -86333,8 +86671,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: - - *359 - - *360 + - *362 + - *363 responses: '204': *114 '422': *14 @@ -86357,8 +86695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *359 - - *360 + - *362 + - *363 - name: state description: Indicates the state of the projects to return. in: query @@ -86379,7 +86717,7 @@ paths: application/json: schema: type: array - items: *308 + items: *311 examples: default: value: @@ -86419,7 +86757,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *370 + '410': *373 '422': *7 x-github: githubCloudOnly: false @@ -86442,8 +86780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -86469,13 +86807,13 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: *369 + default: *372 '401': *23 '403': *27 '404': *6 - '410': *370 + '410': *373 '422': *7 x-github: githubCloudOnly: false @@ -86498,8 +86836,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -86507,7 +86845,7 @@ paths: application/json: schema: type: array - items: *310 + items: *313 examples: default: value: @@ -86538,8 +86876,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -86551,7 +86889,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *310 + items: *313 required: - properties examples: @@ -86601,8 +86939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *359 - - *360 + - *362 + - *363 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86662,9 +87000,9 @@ paths: application/json: schema: type: array - items: *578 + items: *581 examples: - default: *579 + default: *582 headers: Link: *37 '304': *35 @@ -86696,8 +87034,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -86764,7 +87102,7 @@ paths: description: Response content: application/json: - schema: &583 + schema: &586 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86893,7 +87231,7 @@ paths: milestone: anyOf: - type: 'null' - - *481 + - *484 active_lock_reason: type: - string @@ -86948,7 +87286,7 @@ paths: type: - array - 'null' - items: *290 + items: *293 head: type: object properties: @@ -86986,14 +87324,14 @@ paths: _links: type: object properties: - comments: *482 - commits: *482 - statuses: *482 - html: *482 - issue: *482 - review_comments: *482 - review_comment: *482 - self: *482 + comments: *485 + commits: *485 + statuses: *485 + html: *485 + issue: *485 + review_comments: *485 + review_comment: *485 + self: *485 required: - comments - commits @@ -87004,7 +87342,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: *580 + auto_merge: *583 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -87106,7 +87444,7 @@ paths: - merged_by - review_comments examples: - default: &584 + default: &587 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87633,8 +87971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - name: sort in: query required: false @@ -87663,9 +88001,9 @@ paths: application/json: schema: type: array - items: *581 + items: *584 examples: - default: &586 + default: &589 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87742,17 +88080,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: - - *359 - - *360 + - *362 + - *363 - *147 responses: '200': description: Response content: application/json: - schema: *581 + schema: *584 examples: - default: &582 + default: &585 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87827,8 +88165,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: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -87851,9 +88189,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: - default: *582 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87869,8 +88207,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: - - *359 - - *360 + - *362 + - *363 - *147 responses: '204': @@ -87892,8 +88230,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: - - *359 - - *360 + - *362 + - *363 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -87920,9 +88258,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -87943,8 +88281,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: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -87977,16 +88315,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -88008,10 +88346,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *359 - - *360 + - *362 + - *363 - *147 - - *351 + - *354 responses: '204': description: Response @@ -88054,9 +88392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *359 - - *360 - - &585 + - *362 + - *363 + - &588 name: pull_number description: The number that identifies the pull request. in: path @@ -88069,9 +88407,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '304': *35 '404': *6 '406': @@ -88106,9 +88444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -88150,9 +88488,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 '403': *27 x-github: @@ -88174,9 +88512,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: true content: @@ -88237,17 +88575,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '401': *23 '403': *27 '404': *6 @@ -88277,9 +88615,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *157 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -88300,9 +88638,9 @@ paths: application/json: schema: type: array - items: *581 + items: *584 examples: - default: *586 + default: *589 headers: Link: *37 x-github: @@ -88335,9 +88673,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: true content: @@ -88443,7 +88781,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: example-for-a-multi-line-comment: value: @@ -88531,9 +88869,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *147 requestBody: required: true @@ -88556,7 +88894,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: default: value: @@ -88642,9 +88980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *17 - *19 responses: @@ -88654,9 +88992,9 @@ paths: application/json: schema: type: array - items: *477 + items: *480 examples: - default: *587 + default: *590 headers: Link: *37 x-github: @@ -88686,9 +89024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *17 - *19 responses: @@ -88698,7 +89036,7 @@ paths: application/json: schema: type: array - items: *489 + items: *492 examples: default: value: @@ -88736,9 +89074,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 responses: '204': description: Response if pull request has been merged @@ -88761,9 +89099,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -88875,9 +89213,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 responses: '200': description: Response @@ -88952,9 +89290,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -88991,7 +89329,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *581 examples: default: value: @@ -89527,9 +89865,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: true content: @@ -89563,7 +89901,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *581 examples: default: value: @@ -90068,9 +90406,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *17 - *19 responses: @@ -90080,7 +90418,7 @@ paths: application/json: schema: type: array - items: &588 + items: &591 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -90236,9 +90574,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -90328,9 +90666,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: &590 + default: &593 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90393,10 +90731,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: - - *359 - - *360 - - *585 - - &589 + - *362 + - *363 + - *588 + - &592 name: review_id description: The unique identifier of the review. in: path @@ -90408,9 +90746,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: &591 + default: &594 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90469,10 +90807,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 requestBody: required: true content: @@ -90495,7 +90833,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: default: value: @@ -90557,18 +90895,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 responses: '200': description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *590 + default: *593 '422': *7 '404': *6 x-github: @@ -90595,10 +90933,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 - *17 - *19 responses: @@ -90696,9 +91034,9 @@ paths: _links: type: object properties: - self: *482 - html: *482 - pull_request: *482 + self: *485 + html: *485 + pull_request: *485 required: - self - html @@ -90849,10 +91187,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 requestBody: required: true content: @@ -90881,7 +91219,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: default: value: @@ -90944,10 +91282,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 requestBody: required: true content: @@ -90982,9 +91320,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *591 + default: *594 '404': *6 '422': *7 '403': *27 @@ -91006,9 +91344,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -91072,8 +91410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *359 - - *360 + - *362 + - *363 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -91086,9 +91424,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *595 examples: - default: &593 + default: &596 value: type: file encoding: base64 @@ -91130,8 +91468,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: - - *359 - - *360 + - *362 + - *363 - name: dir description: The alternate path to look for a README file in: path @@ -91151,9 +91489,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *595 examples: - default: *593 + default: *596 '404': *6 '422': *15 x-github: @@ -91175,8 +91513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -91186,7 +91524,7 @@ paths: application/json: schema: type: array - items: &594 + items: &597 title: Release description: A release. type: object @@ -91258,7 +91596,7 @@ paths: author: *4 assets: type: array - items: &595 + items: &598 title: Release Asset description: Data related to a release. type: object @@ -91438,8 +91776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -91515,9 +91853,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: &598 + default: &601 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91620,9 +91958,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *359 - - *360 - - &596 + - *362 + - *363 + - &599 name: asset_id description: The unique identifier of the asset. in: path @@ -91634,9 +91972,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *598 examples: - default: &597 + default: &600 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 @@ -91670,7 +92008,7 @@ paths: type: User site_admin: false '404': *6 - '302': *491 + '302': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91686,9 +92024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *359 - - *360 - - *596 + - *362 + - *363 + - *599 requestBody: required: false content: @@ -91717,9 +92055,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *598 examples: - default: *597 + default: *600 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91735,9 +92073,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *359 - - *360 - - *596 + - *362 + - *363 + - *599 responses: '204': description: Response @@ -91761,8 +92099,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -91848,16 +92186,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *598 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91874,8 +92212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *359 - - *360 + - *362 + - *363 - name: tag description: tag parameter in: path @@ -91888,9 +92226,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *598 + default: *601 '404': *6 x-github: githubCloudOnly: false @@ -91912,9 +92250,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *359 - - *360 - - &599 + - *362 + - *363 + - &602 name: release_id description: The unique identifier of the release. in: path @@ -91928,9 +92266,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: *594 + schema: *597 examples: - default: *598 + default: *601 '401': description: Unauthorized x-github: @@ -91948,9 +92286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 requestBody: required: false content: @@ -92014,9 +92352,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *598 + default: *601 '404': description: Not Found if the discussion category name is invalid content: @@ -92037,9 +92375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 responses: '204': description: Response @@ -92059,9 +92397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 - *17 - *19 responses: @@ -92071,7 +92409,7 @@ paths: application/json: schema: type: array - items: *595 + items: *598 examples: default: value: @@ -92152,9 +92490,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 - - *599 + - *362 + - *363 + - *602 - name: name in: query required: true @@ -92180,7 +92518,7 @@ paths: description: Response for successful upload content: application/json: - schema: *595 + schema: *598 examples: response-for-successful-upload: value: @@ -92234,9 +92572,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 - 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. @@ -92260,9 +92598,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -92283,9 +92621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 requestBody: required: true content: @@ -92315,16 +92653,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -92346,10 +92684,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *359 - - *360 - - *599 - - *351 + - *362 + - *363 + - *602 + - *354 responses: '204': description: Response @@ -92373,9 +92711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 - *17 - *19 responses: @@ -92391,8 +92729,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *600 - - &602 + - *603 + - &605 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92411,54 +92749,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *601 - - *602 - - allOf: - - *603 - - *602 - allOf: - *604 - - *602 - - allOf: - *605 - - *602 - allOf: - *606 - - *602 + - *605 - allOf: - *607 - - *602 + - *605 - allOf: - *608 - - *602 + - *605 - allOf: - *609 - - *602 + - *605 - allOf: - *610 - - *602 + - *605 - allOf: - *611 - - *602 + - *605 - allOf: - *612 - - *602 + - *605 - allOf: - *613 - - *602 + - *605 - allOf: - *614 - - *602 + - *605 - allOf: - *615 - - *602 + - *605 - allOf: - *616 - - *602 + - *605 - allOf: - *617 - - *602 + - *605 + - allOf: + - *618 + - *605 + - allOf: + - *619 + - *605 + - allOf: + - *620 + - *605 examples: default: value: @@ -92497,8 +92835,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - name: includes_parents @@ -92509,7 +92847,7 @@ paths: schema: type: boolean default: true - - *618 + - *621 responses: '200': description: Response @@ -92564,8 +92902,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 requestBody: description: Request body required: true @@ -92627,7 +92965,7 @@ paths: application/json: schema: *124 examples: - default: &627 + default: &630 value: id: 42 name: super cool ruleset @@ -92674,12 +93012,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *359 - - *360 - - *619 + - *362 + - *363 + - *622 - *215 - - *620 - - *621 + - *623 + - *624 - *17 - *19 responses: @@ -92687,9 +93025,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *625 examples: - default: *623 + default: *626 '404': *6 '500': *95 x-github: @@ -92710,17 +93048,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *359 - - *360 - - *624 + - *362 + - *363 + - *627 responses: '200': description: Response content: application/json: - schema: *625 + schema: *628 examples: - default: *626 + default: *629 '404': *6 '500': *95 x-github: @@ -92748,8 +93086,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92771,7 +93109,7 @@ paths: application/json: schema: *124 examples: - default: *627 + default: *630 '404': *6 '500': *95 put: @@ -92789,8 +93127,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92854,7 +93192,7 @@ paths: application/json: schema: *124 examples: - default: *627 + default: *630 '404': *6 '500': *95 delete: @@ -92872,8 +93210,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92896,8 +93234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - name: ruleset_id @@ -92915,7 +93253,7 @@ paths: type: array items: *127 examples: - default: *316 + default: *319 '404': *6 '500': *95 x-github: @@ -92934,8 +93272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92953,7 +93291,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *320 examples: default: value: @@ -93008,20 +93346,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *359 - - *360 - - *318 - - *319 - - *320 + - *362 + - *363 - *321 - - *84 - - *19 - - *17 - - *628 - - *629 - *322 - *323 - *324 + - *84 + - *19 + - *17 + - *631 + - *632 + - *325 + - *326 + - *327 responses: '200': description: Response @@ -93029,7 +93367,7 @@ paths: application/json: schema: type: array - items: &632 + items: &635 type: object properties: number: *96 @@ -93045,8 +93383,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *630 - resolution: *631 + state: *633 + resolution: *634 resolved_at: type: - string @@ -93265,15 +93603,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 responses: '200': description: Response content: application/json: - schema: *632 + schema: *635 examples: default: value: @@ -93325,9 +93663,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 requestBody: required: true content: @@ -93335,8 +93673,8 @@ paths: schema: type: object properties: - state: *630 - resolution: *631 + state: *633 + resolution: *634 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -93355,7 +93693,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *635 examples: default: value: @@ -93430,9 +93768,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 - *19 - *17 responses: @@ -93443,7 +93781,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &788 + items: &791 type: object properties: type: @@ -93822,8 +94160,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -93831,14 +94169,14 @@ paths: schema: type: object properties: - reason: &634 + reason: &637 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *633 + placeholder_id: *636 required: - reason - placeholder_id @@ -93855,7 +94193,7 @@ paths: schema: type: object properties: - reason: *634 + reason: *637 expire_at: type: - string @@ -93899,8 +94237,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: - - *359 - - *360 + - *362 + - *363 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -93915,7 +94253,7 @@ paths: properties: incremental_scans: type: array - items: &635 + items: &638 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93943,15 +94281,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *635 + items: *638 backfill_scans: type: array - items: *635 + items: *638 custom_pattern_backfill_scans: type: array items: allOf: - - *635 + - *638 - type: object properties: pattern_name: @@ -94021,8 +94359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *359 - - *360 + - *362 + - *363 - *84 - name: sort description: The property to sort the results by. @@ -94066,9 +94404,9 @@ paths: application/json: schema: type: array - items: *636 + items: *639 examples: - default: *637 + default: *640 '400': *14 '404': *6 x-github: @@ -94091,8 +94429,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -94172,7 +94510,7 @@ paths: login: type: string description: The username of the user credited. - type: *327 + type: *330 required: - login - type @@ -94262,9 +94600,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: &639 + default: &642 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -94497,8 +94835,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -94611,7 +94949,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: default: value: @@ -94758,17 +95096,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 responses: '200': description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *639 + default: *642 '403': *27 '404': *6 x-github: @@ -94792,9 +95130,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 requestBody: required: true content: @@ -94874,7 +95212,7 @@ paths: login: type: string description: The username of the user credited. - type: *327 + type: *330 required: - login - type @@ -94965,10 +95303,10 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *639 - add_credit: *639 + default: *642 + add_credit: *642 '403': *27 '404': *6 '422': @@ -95006,9 +95344,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 responses: '202': *93 '400': *14 @@ -95035,17 +95373,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 responses: '202': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 '400': *14 '422': *15 '403': *27 @@ -95071,8 +95409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -95168,8 +95506,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95178,7 +95516,7 @@ paths: application/json: schema: type: array - items: &640 + items: &643 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95211,8 +95549,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -95290,8 +95628,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -95385,8 +95723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -95540,8 +95878,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -95551,7 +95889,7 @@ paths: application/json: schema: type: array - items: *640 + items: *643 examples: default: value: @@ -95584,8 +95922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *359 - - *360 + - *362 + - *363 - name: sha in: path required: true @@ -95641,7 +95979,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *644 examples: default: value: @@ -95695,8 +96033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -95708,7 +96046,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -95728,14 +96066,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &642 + schema: &645 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95808,8 +96146,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -95835,7 +96173,7 @@ paths: description: Response content: application/json: - schema: *642 + schema: *645 examples: default: value: @@ -95862,8 +96200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -95883,8 +96221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -95966,8 +96304,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -95975,7 +96313,7 @@ paths: application/json: schema: type: array - items: &643 + items: &646 title: Tag protection description: Tag protection type: object @@ -96032,8 +96370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -96056,7 +96394,7 @@ paths: description: Response content: application/json: - schema: *643 + schema: *646 examples: default: value: @@ -96087,8 +96425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -96125,8 +96463,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *359 - - *360 + - *362 + - *363 - name: ref in: path required: true @@ -96162,8 +96500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -96175,7 +96513,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 headers: Link: *37 '404': *6 @@ -96195,8 +96533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *359 - - *360 + - *362 + - *363 - *19 - *17 responses: @@ -96204,7 +96542,7 @@ paths: description: Response content: application/json: - schema: &644 + schema: &647 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96216,7 +96554,7 @@ paths: required: - names examples: - default: &645 + default: &648 value: names: - octocat @@ -96239,8 +96577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -96271,9 +96609,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *647 examples: - default: *645 + default: *648 '404': *6 '422': *7 x-github: @@ -96294,9 +96632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *359 - - *360 - - &646 + - *362 + - *363 + - &649 name: per description: The time frame to display results for. in: query @@ -96327,7 +96665,7 @@ paths: - 128 clones: type: array - items: &647 + items: &650 title: Traffic type: object properties: @@ -96414,8 +96752,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -96509,8 +96847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -96573,9 +96911,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *359 - - *360 - - *646 + - *362 + - *363 + - *649 responses: '200': description: Response @@ -96596,7 +96934,7 @@ paths: - 3782 views: type: array - items: *647 + items: *650 required: - uniques - count @@ -96673,8 +97011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -96948,8 +97286,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96972,8 +97310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -96995,8 +97333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -97022,8 +97360,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *359 - - *360 + - *362 + - *363 - name: ref in: path required: true @@ -97115,9 +97453,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97268,7 +97606,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &655 + - &658 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -97278,7 +97616,7 @@ paths: type: string examples: - members - - &660 + - &663 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -97290,7 +97628,7 @@ paths: format: int32 examples: - 1 - - &661 + - &664 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -97334,7 +97672,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &649 + items: &652 allOf: - type: object required: @@ -97416,7 +97754,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: &662 + meta: &665 type: object description: The metadata associated with the creation/updates to the user. @@ -97481,31 +97819,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &650 + '400': &653 description: Bad request content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '401': &651 + schema: *651 + '401': &654 description: Authorization failure - '403': &652 + '403': &655 description: Permission denied - '429': &653 + '429': &656 description: Too many requests content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '500': &654 + schema: *651 + '500': &657 description: Internal server error content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 + schema: *651 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97529,7 +97867,7 @@ paths: required: true content: application/json: - schema: &658 + schema: &661 type: object required: - schemas @@ -97589,9 +97927,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *649 + schema: *652 examples: - group: &656 + group: &659 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -97610,13 +97948,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': *650 - '401': *651 - '403': *652 - '409': &659 + '400': *653 + '401': *654 + '403': *655 + '409': &662 description: Duplicate record detected - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97633,7 +97971,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: - - &657 + - &660 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -97642,22 +97980,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *655 + - *658 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *649 + schema: *652 examples: - default: *656 - '400': *650 - '401': *651 - '403': *652 + default: *659 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97676,13 +98014,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: - - *657 + - *660 - *38 requestBody: required: true content: application/json: - schema: *658 + schema: *661 examples: group: summary: Group @@ -97708,17 +98046,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *649 + schema: *652 examples: - group: *656 - groupWithMembers: *656 - '400': *650 - '401': *651 - '403': *652 + group: *659 + groupWithMembers: *659 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97742,13 +98080,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: - - *657 + - *660 - *38 requestBody: required: true content: application/json: - schema: &669 + schema: &672 type: object required: - Operations @@ -97808,17 +98146,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *649 + schema: *652 examples: - updateGroup: *656 - addMembers: *656 - '400': *650 - '401': *651 - '403': *652 + updateGroup: *659 + addMembers: *659 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97834,17 +98172,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: - - *657 + - *660 - *38 responses: '204': description: Group was deleted, no content - '400': *650 - '401': *651 - '403': *652 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97878,8 +98216,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *660 - - *661 + - *663 + - *664 - *38 responses: '200': @@ -97913,7 +98251,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &664 + items: &667 allOf: - type: object required: @@ -98005,7 +98343,7 @@ paths: address. examples: - true - roles: &663 + roles: &666 type: array description: The roles assigned to the user. items: @@ -98064,7 +98402,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *662 + meta: *665 startIndex: type: integer description: A starting index for the returned page @@ -98103,11 +98441,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *650 - '401': *651 - '403': *652 - '429': *653 - '500': *654 + '400': *653 + '401': *654 + '403': *655 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98131,7 +98469,7 @@ paths: required: true content: application/json: - schema: &667 + schema: &670 type: object required: - schemas @@ -98224,9 +98562,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *663 + roles: *666 examples: - user: &668 + user: &671 summary: User value: schemas: @@ -98273,9 +98611,9 @@ paths: description: User has been created content: application/scim+json: - schema: *664 + schema: *667 examples: - user: &665 + user: &668 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98301,13 +98639,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: *665 - '400': *650 - '401': *651 - '403': *652 - '409': *659 - '429': *653 - '500': *654 + enterpriseOwner: *668 + '400': *653 + '401': *654 + '403': *655 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98324,7 +98662,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: - - &666 + - &669 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -98337,15 +98675,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *664 + schema: *667 examples: - default: *665 - '400': *650 - '401': *651 - '403': *652 + default: *668 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98367,30 +98705,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: - - *666 + - *669 - *38 requestBody: required: true content: application/json: - schema: *667 + schema: *670 examples: - user: *668 + user: *671 responses: '200': description: User was updated content: application/scim+json: - schema: *664 + schema: *667 examples: - user: *665 - '400': *650 - '401': *651 - '403': *652 + user: *668 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98425,13 +98763,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: - - *666 + - *669 - *38 requestBody: required: true content: application/json: - schema: *669 + schema: *672 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -98471,18 +98809,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *664 - examples: - userMultiValuedProperties: *665 - userSingleValuedProperties: *665 - disableUser: *665 - '400': *650 - '401': *651 - '403': *652 + schema: *667 + examples: + userMultiValuedProperties: *668 + userSingleValuedProperties: *668 + disableUser: *668 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98502,17 +98840,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: - - *666 + - *669 - *38 responses: '204': description: User was deleted, no content - '400': *650 - '401': *651 - '403': *652 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98603,7 +98941,7 @@ paths: - 1 Resources: type: array - items: &670 + items: &673 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -98850,22 +99188,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &671 + '404': &674 description: Resource not found content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '403': &672 + schema: *651 + '403': &675 description: Forbidden content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '400': *650 - '429': *653 + schema: *651 + '400': *653 + '429': *656 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -98891,9 +99229,9 @@ paths: description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: &673 + default: &676 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98916,17 +99254,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *671 - '403': *672 - '500': *654 + '404': *674 + '403': *675 + '500': *657 '409': description: Conflict content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '400': *650 + schema: *651 + '400': *653 requestBody: required: true content: @@ -99021,17 +99359,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *164 - - *666 + - *669 responses: '200': description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: *673 - '404': *671 - '403': *672 + default: *676 + '404': *674 + '403': *675 '304': *35 x-github: githubCloudOnly: true @@ -99055,18 +99393,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *164 - - *666 + - *669 responses: '200': description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: *673 + default: *676 '304': *35 - '404': *671 - '403': *672 + '404': *674 + '403': *675 requestBody: required: true content: @@ -99177,19 +99515,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *164 - - *666 + - *669 responses: '200': description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: *673 + default: *676 '304': *35 - '404': *671 - '403': *672 - '400': *650 + '404': *674 + '403': *675 + '400': *653 '429': description: Response content: @@ -99285,12 +99623,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *164 - - *666 + - *669 responses: '204': description: Response - '404': *671 - '403': *672 + '404': *674 + '403': *675 '304': *35 x-github: githubCloudOnly: true @@ -99424,7 +99762,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &674 + text_matches: &677 title: Search Result Text Matches type: array items: @@ -99588,7 +99926,7 @@ paths: enum: - author-date - committer-date - - &675 + - &678 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 @@ -99657,7 +99995,7 @@ paths: committer: anyOf: - type: 'null' - - *416 + - *419 comment_count: type: integer message: @@ -99676,7 +100014,7 @@ paths: url: type: string format: uri - verification: *526 + verification: *529 required: - author - committer @@ -99691,7 +100029,7 @@ paths: committer: anyOf: - type: 'null' - - *416 + - *419 parents: type: array items: @@ -99708,7 +100046,7 @@ paths: type: number node_id: type: string - text_matches: *674 + text_matches: *677 required: - sha - node_id @@ -99891,7 +100229,7 @@ paths: - interactions - created - updated - - *675 + - *678 - *17 - *19 - name: advanced_search @@ -100015,7 +100353,7 @@ paths: milestone: anyOf: - type: 'null' - - *481 + - *484 comments: type: integer created_at: @@ -100029,7 +100367,7 @@ paths: - string - 'null' format: date-time - text_matches: *674 + text_matches: *677 pull_request: type: object properties: @@ -100078,6 +100416,7 @@ paths: timeline_url: type: string format: uri + type: *278 performed_via_github_app: anyOf: - type: 'null' @@ -100254,7 +100593,7 @@ paths: enum: - created - updated - - *675 + - *678 - *17 - *19 responses: @@ -100299,7 +100638,7 @@ paths: - 'null' score: type: number - text_matches: *674 + text_matches: *677 required: - id - node_id @@ -100385,7 +100724,7 @@ paths: - forks - help-wanted-issues - updated - - *675 + - *678 - *17 - *19 responses: @@ -100622,7 +100961,7 @@ paths: - admin - pull - push - text_matches: *674 + text_matches: *677 temp_clone_token: type: string allow_merge_commit: @@ -100931,7 +101270,7 @@ paths: - string - 'null' format: uri - text_matches: *674 + text_matches: *677 related: type: - array @@ -101126,7 +101465,7 @@ paths: - followers - repositories - joined - - *675 + - *678 - *17 - *19 responses: @@ -101236,7 +101575,7 @@ paths: type: - boolean - 'null' - text_matches: *674 + text_matches: *677 blog: type: - string @@ -101318,7 +101657,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &676 + - &679 name: team_id description: The unique identifier of the team. in: path @@ -101330,9 +101669,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 x-github: githubCloudOnly: false @@ -101359,7 +101698,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *676 + - *679 requestBody: required: true content: @@ -101423,16 +101762,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '201': description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 '422': *15 '403': *27 @@ -101460,7 +101799,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *676 + - *679 responses: '204': description: Response @@ -101491,7 +101830,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *676 + - *679 - *84 - *17 - *19 @@ -101502,9 +101841,9 @@ paths: application/json: schema: type: array - items: *342 + items: *345 examples: - default: *677 + default: *680 headers: Link: *37 x-github: @@ -101533,7 +101872,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *676 + - *679 requestBody: required: true content: @@ -101567,9 +101906,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *343 + default: *346 x-github: triggersNotification: true githubCloudOnly: false @@ -101596,16 +101935,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 responses: '200': description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *343 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101630,8 +101969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 requestBody: required: false content: @@ -101654,9 +101993,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *678 + default: *681 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101681,8 +102020,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 responses: '204': description: Response @@ -101711,8 +102050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *676 - - *344 + - *679 + - *347 - *84 - *17 - *19 @@ -101723,9 +102062,9 @@ paths: application/json: schema: type: array - items: *345 + items: *348 examples: - default: *679 + default: *682 headers: Link: *37 x-github: @@ -101754,8 +102093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 + - *347 requestBody: required: true content: @@ -101777,9 +102116,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: triggersNotification: true githubCloudOnly: false @@ -101806,17 +102145,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101841,9 +102180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 requestBody: required: true content: @@ -101865,9 +102204,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *680 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101892,9 +102231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 responses: '204': description: Response @@ -101923,9 +102262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -101951,9 +102290,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 x-github: @@ -101982,9 +102321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 requestBody: required: true content: @@ -102016,9 +102355,9 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102044,8 +102383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -102071,9 +102410,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 x-github: @@ -102102,8 +102441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 requestBody: required: true content: @@ -102135,9 +102474,9 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102161,7 +102500,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -102199,7 +102538,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *676 + - *679 - name: role description: Filters members returned by their role in the team. in: query @@ -102222,7 +102561,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '404': *6 @@ -102250,7 +102589,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *676 + - *679 - *212 responses: '204': @@ -102287,7 +102626,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *676 + - *679 - *212 responses: '204': @@ -102327,7 +102666,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *676 + - *679 - *212 responses: '204': @@ -102364,16 +102703,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: - - *676 + - *679 - *212 responses: '200': description: Response content: application/json: - schema: *356 + schema: *359 examples: - response-if-user-is-a-team-maintainer: *681 + response-if-user-is-a-team-maintainer: *684 '404': *6 x-github: githubCloudOnly: false @@ -102406,7 +102745,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: - - *676 + - *679 - *212 requestBody: required: false @@ -102432,9 +102771,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *359 examples: - response-if-users-membership-with-team-is-now-pending: *682 + response-if-users-membership-with-team-is-now-pending: *685 '403': description: Forbidden if team synchronization is set up '422': @@ -102468,7 +102807,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: - - *676 + - *679 - *212 responses: '204': @@ -102497,7 +102836,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -102507,9 +102846,9 @@ paths: application/json: schema: type: array - items: *357 + items: *360 examples: - default: *683 + default: *686 headers: Link: *37 '404': *6 @@ -102535,16 +102874,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *676 - - *358 + - *679 + - *361 responses: '200': description: Response content: application/json: - schema: *357 + schema: *360 examples: - default: *684 + default: *687 '404': description: Not Found if project is not managed by this team x-github: @@ -102568,8 +102907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *676 - - *358 + - *679 + - *361 requestBody: required: false content: @@ -102636,8 +102975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *676 - - *358 + - *679 + - *361 responses: '204': description: Response @@ -102664,7 +103003,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -102676,7 +103015,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 '404': *6 @@ -102706,15 +103045,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: - - *676 - - *359 - - *360 + - *679 + - *362 + - *363 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *685 + schema: *688 examples: alternative-response-with-extra-repository-information: value: @@ -102865,9 +103204,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: - - *676 - - *359 - - *360 + - *679 + - *362 + - *363 requestBody: required: false content: @@ -102917,9 +103256,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: - - *676 - - *359 - - *360 + - *679 + - *362 + - *363 responses: '204': description: Response @@ -102948,15 +103287,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: - - *676 + - *679 responses: '200': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '403': *27 '404': *6 x-github: @@ -102983,7 +103322,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: - - *676 + - *679 requestBody: required: true content: @@ -103044,7 +103383,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -103075,7 +103414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -103087,7 +103426,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: *686 + response-if-child-teams-exist: *689 headers: Link: *37 '404': *6 @@ -103120,7 +103459,7 @@ paths: application/json: schema: oneOf: - - &688 + - &691 title: Private User description: Private User type: object @@ -103370,7 +103709,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *687 + - *690 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -103530,7 +103869,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: default: value: @@ -103609,7 +103948,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '304': *35 '404': *6 '403': *27 @@ -103733,9 +104072,9 @@ paths: type: integer codespaces: type: array - items: *281 + items: *284 examples: - default: *282 + default: *285 '304': *35 '500': *95 '401': *23 @@ -103874,17 +104213,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '401': *23 '403': *27 '404': *6 @@ -103928,7 +104267,7 @@ paths: type: integer secrets: type: array - items: &689 + items: &692 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -103970,7 +104309,7 @@ paths: - visibility - selected_repositories_url examples: - default: *470 + default: *473 headers: Link: *37 x-github: @@ -104048,7 +104387,7 @@ paths: description: Response content: application/json: - schema: *689 + schema: *692 examples: default: value: @@ -104194,7 +104533,7 @@ paths: type: array items: *190 examples: - default: *690 + default: *693 '401': *23 '403': *27 '404': *6 @@ -104338,15 +104677,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: - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '304': *35 '500': *95 '401': *23 @@ -104372,7 +104711,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: - - *283 + - *286 requestBody: required: false content: @@ -104402,9 +104741,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '401': *23 '403': *27 '404': *6 @@ -104426,7 +104765,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: - - *283 + - *286 responses: '202': *93 '304': *35 @@ -104455,13 +104794,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: - - *283 + - *286 responses: '202': description: Response content: application/json: - schema: &691 + schema: &694 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -104514,7 +104853,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &692 + default: &695 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -104546,7 +104885,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *283 + - *286 - name: export_id in: path required: true @@ -104559,9 +104898,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *694 examples: - default: *692 + default: *695 '404': *6 x-github: githubCloudOnly: false @@ -104582,7 +104921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *283 + - *286 responses: '200': description: Response @@ -104598,9 +104937,9 @@ paths: type: integer machines: type: array - items: *469 + items: *472 examples: - default: *693 + default: *696 '304': *35 '500': *95 '401': *23 @@ -104629,7 +104968,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: - - *283 + - *286 requestBody: required: true content: @@ -104685,11 +105024,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *372 + repository: *375 machine: anyOf: - type: 'null' - - *469 + - *472 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -105486,15 +105825,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: - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '304': *35 '500': *95 '400': *14 @@ -105526,15 +105865,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: - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '500': *95 '401': *23 '403': *27 @@ -105564,9 +105903,9 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: &706 + default: &709 value: - id: 197 name: hello_docker @@ -105667,7 +106006,7 @@ paths: application/json: schema: type: array - items: &694 + items: &697 title: Email description: Email type: object @@ -105737,9 +106076,9 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: - default: &708 + default: &711 value: - email: octocat@github.com verified: true @@ -105816,7 +106155,7 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: default: value: @@ -105928,7 +106267,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '304': *35 @@ -105961,7 +106300,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '304': *35 @@ -106074,7 +106413,7 @@ paths: application/json: schema: type: array - items: &695 + items: &698 title: GPG Key description: A unique encryption key type: object @@ -106219,7 +106558,7 @@ paths: - subkeys - revoked examples: - default: &719 + default: &722 value: - id: 3 name: Octocat's GPG Key @@ -106304,9 +106643,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: &696 + default: &699 value: id: 3 name: Octocat's GPG Key @@ -106363,7 +106702,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: - - &697 + - &700 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -106375,9 +106714,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: *696 + default: *699 '404': *6 '304': *35 '403': *27 @@ -106400,7 +106739,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: - - *697 + - *700 responses: '204': description: Response @@ -106591,7 +106930,7 @@ paths: type: array items: *61 examples: - default: *698 + default: *701 headers: Link: *37 '404': *6 @@ -106705,7 +107044,7 @@ paths: required: true content: application/json: - schema: *537 + schema: *540 examples: default: value: @@ -106797,7 +107136,7 @@ paths: - closed - all default: open - - *278 + - *281 - name: sort description: What to sort results by. in: query @@ -106822,7 +107161,7 @@ paths: type: array items: *148 examples: - default: *279 + default: *282 headers: Link: *37 '404': *6 @@ -106855,7 +107194,7 @@ paths: application/json: schema: type: array - items: &699 + items: &702 title: Key description: Key type: object @@ -106953,9 +107292,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *702 examples: - default: &700 + default: &703 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -106988,15 +107327,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: - - *564 + - *567 responses: '200': description: Response content: application/json: - schema: *699 + schema: *702 examples: - default: *700 + default: *703 '404': *6 '304': *35 '403': *27 @@ -107019,7 +107358,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: - - *564 + - *567 responses: '204': description: Response @@ -107052,7 +107391,7 @@ paths: application/json: schema: type: array - items: &701 + items: &704 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107131,7 +107470,7 @@ paths: - account - plan examples: - default: &702 + default: &705 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -107193,9 +107532,9 @@ paths: application/json: schema: type: array - items: *701 + items: *704 examples: - default: *702 + default: *705 headers: Link: *37 '304': *35 @@ -107235,7 +107574,7 @@ paths: application/json: schema: type: array - items: *284 + items: *287 examples: default: value: @@ -107343,7 +107682,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *287 examples: default: value: @@ -107426,7 +107765,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *287 examples: default: value: @@ -107494,7 +107833,7 @@ paths: application/json: schema: type: array - items: *286 + items: *289 examples: default: value: @@ -107756,7 +108095,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -107936,7 +108275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *287 + - *290 - name: exclude in: query required: false @@ -107949,7 +108288,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -108143,7 +108482,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *287 + - *290 responses: '302': description: Response @@ -108169,7 +108508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *287 + - *290 responses: '204': description: Response @@ -108198,8 +108537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *287 - - *703 + - *290 + - *706 responses: '204': description: Response @@ -108223,7 +108562,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *287 + - *290 - *17 - *19 responses: @@ -108235,7 +108574,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 '404': *6 @@ -108272,7 +108611,7 @@ paths: type: array items: *56 examples: - default: *704 + default: *707 headers: Link: *37 '304': *35 @@ -108314,7 +108653,7 @@ paths: - docker - nuget - container - - *705 + - *708 - *19 - *17 responses: @@ -108324,10 +108663,10 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *706 - '400': *707 + default: *709 + '400': *710 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108347,16 +108686,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: - - *294 - - *295 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *292 + schema: *295 examples: - default: &720 + default: &723 value: id: 40201 name: octo-name @@ -108469,8 +108808,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: - - *294 - - *295 + - *297 + - *298 responses: '204': description: Response @@ -108500,8 +108839,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: - - *294 - - *295 + - *297 + - *298 - name: token description: package token schema: @@ -108533,8 +108872,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: - - *294 - - *295 + - *297 + - *298 - *19 - *17 - name: state @@ -108554,7 +108893,7 @@ paths: application/json: schema: type: array - items: *296 + items: *299 examples: default: value: @@ -108603,15 +108942,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: - - *294 - - *295 - *297 + - *298 + - *300 responses: '200': description: Response content: application/json: - schema: *296 + schema: *299 examples: default: value: @@ -108647,9 +108986,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: - - *294 - - *295 - *297 + - *298 + - *300 responses: '204': description: Response @@ -108679,9 +109018,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: - - *294 - - *295 - *297 + - *298 + - *300 responses: '204': description: Response @@ -108739,7 +109078,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: default: value: @@ -108811,9 +109150,9 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: - default: *708 + default: *711 headers: Link: *37 '304': *35 @@ -108926,7 +109265,7 @@ paths: type: array items: *61 examples: - default: &715 + default: &718 summary: Default response value: - id: 1296269 @@ -109242,9 +109581,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109282,9 +109621,9 @@ paths: application/json: schema: type: array - items: *539 + items: *542 examples: - default: *709 + default: *712 headers: Link: *37 '304': *35 @@ -109363,7 +109702,7 @@ paths: application/json: schema: type: array - items: &710 + items: &713 title: Social account description: Social media account type: object @@ -109380,7 +109719,7 @@ paths: - provider - url examples: - default: &711 + default: &714 value: - provider: twitter url: https://twitter.com/github @@ -109443,9 +109782,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: *711 + default: *714 '422': *15 '304': *35 '404': *6 @@ -109533,7 +109872,7 @@ paths: application/json: schema: type: array - items: &712 + items: &715 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -109553,7 +109892,7 @@ paths: - title - created_at examples: - default: &721 + default: &724 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109620,9 +109959,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *715 examples: - default: &713 + default: &716 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109653,7 +109992,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: - - &714 + - &717 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -109665,9 +110004,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *715 examples: - default: *713 + default: *716 '404': *6 '304': *35 '403': *27 @@ -109690,7 +110029,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: - - *714 + - *717 responses: '204': description: Response @@ -109719,7 +110058,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: - - &722 + - &725 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 @@ -109744,11 +110083,11 @@ paths: type: array items: *61 examples: - default-response: *715 + default-response: *718 application/vnd.github.v3.star+json: schema: type: array - items: &723 + items: &726 title: Starred Repository description: Starred Repository type: object @@ -109904,8 +110243,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response if this repository is starred by you @@ -109933,8 +110272,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -109958,8 +110297,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -109994,7 +110333,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 '304': *35 @@ -110031,7 +110370,7 @@ paths: application/json: schema: type: array - items: *340 + items: *343 examples: default: value: @@ -110117,10 +110456,10 @@ paths: application/json: schema: oneOf: - - *688 - - *687 + - *691 + - *690 examples: - default-response: &717 + default-response: &720 summary: Default response value: login: octocat @@ -110155,7 +110494,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &718 + response-with-git-hub-plan-information: &721 summary: Response with GitHub plan information value: login: octocat @@ -110215,7 +110554,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *716 + - *719 - *17 responses: '200': @@ -110226,7 +110565,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: example: ; rel="next" @@ -110264,11 +110603,11 @@ paths: application/json: schema: oneOf: - - *688 - - *687 + - *691 + - *690 examples: - default-response: *717 - response-with-git-hub-plan-information: *718 + default-response: *720 + response-with-git-hub-plan-information: *721 '404': *6 x-github: githubCloudOnly: false @@ -110344,7 +110683,7 @@ paths: bundle_url: type: string examples: - default: *412 + default: *415 '201': description: Response content: @@ -110383,9 +110722,9 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *706 + default: *709 '403': *27 '401': *23 x-github: @@ -110668,7 +111007,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -110699,7 +111038,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -110789,9 +111128,9 @@ paths: application/json: schema: type: array - items: *695 + items: *698 examples: - default: *719 + default: *722 headers: Link: *37 x-github: @@ -110895,7 +111234,7 @@ paths: application/json: schema: *20 examples: - default: *536 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110973,7 +111312,7 @@ paths: type: array items: *56 examples: - default: *704 + default: *707 headers: Link: *37 x-github: @@ -111012,7 +111351,7 @@ paths: - docker - nuget - container - - *705 + - *708 - *212 - *19 - *17 @@ -111023,12 +111362,12 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *706 + default: *709 '403': *27 '401': *23 - '400': *707 + '400': *710 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111048,17 +111387,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *294 - - *295 + - *297 + - *298 - *212 responses: '200': description: Response content: application/json: - schema: *292 + schema: *295 examples: - default: *720 + default: *723 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111079,8 +111418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *294 - - *295 + - *297 + - *298 - *212 responses: '204': @@ -111113,8 +111452,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *294 - - *295 + - *297 + - *298 - *212 - name: token description: package token @@ -111147,8 +111486,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: - - *294 - - *295 + - *297 + - *298 - *212 responses: '200': @@ -111157,7 +111496,7 @@ paths: application/json: schema: type: array - items: *296 + items: *299 examples: default: value: @@ -111215,16 +111554,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: - - *294 - - *295 - *297 + - *298 + - *300 - *212 responses: '200': description: Response content: application/json: - schema: *296 + schema: *299 examples: default: value: @@ -111259,10 +111598,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *294 - - *295 - - *212 - *297 + - *298 + - *212 + - *300 responses: '204': description: Response @@ -111294,10 +111633,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *294 - - *295 - - *212 - *297 + - *298 + - *212 + - *300 responses: '204': description: Response @@ -111344,7 +111683,7 @@ paths: application/json: schema: type: array - items: *308 + items: *311 examples: default: value: @@ -111627,7 +111966,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -111657,9 +111996,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111687,9 +112026,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *333 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111717,9 +112056,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111747,9 +112086,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: *711 + default: *714 headers: Link: *37 x-github: @@ -111779,9 +112118,9 @@ paths: application/json: schema: type: array - items: *712 + items: *715 examples: - default: *721 + default: *724 headers: Link: *37 x-github: @@ -111806,7 +112145,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *212 - - *722 + - *725 - *84 - *17 - *19 @@ -111818,11 +112157,11 @@ paths: schema: anyOf: - type: array - items: *723 + items: *726 - type: array items: *61 examples: - default-response: *715 + default-response: *718 headers: Link: *37 x-github: @@ -111853,7 +112192,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -111982,7 +112321,7 @@ webhooks: type: string enum: - disabled - enterprise: &724 + enterprise: &727 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -112051,7 +112390,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &725 + installation: &728 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -112072,7 +112411,7 @@ webhooks: required: - id - node_id - organization: &726 + organization: &729 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -112145,7 +112484,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &727 + repository: &730 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -113058,10 +113397,10 @@ webhooks: type: string enum: - enabled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -113137,11 +113476,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: &728 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + rule: &731 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) @@ -113364,11 +113703,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + rule: *731 sender: *4 required: - action @@ -113556,11 +113895,11 @@ webhooks: - everyone required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + rule: *731 sender: *4 required: - action @@ -113633,7 +113972,7 @@ webhooks: required: true content: application/json: - schema: &731 + schema: &734 title: Exemption request cancellation event type: object properties: @@ -113641,11 +113980,11 @@ webhooks: type: string enum: - cancelled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: &729 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: &732 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -113875,7 +114214,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &730 + items: &733 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -113987,7 +114326,7 @@ webhooks: required: true content: application/json: - schema: &732 + schema: &735 title: Exemption request completed event type: object properties: @@ -113995,11 +114334,11 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 sender: *4 required: - action @@ -114071,7 +114410,7 @@ webhooks: required: true content: application/json: - schema: &733 + schema: &736 title: Exemption request created event type: object properties: @@ -114079,11 +114418,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 sender: *4 required: - action @@ -114155,7 +114494,7 @@ webhooks: required: true content: application/json: - schema: &734 + schema: &737 title: Exemption response dismissed event type: object properties: @@ -114163,12 +114502,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 - exemption_response: *730 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 + exemption_response: *733 sender: *4 required: - action @@ -114242,7 +114581,7 @@ webhooks: required: true content: application/json: - schema: &735 + schema: &738 title: Exemption response submitted event type: object properties: @@ -114250,12 +114589,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 - exemption_response: *730 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 + exemption_response: *733 sender: *4 required: - action @@ -114328,7 +114667,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114395,7 +114734,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114462,7 +114801,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *736 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114529,7 +114868,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *737 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114597,7 +114936,7 @@ webhooks: required: true content: application/json: - schema: *735 + schema: *738 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114675,7 +115014,7 @@ webhooks: type: string enum: - completed - check_run: &737 + check_run: &740 title: CheckRun description: A check performed on the code of a given code change type: object @@ -114743,7 +115082,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *431 + items: *434 repository: *190 status: type: string @@ -114788,7 +115127,7 @@ webhooks: - examples: - neutral - deployment: *736 + deployment: *739 details_url: type: string examples: @@ -114848,7 +115187,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *431 + items: *434 started_at: type: string format: date-time @@ -114886,9 +115225,9 @@ webhooks: - output - app - pull_requests - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - check_run @@ -115281,10 +115620,10 @@ webhooks: type: string enum: - created - check_run: *737 - installation: *725 - organization: *726 - repository: *727 + check_run: *740 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - check_run @@ -115680,10 +116019,10 @@ webhooks: type: string enum: - requested_action - check_run: *737 - installation: *725 - organization: *726 - repository: *727 + check_run: *740 + installation: *728 + organization: *729 + repository: *730 requested_action: description: The action requested by the user. type: object @@ -116088,10 +116427,10 @@ webhooks: type: string enum: - rerequested - check_run: *737 - installation: *725 - organization: *726 - repository: *727 + check_run: *740 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - check_run @@ -117083,10 +117422,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -117771,10 +118110,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -118453,10 +118792,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -118622,7 +118961,7 @@ webhooks: required: - login - id - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -118774,20 +119113,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &738 + commit_oid: &741 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: *724 - installation: *725 - organization: *726 - ref: &739 + enterprise: *727 + installation: *728 + organization: *729 + ref: &742 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: *727 + repository: *730 sender: *4 required: - action @@ -118951,7 +119290,7 @@ webhooks: required: - login - id - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119192,12 +119531,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -119295,7 +119634,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -119477,12 +119816,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -119648,7 +119987,7 @@ webhooks: required: - login - id - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119825,12 +120164,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -119930,7 +120269,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120110,9 +120449,9 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -120120,7 +120459,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *730 sender: *4 required: - action @@ -120216,7 +120555,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120363,12 +120702,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -120630,10 +120969,10 @@ webhooks: - updated_at - author_association - body - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -120714,18 +121053,18 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *726 - pusher_type: &740 + organization: *729 + pusher_type: &743 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &741 + ref: &744 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -120735,7 +121074,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *730 sender: *4 required: - ref @@ -120818,9 +121157,9 @@ webhooks: enum: - created definition: *110 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -120905,9 +121244,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -120985,9 +121324,9 @@ webhooks: enum: - updated definition: *110 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -121064,19 +121403,19 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - repository: *727 - organization: *726 + enterprise: *727 + installation: *728 + repository: *730 + organization: *729 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *310 + items: *313 old_property_values: type: array description: The old custom property values for the repository. - items: *310 + items: *313 required: - action - repository @@ -121152,18 +121491,18 @@ webhooks: title: delete event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - pusher_type: *740 - ref: *741 + enterprise: *727 + installation: *728 + organization: *729 + pusher_type: *743 + ref: *744 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *727 + repository: *730 sender: *4 required: - ref @@ -121247,11 +121586,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121335,11 +121674,11 @@ webhooks: type: string enum: - auto_reopened - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121423,11 +121762,11 @@ webhooks: type: string enum: - created - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121509,11 +121848,11 @@ webhooks: type: string enum: - dismissed - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121595,11 +121934,11 @@ webhooks: type: string enum: - fixed - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121682,11 +122021,11 @@ webhooks: type: string enum: - reintroduced - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121768,11 +122107,11 @@ webhooks: type: string enum: - reopened - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121849,9 +122188,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - key: &742 + enterprise: *727 + installation: *728 + key: &745 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -121889,8 +122228,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -121967,11 +122306,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - key: *742 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + key: *745 + organization: *729 + repository: *730 sender: *4 required: - action @@ -122543,12 +122882,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: &746 + workflow: &749 title: Workflow type: - object @@ -123286,13 +123625,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *501 + deployment: *504 pull_requests: type: array - items: *583 - repository: *727 - organization: *726 - installation: *725 + items: *586 + repository: *730 + organization: *729 + installation: *728 sender: *4 responses: '200': @@ -123363,7 +123702,7 @@ webhooks: type: string enum: - approved - approver: &743 + approver: &746 type: object properties: avatar_url: @@ -123406,11 +123745,11 @@ webhooks: type: string comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: &744 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + reviewers: &747 type: array items: type: object @@ -123491,7 +123830,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &745 + workflow_job_run: &748 type: object properties: conclusion: @@ -124237,18 +124576,18 @@ webhooks: type: string enum: - rejected - approver: *743 + approver: *746 comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: *744 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + reviewers: *747 sender: *4 since: type: string - workflow_job_run: *745 + workflow_job_run: *748 workflow_job_runs: type: array items: @@ -124965,13 +125304,13 @@ webhooks: type: string enum: - requested - enterprise: *724 + enterprise: *727 environment: type: string - installation: *725 - organization: *726 - repository: *727 - requestor: &751 + installation: *728 + organization: *729 + repository: *730 + requestor: &754 title: User type: - object @@ -126914,12 +127253,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Deployment Workflow Run type: @@ -127610,7 +127949,7 @@ webhooks: type: string enum: - answered - answer: &749 + answer: &752 type: object properties: author_association: @@ -127770,7 +128109,7 @@ webhooks: - created_at - updated_at - body - discussion: &747 + discussion: &750 title: Discussion description: A Discussion in a repository. type: object @@ -128066,7 +128405,7 @@ webhooks: - id labels: type: array - items: *546 + items: *549 required: - repository_url - category @@ -128088,10 +128427,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128218,11 +128557,11 @@ webhooks: - from required: - category - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128305,11 +128644,11 @@ webhooks: type: string enum: - closed - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128391,7 +128730,7 @@ webhooks: type: string enum: - created - comment: &748 + comment: &751 type: object properties: author_association: @@ -128551,11 +128890,11 @@ webhooks: - updated_at - body - reactions - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128638,12 +128977,12 @@ webhooks: type: string enum: - deleted - comment: *748 - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *751 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128738,12 +129077,12 @@ webhooks: - from required: - body - comment: *748 - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *751 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128827,11 +129166,11 @@ webhooks: type: string enum: - created - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128913,11 +129252,11 @@ webhooks: type: string enum: - deleted - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129017,11 +129356,11 @@ webhooks: type: string required: - from - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129103,10 +129442,10 @@ webhooks: type: string enum: - labeled - discussion: *747 - enterprise: *724 - installation: *725 - label: &750 + discussion: *750 + enterprise: *727 + installation: *728 + label: &753 title: Label type: object properties: @@ -129139,8 +129478,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129223,11 +129562,11 @@ webhooks: type: string enum: - locked - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129309,11 +129648,11 @@ webhooks: type: string enum: - pinned - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129395,11 +129734,11 @@ webhooks: type: string enum: - reopened - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129484,16 +129823,16 @@ webhooks: changes: type: object properties: - new_discussion: *747 - new_repository: *727 + new_discussion: *750 + new_repository: *730 required: - new_discussion - new_repository - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129576,10 +129915,10 @@ webhooks: type: string enum: - unanswered - discussion: *747 - old_answer: *749 - organization: *726 - repository: *727 + discussion: *750 + old_answer: *752 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129661,12 +130000,12 @@ webhooks: type: string enum: - unlabeled - discussion: *747 - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129749,11 +130088,11 @@ webhooks: type: string enum: - unlocked - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129835,11 +130174,11 @@ webhooks: type: string enum: - unpinned - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129911,7 +130250,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *736 responses: '200': description: Return a 200 status to indicate that the data was received @@ -129977,7 +130316,7 @@ webhooks: required: true content: application/json: - schema: *735 + schema: *738 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130043,7 +130382,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130109,7 +130448,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130175,7 +130514,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *736 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130241,7 +130580,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *737 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130307,7 +130646,7 @@ webhooks: required: true content: application/json: - schema: *735 + schema: *738 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130374,7 +130713,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *724 + enterprise: *727 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -131052,9 +131391,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - forkee @@ -131200,9 +131539,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pages: description: The pages that were updated. type: array @@ -131240,7 +131579,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *730 sender: *4 required: - pages @@ -131316,10 +131655,10 @@ webhooks: type: string enum: - created - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: &752 + organization: *729 + repositories: &755 description: An array of repository objects that the installation can access. type: array @@ -131345,8 +131684,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *751 + repository: *730 + requester: *754 sender: *4 required: - action @@ -131421,11 +131760,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -131502,11 +131841,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -131583,10 +131922,10 @@ webhooks: type: string enum: - added - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories_added: &753 + organization: *729 + repositories_added: &756 description: An array of repository objects, which were added to the installation. type: array @@ -131632,15 +131971,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *727 - repository_selection: &754 + repository: *730 + repository_selection: &757 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *751 + requester: *754 sender: *4 required: - action @@ -131719,10 +132058,10 @@ webhooks: type: string enum: - removed - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories_added: *753 + organization: *729 + repositories_added: *756 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -131749,9 +132088,9 @@ webhooks: - name - full_name - private - repository: *727 - repository_selection: *754 - requester: *751 + repository: *730 + repository_selection: *757 + requester: *754 sender: *4 required: - action @@ -131830,11 +132169,11 @@ webhooks: type: string enum: - suspend - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -132017,10 +132356,10 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 target_type: type: string @@ -132099,11 +132438,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -132351,8 +132690,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133199,6 +133538,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -133542,8 +133882,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -133623,7 +133963,7 @@ webhooks: type: string enum: - deleted - comment: &755 + comment: &758 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -133790,8 +134130,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -134634,6 +134974,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -134979,8 +135320,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -135060,7 +135401,7 @@ webhooks: type: string enum: - edited - changes: &780 + changes: &783 description: The changes to the comment. type: object properties: @@ -135072,9 +135413,9 @@ webhooks: type: string required: - from - comment: *755 - enterprise: *724 - installation: *725 + comment: *758 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -135920,6 +136261,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -136263,8 +136605,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -136346,10 +136688,10 @@ webhooks: type: string enum: - assigned - assignee: *751 - enterprise: *724 - installation: *725 - issue: &758 + assignee: *754 + enterprise: *727 + installation: *728 + issue: &761 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -137191,6 +137533,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -137293,8 +137636,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -137374,8 +137717,8 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138222,6 +138565,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -138467,8 +138811,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -138547,8 +138891,8 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139384,6 +139728,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -139485,8 +139830,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -139565,8 +139910,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140427,6 +140772,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -140507,7 +140853,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &756 + milestone: &759 title: Milestone description: A collection of related issues and pull requests. type: object @@ -140650,8 +140996,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -140750,8 +141096,8 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141590,6 +141936,7 @@ webhooks: timeline_url: type: string format: uri + type: *278 title: description: Title of the issue type: string @@ -141695,9 +142042,9 @@ webhooks: - active_lock_reason - body - reactions - label: *750 - organization: *726 - repository: *727 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -141777,8 +142124,8 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142616,6 +142963,7 @@ webhooks: timeline_url: type: string format: uri + type: *278 title: description: Title of the issue type: string @@ -142721,9 +143069,9 @@ webhooks: - active_lock_reason - body - reactions - label: *750 - organization: *726 - repository: *727 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -142803,8 +143151,8 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143667,6 +144015,7 @@ webhooks: timeline_url: type: string format: uri + type: *278 title: description: Title of the issue type: string @@ -143749,8 +144098,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -143829,8 +144178,8 @@ webhooks: type: string enum: - milestoned - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144690,6 +145039,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -144769,9 +145119,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *756 - organization: *726 - repository: *727 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -146271,8 +146621,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147114,6 +147464,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -147215,8 +147566,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -147296,9 +147647,9 @@ webhooks: type: string enum: - pinned - enterprise: *724 - installation: *725 - issue: &757 + enterprise: *727 + installation: *728 + issue: &760 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148134,6 +148485,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -148235,8 +148587,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -148315,8 +148667,8 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149260,8 +149612,9 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + type: *278 + organization: *729 + repository: *730 sender: *4 required: - action @@ -150180,6 +150533,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -150761,11 +151115,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *724 - installation: *725 - issue: *757 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *760 + organization: *729 + repository: *730 sender: *4 required: - action @@ -150846,7 +151200,7 @@ webhooks: type: string enum: - unassigned - assignee: &783 + assignee: &786 title: User type: - object @@ -150918,11 +151272,11 @@ webhooks: required: - login - id - enterprise: *724 - installation: *725 - issue: *758 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *761 + organization: *729 + repository: *730 sender: *4 required: - action @@ -151001,12 +151355,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - issue: *758 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *761 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -151086,8 +151440,8 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151951,6 +152305,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -152030,8 +152385,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152111,11 +152466,11 @@ webhooks: type: string enum: - unpinned - enterprise: *724 - installation: *725 - issue: *757 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *760 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152194,11 +152549,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152276,11 +152631,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152390,11 +152745,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152476,9 +152831,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: &759 + enterprise: *727 + installation: *728 + marketplace_purchase: &762 title: Marketplace Purchase type: object required: @@ -152566,8 +152921,8 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: &760 + organization: *729 + previous_marketplace_purchase: &763 title: Marketplace Purchase type: object properties: @@ -152651,7 +153006,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *730 sender: *4 required: - action @@ -152731,10 +153086,10 @@ webhooks: - changed effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *759 - organization: *726 + enterprise: *727 + installation: *728 + marketplace_purchase: *762 + organization: *729 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152822,7 +153177,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *730 sender: *4 required: - action @@ -152904,10 +153259,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *759 - organization: *726 + enterprise: *727 + installation: *728 + marketplace_purchase: *762 + organization: *729 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152993,7 +153348,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *730 sender: *4 required: - action @@ -153074,8 +153429,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 marketplace_purchase: title: Marketplace Purchase type: object @@ -153161,9 +153516,9 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: *760 - repository: *727 + organization: *729 + previous_marketplace_purchase: *763 + repository: *730 sender: *4 required: - action @@ -153243,12 +153598,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *759 - organization: *726 - previous_marketplace_purchase: *760 - repository: *727 + enterprise: *727 + installation: *728 + marketplace_purchase: *762 + organization: *729 + previous_marketplace_purchase: *763 + repository: *730 sender: *4 required: - action @@ -153350,11 +153705,11 @@ webhooks: type: string required: - to - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 sender: *4 required: - action @@ -153456,11 +153811,11 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 sender: *4 required: - action @@ -153539,11 +153894,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 sender: *4 required: - action @@ -153621,11 +153976,11 @@ webhooks: type: string enum: - added - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153703,7 +154058,7 @@ webhooks: required: - login - id - team: &761 + team: &764 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153896,11 +154251,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153979,7 +154334,7 @@ webhooks: required: - login - id - team: *761 + team: *764 required: - action - scope @@ -154061,8 +154416,8 @@ webhooks: type: string enum: - checks_requested - installation: *725 - merge_group: &762 + installation: *728 + merge_group: &765 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154081,15 +154436,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *435 + head_commit: *438 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154175,10 +154530,10 @@ webhooks: - merged - invalidated - dequeued - installation: *725 - merge_group: *762 - organization: *726 - repository: *727 + installation: *728 + merge_group: *765 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154251,7 +154606,7 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *727 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154359,12 +154714,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *725 - organization: *726 + installation: *728 + organization: *729 repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -154444,11 +154799,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154527,9 +154882,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - milestone: &763 + enterprise: *727 + installation: *728 + milestone: &766 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154671,8 +155026,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154751,11 +155106,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154865,11 +155220,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154949,11 +155304,11 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - milestone: *763 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *766 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155032,11 +155387,11 @@ webhooks: type: string enum: - blocked - blocked_user: *751 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *754 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155115,11 +155470,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *751 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *754 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155198,9 +155553,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - membership: &764 + enterprise: *727 + installation: *728 + membership: &767 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155294,8 +155649,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155373,11 +155728,11 @@ webhooks: type: string enum: - member_added - enterprise: *724 - installation: *725 - membership: *764 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + membership: *767 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155456,8 +155811,8 @@ webhooks: type: string enum: - member_invited - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -155579,10 +155934,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 - user: *751 + user: *754 required: - action - invitation @@ -155660,11 +156015,11 @@ webhooks: type: string enum: - member_removed - enterprise: *724 - installation: *725 - membership: *764 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + membership: *767 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155751,11 +156106,11 @@ webhooks: properties: from: type: string - enterprise: *724 - installation: *725 - membership: *764 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + membership: *767 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155831,9 +156186,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 package: description: Information about the package. type: object @@ -156356,7 +156711,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &765 + items: &768 title: Ruby Gems metadata type: object properties: @@ -156453,7 +156808,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -156529,9 +156884,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 package: description: Information about the package. type: object @@ -156893,7 +157248,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *765 + items: *768 source_url: type: string format: uri @@ -156964,7 +157319,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -157145,12 +157500,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *724 + enterprise: *727 id: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - id @@ -157230,7 +157585,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &766 + personal_access_token_request: &769 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157380,10 +157735,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *724 - organization: *726 + enterprise: *727 + organization: *729 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157462,11 +157817,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *766 - enterprise: *724 - organization: *726 + personal_access_token_request: *769 + enterprise: *727 + organization: *729 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157544,11 +157899,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *766 - enterprise: *724 - organization: *726 + personal_access_token_request: *769 + enterprise: *727 + organization: *729 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157625,11 +157980,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *766 - organization: *726 - enterprise: *724 + personal_access_token_request: *769 + organization: *729 + enterprise: *727 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157733,7 +158088,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *767 + last_response: *770 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157765,8 +158120,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 zen: description: Random string of GitHub zen. @@ -158011,10 +158366,10 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: &768 + enterprise: *727 + installation: *728 + organization: *729 + project_card: &771 title: Project Card type: object properties: @@ -158137,7 +158492,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *730 sender: *4 required: - action @@ -158218,11 +158573,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_card: *768 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_card: *771 + repository: *730 sender: *4 required: - action @@ -158302,9 +158657,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 project_card: title: Project Card type: object @@ -158434,7 +158789,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -158528,11 +158883,11 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: *768 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_card: *771 + repository: *730 sender: *4 required: - action @@ -158626,9 +158981,9 @@ webhooks: - from required: - column_id - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 project_card: allOf: - title: Project Card @@ -158825,7 +159180,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *730 sender: *4 required: - action @@ -158905,10 +159260,10 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - organization: *726 - project: &770 + enterprise: *727 + installation: *728 + organization: *729 + project: &773 title: Project type: object properties: @@ -159035,7 +159390,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *730 sender: *4 required: - action @@ -159115,10 +159470,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_column: &769 + enterprise: *727 + installation: *728 + organization: *729 + project_column: &772 title: Project Column type: object properties: @@ -159158,7 +159513,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *730 sender: *4 required: - action @@ -159237,14 +159592,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project_column: *769 + enterprise: *727 + installation: *728 + organization: *729 + project_column: *772 repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -159333,11 +159688,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project_column: *769 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_column: *772 + repository: *730 sender: *4 required: - action @@ -159417,11 +159772,11 @@ webhooks: type: string enum: - moved - enterprise: *724 - installation: *725 - organization: *726 - project_column: *769 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_column: *772 + repository: *730 sender: *4 required: - action @@ -159501,11 +159856,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project: *770 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 + repository: *730 sender: *4 required: - action @@ -159585,14 +159940,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project: *770 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -159693,11 +160048,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project: *770 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 + repository: *730 sender: *4 required: - action @@ -159776,11 +160131,11 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - organization: *726 - project: *770 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 + repository: *730 sender: *4 required: - action @@ -159861,9 +160216,9 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 - projects_v2: &771 + installation: *728 + organization: *729 + projects_v2: &774 title: Projects v2 Project description: A projects v2 project type: object @@ -160011,9 +160366,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -160094,9 +160449,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -160217,9 +160572,9 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -160302,7 +160657,7 @@ webhooks: type: string enum: - archived - changes: &775 + changes: &778 type: object properties: archived_at: @@ -160318,9 +160673,9 @@ webhooks: - string - 'null' format: date-time - installation: *725 - organization: *726 - projects_v2_item: &772 + installation: *728 + organization: *729 + projects_v2_item: &775 title: Projects v2 Item description: An item belonging to a project type: object @@ -160459,9 +160814,9 @@ webhooks: - 'null' to: type: string - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160543,9 +160898,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160626,9 +160981,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160733,7 +161088,7 @@ webhooks: oneOf: - type: string - type: integer - - &773 + - &776 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160753,7 +161108,7 @@ webhooks: required: - id - name - - &774 + - &777 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160782,8 +161137,8 @@ webhooks: oneOf: - type: string - type: integer - - *773 - - *774 + - *776 + - *777 type: - 'null' - string @@ -160806,9 +161161,9 @@ webhooks: - 'null' required: - body - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160905,9 +161260,9 @@ webhooks: type: - string - 'null' - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160990,10 +161345,10 @@ webhooks: type: string enum: - restored - changes: *775 - installation: *725 - organization: *726 - projects_v2_item: *772 + changes: *778 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -161075,9 +161430,9 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -161158,9 +161513,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_status_update: &776 + installation: *728 + organization: *729 + projects_v2_status_update: &779 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -161295,9 +161650,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_status_update: *776 + installation: *728 + organization: *729 + projects_v2_status_update: *779 sender: *4 required: - action @@ -161443,9 +161798,9 @@ webhooks: - string - 'null' format: date - installation: *725 - organization: *726 - projects_v2_status_update: *776 + installation: *728 + organization: *729 + projects_v2_status_update: *779 sender: *4 required: - action @@ -161516,10 +161871,10 @@ webhooks: title: public event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - repository @@ -161596,13 +161951,13 @@ webhooks: type: string enum: - assigned - assignee: *751 - enterprise: *724 - installation: *725 - number: &777 + assignee: *754 + enterprise: *727 + installation: *728 + number: &780 description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -163951,7 +164306,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -164033,11 +164388,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -166379,7 +166734,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *730 sender: *4 required: - action @@ -166461,11 +166816,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -168807,7 +169162,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *730 sender: *4 required: - action @@ -168889,13 +169244,13 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: &778 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: &781 allOf: - - *583 + - *586 - type: object properties: allow_auto_merge: @@ -168957,7 +169312,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *730 sender: *4 required: - action @@ -169038,12 +169393,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -169123,11 +169478,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 - milestone: *481 - number: *777 - organization: *726 - pull_request: &779 + enterprise: *727 + milestone: *484 + number: *780 + organization: *729 + pull_request: &782 title: Pull Request type: object properties: @@ -171454,7 +171809,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -171533,11 +171888,11 @@ webhooks: type: string enum: - dequeued - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -173883,7 +174238,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *730 sender: *4 required: - action @@ -174007,12 +174362,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -174092,11 +174447,11 @@ webhooks: type: string enum: - enqueued - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -176427,7 +176782,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -176507,11 +176862,11 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 - label: *750 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + label: *753 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -178859,7 +179214,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -178940,10 +179295,10 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -181289,7 +181644,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -181369,12 +181724,12 @@ webhooks: type: string enum: - milestoned - enterprise: *724 - milestone: *481 - number: *777 - organization: *726 - pull_request: *779 - repository: *727 + enterprise: *727 + milestone: *484 + number: *780 + organization: *729 + pull_request: *782 + repository: *730 sender: *4 required: - action @@ -181453,12 +181808,12 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -181539,12 +181894,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -181624,12 +181979,12 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -182004,9 +182359,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: type: object properties: @@ -184236,7 +184591,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *730 sender: *4 required: - action @@ -184316,7 +184671,7 @@ webhooks: type: string enum: - deleted - comment: &781 + comment: &784 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. @@ -184609,9 +184964,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: type: object properties: @@ -186829,7 +187184,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *730 sender: *4 required: - action @@ -186909,11 +187264,11 @@ webhooks: type: string enum: - edited - changes: *780 - comment: *781 - enterprise: *724 - installation: *725 - organization: *726 + changes: *783 + comment: *784 + enterprise: *727 + installation: *728 + organization: *729 pull_request: type: object properties: @@ -189134,7 +189489,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *730 sender: *4 required: - action @@ -189215,9 +189570,9 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -191450,7 +191805,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *730 review: description: The review that was affected. type: object @@ -191696,9 +192051,9 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -193812,8 +194167,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: &782 + repository: *730 + review: &785 description: The review that was affected. type: object properties: @@ -194046,12 +194401,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -196398,7 +196753,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_reviewer: title: User type: @@ -196484,12 +196839,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -198843,7 +199198,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199038,12 +199393,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -201392,7 +201747,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_reviewer: title: User type: @@ -201479,12 +201834,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -203824,7 +204179,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204008,9 +204363,9 @@ webhooks: type: string enum: - submitted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -206246,8 +206601,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *782 + repository: *730 + review: *785 sender: *4 required: - action @@ -206327,9 +206682,9 @@ webhooks: type: string enum: - resolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -208460,7 +208815,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *730 sender: *4 thread: type: object @@ -208852,9 +209207,9 @@ webhooks: type: string enum: - unresolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -210968,7 +211323,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *730 sender: *4 thread: type: object @@ -211362,10 +211717,10 @@ webhooks: type: string before: type: string - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -213700,7 +214055,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -213782,11 +214137,11 @@ webhooks: type: string enum: - unassigned - assignee: *783 - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + assignee: *786 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -216136,7 +216491,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -216215,11 +216570,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - label: *750 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + label: *753 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -218558,7 +218913,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -218639,10 +218994,10 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -220971,7 +221326,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -221174,7 +221529,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *724 + enterprise: *727 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -221269,8 +221624,8 @@ webhooks: - url - author - committer - installation: *725 - organization: *726 + installation: *728 + organization: *729 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -221858,9 +222213,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 registry_package: type: object properties: @@ -222337,7 +222692,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *765 + items: *768 summary: type: string tag_name: @@ -222393,7 +222748,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -222471,9 +222826,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 registry_package: type: object properties: @@ -222785,7 +223140,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *765 + items: *768 summary: type: string tag_name: @@ -222835,7 +223190,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -222912,10 +223267,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - release: &784 + enterprise: *727 + installation: *728 + organization: *729 + release: &787 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -223231,7 +223586,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *727 + repository: *730 sender: *4 required: - action @@ -223308,11 +223663,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - release: *784 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *787 + repository: *730 sender: *4 required: - action @@ -223429,11 +223784,11 @@ webhooks: type: boolean required: - to - enterprise: *724 - installation: *725 - organization: *726 - release: *784 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *787 + repository: *730 sender: *4 required: - action @@ -223511,9 +223866,9 @@ webhooks: type: string enum: - prereleased - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -223834,7 +224189,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *730 sender: *4 required: - action @@ -223910,10 +224265,10 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - release: &785 + enterprise: *727 + installation: *728 + organization: *729 + release: &788 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -224231,7 +224586,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *730 sender: *4 required: - action @@ -224307,11 +224662,11 @@ webhooks: type: string enum: - released - enterprise: *724 - installation: *725 - organization: *726 - release: *784 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *787 + repository: *730 sender: *4 required: - action @@ -224387,11 +224742,11 @@ webhooks: type: string enum: - unpublished - enterprise: *724 - installation: *725 - organization: *726 - release: *785 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *788 + repository: *730 sender: *4 required: - action @@ -224467,11 +224822,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *636 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + repository_advisory: *639 sender: *4 required: - action @@ -224547,11 +224902,11 @@ webhooks: type: string enum: - reported - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *636 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + repository_advisory: *639 sender: *4 required: - action @@ -224627,10 +224982,10 @@ webhooks: type: string enum: - archived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224707,10 +225062,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224788,10 +225143,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224876,10 +225231,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224994,10 +225349,10 @@ webhooks: - 'null' items: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225069,10 +225424,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 status: type: string @@ -225153,10 +225508,10 @@ webhooks: type: string enum: - privatized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225233,10 +225588,10 @@ webhooks: type: string enum: - publicized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225330,10 +225685,10 @@ webhooks: - name required: - repository - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225413,10 +225768,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 repository_ruleset: *124 sender: *4 required: @@ -225495,10 +225850,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 repository_ruleset: *124 sender: *4 required: @@ -225577,10 +225932,10 @@ webhooks: type: string enum: - edited - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 repository_ruleset: *124 changes: type: object @@ -225888,10 +226243,10 @@ webhooks: - from required: - owner - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225969,10 +226324,10 @@ webhooks: type: string enum: - unarchived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226050,7 +226405,7 @@ webhooks: type: string enum: - create - alert: &786 + alert: &789 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -226174,10 +226529,10 @@ webhooks: type: string enum: - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226387,10 +226742,10 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226468,11 +226823,11 @@ webhooks: type: string enum: - reopen - alert: *786 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *789 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226674,10 +227029,10 @@ webhooks: enum: - fixed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226755,7 +227110,7 @@ webhooks: type: string enum: - created - alert: &787 + alert: &790 type: object properties: number: *96 @@ -226865,10 +227220,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226949,11 +227304,11 @@ webhooks: type: string enum: - created - alert: *787 - installation: *725 - location: *788 - organization: *726 - repository: *727 + alert: *790 + installation: *728 + location: *791 + organization: *729 + repository: *730 sender: *4 required: - location @@ -227191,11 +227546,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227273,11 +227628,11 @@ webhooks: type: string enum: - reopened - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227355,11 +227710,11 @@ webhooks: type: string enum: - resolved - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227437,11 +227792,11 @@ webhooks: type: string enum: - validated - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227571,10 +227926,10 @@ webhooks: - organization - enterprise - - repository: *727 - enterprise: *724 - installation: *725 - organization: *726 + repository: *730 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -227652,11 +228007,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: &789 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + security_advisory: &792 description: The details of the security advisory, including summary, description, and severity. type: object @@ -227842,11 +228197,11 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: *789 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + security_advisory: *792 sender: *4 required: - action @@ -227919,10 +228274,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -228108,11 +228463,11 @@ webhooks: from: type: object properties: - security_and_analysis: *311 - enterprise: *724 - installation: *725 - organization: *726 - repository: *372 + security_and_analysis: *314 + enterprise: *727 + installation: *728 + organization: *729 + repository: *375 sender: *4 required: - changes @@ -228190,12 +228545,12 @@ webhooks: type: string enum: - cancelled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: &790 + sponsorship: &793 type: object properties: created_at: @@ -228500,12 +228855,12 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -228593,12 +228948,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -228675,17 +229030,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &791 + effective_date: &794 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: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -228759,7 +229114,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &792 + changes: &795 type: object properties: tier: @@ -228803,13 +229158,13 @@ webhooks: - from required: - tier - effective_date: *791 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + effective_date: *794 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -228886,13 +229241,13 @@ webhooks: type: string enum: - tier_changed - changes: *792 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + changes: *795 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -228966,10 +229321,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229053,10 +229408,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229490,15 +229845,15 @@ webhooks: type: - string - 'null' - enterprise: *724 + enterprise: *727 id: description: The unique identifier of the status. type: integer - installation: *725 + installation: *728 name: type: string - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 sha: description: The Commit SHA. @@ -229614,9 +229969,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229706,9 +230061,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229798,9 +230153,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229890,9 +230245,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229969,12 +230324,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - team: &793 + team: &796 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -230167,9 +230522,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -230639,7 +230994,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -230715,9 +231070,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -231187,7 +231542,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -231264,9 +231619,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -231736,7 +232091,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -231880,9 +232235,9 @@ webhooks: - from required: - permissions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -232352,7 +232707,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - changes @@ -232430,9 +232785,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -232902,7 +233257,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -232978,10 +233333,10 @@ webhooks: type: string enum: - started - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -233054,17 +233409,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *724 + enterprise: *727 inputs: type: - object - 'null' additionalProperties: true - installation: *725 - organization: *726 + installation: *728 + organization: *729 ref: type: string - repository: *727 + repository: *730 sender: *4 workflow: type: string @@ -233146,10 +233501,10 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: allOf: @@ -233405,7 +233760,7 @@ webhooks: type: string required: - conclusion - deployment: *501 + deployment: *504 required: - action - repository @@ -233484,10 +233839,10 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: allOf: @@ -233769,7 +234124,7 @@ webhooks: required: - status - steps - deployment: *501 + deployment: *504 required: - action - repository @@ -233848,10 +234203,10 @@ webhooks: type: string enum: - queued - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: type: object @@ -233997,7 +234352,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *501 + deployment: *504 required: - action - repository @@ -234076,10 +234431,10 @@ webhooks: type: string enum: - waiting - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: type: object @@ -234226,7 +234581,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *501 + deployment: *504 required: - action - repository @@ -234306,12 +234661,12 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Workflow Run type: object @@ -235330,12 +235685,12 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Workflow Run type: object @@ -236339,12 +236694,12 @@ webhooks: type: string enum: - requested - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.json b/descriptions-next/ghec/dereferenced/ghec.deref.json index 0c509214ac..d37f96f85e 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.json +++ b/descriptions-next/ghec/dereferenced/ghec.deref.json @@ -5501,7 +5501,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -6586,7 +6586,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7450,7 +7450,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -7879,7 +7879,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -10154,7 +10154,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -11277,7 +11277,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12264,7 +12264,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12954,7 +12954,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -40456,7 +40456,7 @@ }, "patch": { "summary": "Create or update custom properties for an enterprise", - "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", "tags": [ "enterprise-admin" ], @@ -41373,6 +41373,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -54838,6 +54853,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -72930,6 +73012,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -79646,6 +79795,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -127587,6 +127803,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -135018,7 +135301,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -136118,7 +136401,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -138157,25 +138440,1001 @@ } }, "x-github": { - "triggersNotification": true, + "triggersNotification": true, + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/invitations/{invitation_id}/teams": { + "get": { + "summary": "List organization invitation teams", + "description": "List all teams associated with an invitation. In order to see invitations\nin an organization, the authenticated user must be an organization owner.\n\nThis endpoint is not available for [Enterprise Managed User (EMU) organizations](https://docs.github.com/enterprise-cloud@latest//admin/identity-and-access-management/using-enterprise-managed-users-for-iam/about-enterprise-managed-users).", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-invitation-teams", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "invitation_id", + "description": "The unique identifier of the invitation.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, + { + "name": "per_page", + "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 30 + } + }, + { + "name": "page", + "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", + "in": "query", + "schema": { + "type": "integer", + "default": 1 + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Team", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "type": "integer" + }, + "node_id": { + "type": "string" + }, + "name": { + "type": "string" + }, + "slug": { + "type": "string" + }, + "description": { + "type": [ + "string", + "null" + ] + }, + "privacy": { + "type": "string" + }, + "notification_setting": { + "type": "string" + }, + "permission": { + "type": "string" + }, + "permissions": { + "type": "object", + "properties": { + "pull": { + "type": "boolean" + }, + "triage": { + "type": "boolean" + }, + "push": { + "type": "boolean" + }, + "maintain": { + "type": "boolean" + }, + "admin": { + "type": "boolean" + } + }, + "required": [ + "pull", + "triage", + "push", + "maintain", + "admin" + ] + }, + "url": { + "type": "string", + "format": "uri" + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "members_url": { + "type": "string" + }, + "repositories_url": { + "type": "string", + "format": "uri" + }, + "parent": { + "anyOf": [ + { + "type": "null" + }, + { + "title": "Team Simple", + "description": "Groups of organization members that gives permissions on specified repositories.", + "type": "object", + "properties": { + "id": { + "description": "Unique identifier of the team", + "type": "integer", + "examples": [ + 1 + ] + }, + "node_id": { + "type": "string", + "examples": [ + "MDQ6VGVhbTE=" + ] + }, + "url": { + "description": "URL for the team", + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1" + ] + }, + "members_url": { + "type": "string", + "examples": [ + "https://api.github.com/organizations/1/team/1/members{/member}" + ] + }, + "name": { + "description": "Name of the team", + "type": "string", + "examples": [ + "Justice League" + ] + }, + "description": { + "description": "Description of the team", + "type": [ + "string", + "null" + ], + "examples": [ + "A great team." + ] + }, + "permission": { + "description": "Permission that the team will have for its repositories", + "type": "string", + "examples": [ + "admin" + ] + }, + "privacy": { + "description": "The level of privacy this team should have", + "type": "string", + "examples": [ + "closed" + ] + }, + "notification_setting": { + "description": "The notification setting the team has set", + "type": "string", + "examples": [ + "notifications_enabled" + ] + }, + "html_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://github.com/orgs/rails/teams/core" + ] + }, + "repositories_url": { + "type": "string", + "format": "uri", + "examples": [ + "https://api.github.com/organizations/1/team/1/repos" + ] + }, + "slug": { + "type": "string", + "examples": [ + "justice-league" + ] + }, + "ldap_dn": { + "description": "Distinguished Name (DN) that team maps to within LDAP environment", + "type": "string", + "examples": [ + "uid=example,ou=users,dc=github,dc=com" + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug" + ] + } + ] + } + }, + "required": [ + "id", + "node_id", + "url", + "members_url", + "name", + "description", + "permission", + "html_url", + "repositories_url", + "slug", + "parent" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 1, + "node_id": "MDQ6VGVhbTE=", + "url": "https://api.github.com/teams/1", + "html_url": "https://github.com/orgs/github/teams/justice-league", + "name": "Justice League", + "slug": "justice-league", + "description": "A great team.", + "privacy": "closed", + "notification_setting": "notifications_enabled", + "permission": "admin", + "members_url": "https://api.github.com/teams/1/members{/member}", + "repositories_url": "https://api.github.com/teams/1/repos", + "parent": null + } + ] + } + } + } + }, + "headers": { + "Link": { + "example": "; rel=\"next\", ; rel=\"last\"", + "schema": { + "type": "string" + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "members" + } + } + }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + } + }, + "examples": { + "default": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "name": "org", + "description": "The organization name. The name is not case sensitive.", + "in": "path", + "required": true, + "schema": { + "type": "string" + } + }, + { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, + "examples": { + "default": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + } + } + } + } + }, + "404": { + "description": "Resource not found", + "content": { + "application/json": { + "schema": { + "title": "Basic Error", + "description": "Basic Error", + "type": "object", + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "url": { + "type": "string" + }, + "status": { + "type": "string" + } + } + } + } + } + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", + "content": { + "application/json": { + "schema": { + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" + }, + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" + } + } + } + } + } + } + } + }, + "x-github": { "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } - } - }, - "/orgs/{org}/invitations/{invitation_id}/teams": { - "get": { - "summary": "List organization invitation teams", - "description": "List all teams associated with an invitation. In order to see invitations\nin an organization, the authenticated user must be an organization owner.\n\nThis endpoint is not available for [Enterprise Managed User (EMU) organizations](https://docs.github.com/enterprise-cloud@latest//admin/identity-and-access-management/using-enterprise-managed-users-for-iam/about-enterprise-managed-users).", + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", "tags": [ "orgs" ], - "operationId": "orgs/list-invitation-teams", + "operationId": "orgs/delete-issue-type", "externalDocs": { "description": "API method documentation", - "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/members#list-organization-invitation-teams" + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization" }, "parameters": [ { @@ -138188,281 +139447,47 @@ } }, { - "name": "invitation_id", - "description": "The unique identifier of the invitation.", + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", "in": "path", "required": true, "schema": { "type": "integer" } - }, - { - "name": "per_page", - "description": "The number of results per page (max 100). For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 30 - } - }, - { - "name": "page", - "description": "The page number of the results to fetch. For more information, see \"[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api).\"", - "in": "query", - "schema": { - "type": "integer", - "default": 1 - } } ], "responses": { - "200": { - "description": "Response", + "204": { + "description": "Response" + }, + "422": { + "description": "Validation failed, or the endpoint has been spammed.", "content": { "application/json": { "schema": { - "type": "array", - "items": { - "title": "Team", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "type": "integer" - }, - "node_id": { - "type": "string" - }, - "name": { - "type": "string" - }, - "slug": { - "type": "string" - }, - "description": { - "type": [ - "string", - "null" - ] - }, - "privacy": { - "type": "string" - }, - "notification_setting": { - "type": "string" - }, - "permission": { - "type": "string" - }, - "permissions": { - "type": "object", - "properties": { - "pull": { - "type": "boolean" - }, - "triage": { - "type": "boolean" - }, - "push": { - "type": "boolean" - }, - "maintain": { - "type": "boolean" - }, - "admin": { - "type": "boolean" - } - }, - "required": [ - "pull", - "triage", - "push", - "maintain", - "admin" - ] - }, - "url": { - "type": "string", - "format": "uri" - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "members_url": { - "type": "string" - }, - "repositories_url": { - "type": "string", - "format": "uri" - }, - "parent": { - "anyOf": [ - { - "type": "null" - }, - { - "title": "Team Simple", - "description": "Groups of organization members that gives permissions on specified repositories.", - "type": "object", - "properties": { - "id": { - "description": "Unique identifier of the team", - "type": "integer", - "examples": [ - 1 - ] - }, - "node_id": { - "type": "string", - "examples": [ - "MDQ6VGVhbTE=" - ] - }, - "url": { - "description": "URL for the team", - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1" - ] - }, - "members_url": { - "type": "string", - "examples": [ - "https://api.github.com/organizations/1/team/1/members{/member}" - ] - }, - "name": { - "description": "Name of the team", - "type": "string", - "examples": [ - "Justice League" - ] - }, - "description": { - "description": "Description of the team", - "type": [ - "string", - "null" - ], - "examples": [ - "A great team." - ] - }, - "permission": { - "description": "Permission that the team will have for its repositories", - "type": "string", - "examples": [ - "admin" - ] - }, - "privacy": { - "description": "The level of privacy this team should have", - "type": "string", - "examples": [ - "closed" - ] - }, - "notification_setting": { - "description": "The notification setting the team has set", - "type": "string", - "examples": [ - "notifications_enabled" - ] - }, - "html_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://github.com/orgs/rails/teams/core" - ] - }, - "repositories_url": { - "type": "string", - "format": "uri", - "examples": [ - "https://api.github.com/organizations/1/team/1/repos" - ] - }, - "slug": { - "type": "string", - "examples": [ - "justice-league" - ] - }, - "ldap_dn": { - "description": "Distinguished Name (DN) that team maps to within LDAP environment", - "type": "string", - "examples": [ - "uid=example,ou=users,dc=github,dc=com" - ] - } - }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug" - ] - } - ] - } + "title": "Validation Error Simple", + "description": "Validation Error Simple", + "type": "object", + "required": [ + "message", + "documentation_url" + ], + "properties": { + "message": { + "type": "string" }, - "required": [ - "id", - "node_id", - "url", - "members_url", - "name", - "description", - "permission", - "html_url", - "repositories_url", - "slug", - "parent" - ] - } - }, - "examples": { - "default": { - "value": [ - { - "id": 1, - "node_id": "MDQ6VGVhbTE=", - "url": "https://api.github.com/teams/1", - "html_url": "https://github.com/orgs/github/teams/justice-league", - "name": "Justice League", - "slug": "justice-league", - "description": "A great team.", - "privacy": "closed", - "notification_setting": "notifications_enabled", - "permission": "admin", - "members_url": "https://api.github.com/teams/1/members{/member}", - "repositories_url": "https://api.github.com/teams/1/repos", - "parent": null + "documentation_url": { + "type": "string" + }, + "errors": { + "type": "array", + "items": { + "type": "string" } - ] + } } } } - }, - "headers": { - "Link": { - "example": "; rel=\"next\", ; rel=\"last\"", - "schema": { - "type": "string" - } - } } }, "404": { @@ -138496,7 +139521,7 @@ "githubCloudOnly": false, "enabledForGitHubApps": true, "category": "orgs", - "subcategory": "members" + "subcategory": "issue-types" } } }, @@ -138564,6 +139589,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -139870,6 +140904,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -168414,7 +169515,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -169103,6 +170204,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -352192,6 +353308,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -369874,7 +371057,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -373954,6 +375137,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -375287,6 +376479,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -377192,6 +378451,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -378462,6 +379731,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -385886,6 +387222,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -390648,6 +392051,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -395207,6 +396677,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -397096,6 +398633,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -398364,6 +399911,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -401532,6 +403146,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -404497,6 +406178,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -424175,6 +425923,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -427237,6 +429052,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -430267,6 +432149,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -433402,6 +435351,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -447237,6 +449253,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -576570,6 +578653,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "performed_via_github_app": { "anyOf": [ { @@ -622379,7 +624529,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -626265,6 +628415,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -660644,6 +662861,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -664409,6 +666693,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -668176,6 +670527,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -672694,7 +675112,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -679289,6 +681707,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -683056,6 +685541,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -893319,7 +895871,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -896379,7 +898931,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -899344,7 +901896,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -902309,7 +904861,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -905408,7 +907960,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -908514,7 +911066,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -913615,7 +916167,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -918017,6 +920569,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -922253,6 +924872,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -926513,6 +929199,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -930210,6 +932963,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -933460,6 +936280,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -936915,6 +939802,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -940177,6 +943131,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -943616,6 +946637,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -946902,6 +949990,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -950216,6 +953371,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -953458,6 +956680,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -958770,6 +962059,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -962008,6 +965364,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -965382,6 +968805,73 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -968377,6 +971867,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -970386,6 +973943,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -973732,6 +977356,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -976977,6 +980668,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -980289,6 +984047,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -983504,6 +987329,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -1394197,6 +1398089,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1397857,6 +1401816,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1402471,6 +1406497,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1406131,6 +1410224,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1410745,6 +1414905,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1414405,6 +1418632,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1419019,6 +1423313,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -1422679,6 +1427040,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", diff --git a/descriptions-next/ghec/dereferenced/ghec.deref.yaml b/descriptions-next/ghec/dereferenced/ghec.deref.yaml index 289687c26b..598e45cf23 100644 --- a/descriptions-next/ghec/dereferenced/ghec.deref.yaml +++ b/descriptions-next/ghec/dereferenced/ghec.deref.yaml @@ -905,7 +905,7 @@ paths: - subscriptions_url - type - url - type: &327 + type: &330 type: string description: The type of credit the user is receiving. enum: @@ -1071,7 +1071,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: - - &638 + - &641 name: ghsa_id description: The GHSA (GitHub Security Advisory) identifier of the advisory. in: path @@ -1811,7 +1811,7 @@ paths: application/json: schema: *3 application/scim+json: - schema: &648 + schema: &651 title: Scim Error description: Scim Error type: object @@ -2372,7 +2372,7 @@ paths: - write dependabot_secrets: type: string - description: The leve of permission to grant the access + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -11648,7 +11648,7 @@ paths: description: The GitHub URL of the alert resource. format: uri readOnly: true - instances_url: &441 + instances_url: &444 type: string description: The REST API URL for fetching the list of instances for an alert. @@ -11684,7 +11684,7 @@ paths: format: `YYYY-MM-DDTHH:MM:SSZ`.' format: date-time readOnly: true - dismissed_reason: &442 + dismissed_reason: &445 type: - string - 'null' @@ -11695,14 +11695,14 @@ paths: - won't fix - used in tests - - dismissed_comment: &443 + dismissed_comment: &446 type: - string - 'null' description: The dismissal comment associated with the dismissal of the alert. maxLength: 280 - rule: &444 + rule: &447 type: object properties: id: @@ -11763,7 +11763,7 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: &445 + tool: &448 type: object properties: name: *85 @@ -11774,15 +11774,15 @@ paths: description: The version of the tool used to generate the code scanning analysis. guid: *86 - most_recent_instance: &446 + most_recent_instance: &449 type: object properties: - ref: &439 + ref: &442 type: string description: |- The Git reference, formatted as `refs/pull//merge`, `refs/pull//head`, `refs/heads/` or simply ``. - analysis_key: &456 + analysis_key: &459 type: string description: Identifies the configuration under which the analysis was executed. For example, in GitHub Actions @@ -11793,7 +11793,7 @@ paths: the environment in which the analysis that generated this alert instance was performed, such as the language that was analyzed. - category: &457 + category: &460 type: string description: Identifies the configuration under which the analysis was executed. Used to distinguish between multiple @@ -14105,7 +14105,7 @@ paths: parent: anyOf: - type: 'null' - - &290 + - &293 title: Team Simple description: Groups of organization members that gives permissions on specified repositories. @@ -15281,7 +15281,7 @@ paths: - direct - transitive - - security_advisory: &493 + security_advisory: &496 type: object description: Details for the GitHub Security Advisory. readOnly: true @@ -15517,7 +15517,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: &494 + auto_dismissed_at: &497 type: - string - 'null' @@ -16015,7 +16015,7 @@ paths: - name - created_on examples: - default: &336 + default: &339 value: total_count: 2 network_configurations: @@ -16238,7 +16238,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: - *38 - - &337 + - &340 name: network_settings_id description: Unique identifier of the hosted compute network settings. in: path @@ -16250,7 +16250,7 @@ paths: description: Response content: application/json: - schema: &338 + schema: &341 title: Hosted compute network settings resource description: A hosted compute network settings resource. type: object @@ -16289,7 +16289,7 @@ paths: - subnet_id - region examples: - default: &339 + default: &342 value: id: 220F78DACB92BBFBC5E6F22DE1CCF52309D network_configuration_id: 934E208B3EE0BD60CF5F752C426BFB53562 @@ -16440,6 +16440,10 @@ paths: Creates new or updates existing custom properties defined for an enterprise in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be an administrator for the enterprise. tags: - enterprise-admin @@ -16612,7 +16616,7 @@ paths: required: true content: application/json: - schema: &309 + schema: &312 title: Custom Property Set Payload description: Custom property set payload type: object @@ -16657,6 +16661,17 @@ paths: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type examples: @@ -16980,7 +16995,7 @@ paths: type: object description: A repository rule. oneOf: - - &600 + - &603 title: creation description: Only allow users with bypass permission to create matching refs. @@ -16992,7 +17007,7 @@ paths: type: string enum: - creation - - &601 + - &604 title: update description: Only allow users with bypass permission to update matching refs. @@ -17013,7 +17028,7 @@ paths: repository required: - update_allows_fetch_and_merge - - &603 + - &606 title: deletion description: Only allow users with bypass permissions to delete matching refs. @@ -17025,7 +17040,7 @@ paths: type: string enum: - deletion - - &604 + - &607 title: required_linear_history description: Prevent merge commits from being pushed to matching refs. @@ -17037,7 +17052,7 @@ paths: type: string enum: - required_linear_history - - &605 + - &608 title: merge_queue description: Merges must be performed via a merge queue. type: object @@ -17113,7 +17128,7 @@ paths: - merge_method - min_entries_to_merge - min_entries_to_merge_wait_minutes - - &606 + - &609 title: required_deployments description: Choose which environments must be successfully deployed to before refs can be pushed into a ref that matches @@ -17137,7 +17152,7 @@ paths: type: string required: - required_deployment_environments - - &607 + - &610 title: required_signatures description: Commits pushed to matching refs must have verified signatures. @@ -17149,7 +17164,7 @@ paths: type: string enum: - required_signatures - - &608 + - &611 title: pull_request description: Require all commits be made to a non-target branch and submitted via a pull request before they can be merged. @@ -17200,7 +17215,7 @@ paths: - require_last_push_approval - required_approving_review_count - required_review_thread_resolution - - &609 + - &612 title: required_status_checks description: Choose which status checks must pass before the ref is updated. When enabled, commits must first be pushed @@ -17247,7 +17262,7 @@ paths: required: - required_status_checks - strict_required_status_checks_policy - - &610 + - &613 title: non_fast_forward description: Prevent users with push access from force pushing to refs. @@ -17259,7 +17274,7 @@ paths: type: string enum: - non_fast_forward - - &611 + - &614 title: commit_message_pattern description: Parameters to be used for the commit_message_pattern rule @@ -17295,7 +17310,7 @@ paths: required: - operator - pattern - - &612 + - &615 title: commit_author_email_pattern description: Parameters to be used for the commit_author_email_pattern rule @@ -17331,7 +17346,7 @@ paths: required: - operator - pattern - - &613 + - &616 title: committer_email_pattern description: Parameters to be used for the committer_email_pattern rule @@ -17367,7 +17382,7 @@ paths: required: - operator - pattern - - &614 + - &617 title: branch_name_pattern description: Parameters to be used for the branch_name_pattern rule @@ -17403,7 +17418,7 @@ paths: required: - operator - pattern - - &615 + - &618 title: tag_name_pattern description: Parameters to be used for the tag_name_pattern rule @@ -17529,7 +17544,7 @@ paths: maximum: 100 required: - max_file_size - - &616 + - &619 title: workflows description: Require all changes made to a targeted branch to pass the specified workflows before they can be merged. @@ -17578,7 +17593,7 @@ paths: - repository_id required: - workflows - - &617 + - &620 title: code_scanning description: Choose which tools must provide code scanning results before the reference is updated. When configured, code scanning @@ -17735,7 +17750,7 @@ paths: conditions: anyOf: - *117 - - &314 + - &317 title: Organization ruleset conditions type: object description: |- @@ -18019,7 +18034,7 @@ paths: type: string format: date-time examples: - default: &316 + default: &319 value: - version_id: 3 actor: @@ -18072,7 +18087,7 @@ paths: description: Response content: application/json: - schema: &317 + schema: &320 allOf: - *127 - type: object @@ -18127,7 +18142,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-enterprise parameters: - *38 - - &318 + - &321 name: state in: query description: Set to `open` or `resolved` to only list secret scanning alerts @@ -18138,7 +18153,7 @@ paths: enum: - open - resolved - - &319 + - &322 name: secret_type in: query description: A comma-separated list of secret types to return. All default @@ -18148,7 +18163,7 @@ paths: required: false schema: type: string - - &320 + - &323 name: resolution in: query description: A comma-separated list of resolutions. Only secret scanning alerts @@ -18157,7 +18172,7 @@ paths: required: false schema: type: string - - &321 + - &324 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. @@ -18173,7 +18188,7 @@ paths: - *17 - *82 - *83 - - &322 + - &325 name: validity in: query description: A comma-separated list of validities that, when present, will @@ -18182,7 +18197,7 @@ paths: required: false schema: type: string - - &323 + - &326 name: is_publicly_leaked in: query description: A boolean value representing whether or not to filter alerts @@ -18191,7 +18206,7 @@ paths: schema: type: boolean default: false - - &324 + - &327 name: is_multi_repo in: query description: A boolean value representing whether or not to filter alerts @@ -18207,7 +18222,7 @@ paths: application/json: schema: type: array - items: &325 + items: &328 type: object properties: number: *96 @@ -18223,14 +18238,14 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: &630 + state: &633 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: &631 + resolution: &634 type: - string - 'null' @@ -18335,7 +18350,7 @@ paths: description: A boolean value representing whether or not alert is base64 encoded examples: - default: &326 + default: &329 value: - number: 2 created_at: '2020-11-06T18:48:51Z' @@ -18598,7 +18613,7 @@ paths: description: Response content: application/json: - schema: &328 + schema: &331 type: object properties: total_minutes_used: @@ -18668,7 +18683,7 @@ paths: - included_minutes - minutes_used_breakdown examples: - default: &329 + default: &332 value: total_minutes_used: 305 total_paid_minutes_used: 0 @@ -18706,7 +18721,7 @@ paths: description: Success content: application/json: - schema: &330 + schema: &333 type: object properties: total_advanced_security_committers: @@ -18769,7 +18784,7 @@ paths: required: - repositories examples: - default: &331 + default: &334 value: total_advanced_security_committers: 2 total_count: 2 @@ -19008,7 +19023,7 @@ paths: description: Response content: application/json: - schema: &332 + schema: &335 type: object properties: total_gigabytes_bandwidth_used: @@ -19026,7 +19041,7 @@ paths: - total_paid_gigabytes_bandwidth_used - included_gigabytes_bandwidth examples: - default: &333 + default: &336 value: total_gigabytes_bandwidth_used: 50 total_paid_gigabytes_bandwidth_used: 40 @@ -19058,7 +19073,7 @@ paths: description: Response content: application/json: - schema: &334 + schema: &337 type: object properties: days_left_in_billing_cycle: @@ -19076,7 +19091,7 @@ paths: - estimated_paid_storage_for_month - estimated_storage_for_month examples: - default: &335 + default: &338 value: days_left_in_billing_cycle: 20 estimated_paid_storage_for_month: 15 @@ -19331,7 +19346,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-an-enterprise-team parameters: - *38 - - &289 + - &292 name: team_slug description: The slug of the team name. in: path @@ -19705,7 +19720,7 @@ paths: milestone: anyOf: - type: 'null' - - &481 + - &484 title: Milestone description: A collection of related issues and pull requests. @@ -19877,6 +19892,59 @@ paths: timeline_url: type: string format: uri + type: &278 + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description repository: *61 performed_via_github_app: anyOf: @@ -19969,7 +20037,7 @@ paths: - author_association - created_at - updated_at - comment: &540 + comment: &543 title: Issue Comment description: Comments provide a way for people to collaborate on an issue. @@ -20544,7 +20612,7 @@ paths: url: type: string format: uri - user: &687 + user: &690 title: Public User description: Public User type: object @@ -22439,7 +22507,7 @@ paths: - closed - all default: open - - &278 + - &281 name: labels description: 'A list of comma separated label names. Example: `bug,ui,@high`' in: query @@ -22490,7 +22558,7 @@ paths: type: array items: *148 examples: - default: &279 + default: &282 value: - id: 1 node_id: MDU6SXNzdWUx @@ -23901,14 +23969,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: - - &359 + - &362 name: owner description: The account owner of the repository. The name is not case sensitive. in: path required: true schema: type: string - - &360 + - &363 name: repo description: The name of the repository without the `.git` extension. The name is not case sensitive. @@ -23979,7 +24047,7 @@ paths: '404': *6 '403': *27 '304': *35 - '301': &373 + '301': &376 description: Moved permanently content: application/json: @@ -24001,7 +24069,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#list-notifications-for-the-authenticated-user parameters: - - &569 + - &572 name: all description: If `true`, show notifications marked as read. in: query @@ -24009,7 +24077,7 @@ paths: schema: type: boolean default: false - - &570 + - &573 name: participating description: If `true`, only shows notifications in which the user is directly participating or mentioned. @@ -24019,7 +24087,7 @@ paths: type: boolean default: false - *138 - - &571 + - &574 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: @@ -24390,7 +24458,7 @@ paths: type: boolean examples: - false - security_and_analysis: &311 + security_and_analysis: &314 type: - object - 'null' @@ -24545,7 +24613,7 @@ paths: - url - subscription_url examples: - default: &572 + default: &575 value: - id: '1' repository: @@ -25098,7 +25166,7 @@ paths: type: array items: *56 examples: - default: &704 + default: &707 value: - login: github id: 1 @@ -26101,7 +26169,7 @@ paths: type: integer repository_cache_usages: type: array - items: &378 + items: &381 title: Actions Cache Usage by repository description: GitHub Actions Cache Usage by repository. type: object @@ -26774,7 +26842,7 @@ paths: type: array items: *61 examples: - default: &698 + default: &701 value: total_count: 1 repositories: @@ -27597,7 +27665,7 @@ paths: type: array items: *190 examples: - default: &690 + default: &693 value: total_count: 1 repositories: @@ -28640,7 +28708,7 @@ paths: description: Response content: application/json: - schema: &398 + schema: &401 title: ActionsPublicKey description: The public key used for setting Actions Secrets. type: object @@ -28675,7 +28743,7 @@ paths: - key_id - key examples: - default: &399 + default: &402 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -29088,7 +29156,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-organization-variables parameters: - *164 - - &383 + - &386 name: per_page description: The number of results per page (max 30). For more information, see "[Using pagination in the REST API](https://docs.github.com/enterprise-cloud@latest//rest/using-the-rest-api/using-pagination-in-the-rest-api)." @@ -29706,7 +29774,7 @@ paths: bundle_url: type: string examples: - default: &412 + default: &415 value: attestations: - bundle: @@ -29875,7 +29943,7 @@ paths: type: array items: *4 examples: - default: &280 + default: &283 value: - login: octocat id: 1 @@ -30053,7 +30121,7 @@ paths: application/json: schema: type: array - items: &429 + items: &432 title: Secret scanning bypass request description: A bypass request made by a user asking to be exempted from push protection in this repository. @@ -30184,7 +30252,7 @@ paths: examples: - https://github.com/octo-org/smile/exemptions/1 examples: - default: &430 + default: &433 value: - id: 21 number: 42 @@ -30297,7 +30365,7 @@ paths: be returned. in: query required: false - schema: &440 + schema: &443 type: string description: Severity of a code scanning alert. enum: @@ -31267,7 +31335,7 @@ paths: type: integer codespaces: type: array - items: &281 + items: &284 type: object title: Codespace description: A codespace. @@ -31302,7 +31370,7 @@ paths: machine: anyOf: - type: 'null' - - &469 + - &472 type: object title: Codespace machine description: A description of the machine powering a codespace. @@ -31589,7 +31657,7 @@ paths: - pulls_url - recent_folders examples: - default: &282 + default: &285 value: total_count: 3 codespaces: @@ -32254,7 +32322,7 @@ paths: - updated_at - visibility examples: - default: &470 + default: &473 value: total_count: 2 secrets: @@ -32292,7 +32360,7 @@ paths: description: Response content: application/json: - schema: &471 + schema: &474 title: CodespacesPublicKey description: The public key used for setting Codespaces secrets. type: object @@ -32327,7 +32395,7 @@ paths: - key_id - key examples: - default: &472 + default: &475 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -32359,7 +32427,7 @@ paths: application/json: schema: *231 examples: - default: &474 + default: &477 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -34128,7 +34196,7 @@ paths: description: Response content: application/json: - schema: &497 + schema: &500 title: DependabotPublicKey description: The public key used for setting Dependabot Secrets. type: object @@ -34147,7 +34215,7 @@ paths: - key_id - key examples: - default: &498 + default: &501 value: key_id: '012345678912345678' key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 @@ -34474,7 +34542,7 @@ paths: application/json: schema: type: array - items: &292 + items: &295 title: Package description: A software package type: object @@ -34545,7 +34613,7 @@ paths: - created_at - updated_at examples: - default: &293 + default: &296 value: - id: 197 name: hello_docker @@ -34729,7 +34797,7 @@ paths: description: Response content: application/json: - schema: &354 + schema: &357 title: ExternalGroup description: Information about an external group's usage and its members type: object @@ -34819,7 +34887,7 @@ paths: member_name: Octo Lisa member_email: octo_lisa@github.com examples: - default: &355 + default: &358 value: group_id: '123' group_name: Octocat admins @@ -34874,7 +34942,7 @@ paths: description: Response content: application/json: - schema: &352 + schema: &355 title: ExternalGroups description: A list of external groups available to be connected to a team @@ -34914,7 +34982,7 @@ paths: group_name: group-azuread-test2 updated_at: 2021-06-03 22:27:15:000 -700 examples: - default: &353 + default: &356 value: groups: - group_id: '123' @@ -35079,7 +35147,7 @@ paths: application/json: schema: type: array - items: &312 + items: &315 title: Repository Fine-Grained Permission description: A fine-grained permission that protects repository resources. @@ -35093,7 +35161,7 @@ paths: - name - description examples: - default: &313 + default: &316 value: - name: add_assignee description: Assign or remove a user @@ -36243,7 +36311,7 @@ paths: application/json: schema: *20 examples: - default: &536 + default: &539 value: id: 1 account: @@ -36471,7 +36539,7 @@ paths: required: true content: application/json: - schema: &537 + schema: &540 title: Interaction Restrictions description: Limit interactions to a specific type of user for a specified duration @@ -36765,7 +36833,7 @@ paths: type: array items: *277 examples: - default: &291 + default: &294 value: - id: 1 node_id: MDQ6VGVhbTE= @@ -36788,6 +36856,243 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - *164 + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: *278 + examples: + default: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - *164 + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *278 + examples: + default: &279 + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - *164 + - &280 + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer + requestBody: + required: true + content: + application/json: + schema: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues + in private repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: *278 + examples: + default: *279 + '404': *6 + '422': *7 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - *164 + - *280 + responses: + '204': + description: Response + '422': *7 + '404': *6 + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -36840,7 +37145,13 @@ paths: - closed - all default: open - - *278 + - *281 + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -36865,7 +37176,7 @@ paths: type: array items: *148 examples: - default: *279 + default: *282 headers: Link: *37 '404': *6 @@ -36923,7 +37234,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '422': *15 @@ -37019,9 +37330,9 @@ paths: type: integer codespaces: type: array - items: *281 + items: *284 examples: - default: *282 + default: *285 '304': *35 '500': *95 '401': *23 @@ -37048,7 +37359,7 @@ paths: parameters: - *164 - *212 - - &283 + - &286 name: codespace_name in: path required: true @@ -37083,15 +37394,15 @@ paths: parameters: - *164 - *212 - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: &468 + default: &471 value: id: 1 name: monalisa-octocat-hello-world-g4wpq6h95q @@ -37346,7 +37657,7 @@ paths: description: Response content: application/json: - schema: &284 + schema: &287 title: Org Membership description: Org Membership type: object @@ -37399,7 +37710,7 @@ paths: - organization - user examples: - response-if-user-has-an-active-admin-membership-with-organization: &285 + response-if-user-has-an-active-admin-membership-with-organization: &288 summary: Response if user has an active admin membership with organization value: url: https://api.github.com/orgs/octocat/memberships/defunkt @@ -37496,9 +37807,9 @@ paths: description: Response content: application/json: - schema: *284 + schema: *287 examples: - response-if-user-already-had-membership-with-organization: *285 + response-if-user-already-had-membership-with-organization: *288 '422': *15 '403': *27 x-github: @@ -37567,7 +37878,7 @@ paths: application/json: schema: type: array - items: &286 + items: &289 title: Migration description: A migration. type: object @@ -37905,7 +38216,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -38084,7 +38395,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#get-an-organization-migration-status parameters: - *164 - - &287 + - &290 name: migration_id description: The unique identifier of the migration. in: path @@ -38112,7 +38423,7 @@ paths: * `failed`, which means the migration failed. content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -38282,7 +38593,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#download-an-organization-migration-archive parameters: - *164 - - *287 + - *290 responses: '302': description: Response @@ -38304,7 +38615,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#delete-an-organization-migration-archive parameters: - *164 - - *287 + - *290 responses: '204': description: Response @@ -38328,8 +38639,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#unlock-an-organization-repository parameters: - *164 - - *287 - - &703 + - *290 + - &706 name: repo_name description: repo_name parameter in: path @@ -38357,7 +38668,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/orgs#list-repositories-in-an-organization-migration parameters: - *164 - - *287 + - *290 - *17 - *19 responses: @@ -38369,7 +38680,7 @@ paths: type: array items: *190 examples: - default: &298 + default: &301 value: - id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -38578,7 +38889,7 @@ paths: roles: type: array description: The list of organization roles available to the organization. - items: &288 + items: &291 title: Organization Role description: Organization roles type: object @@ -38787,7 +39098,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -38839,7 +39150,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-all-organization-roles-for-a-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -38865,7 +39176,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#assign-an-organization-role-to-a-team parameters: - *164 - - *289 + - *292 - *237 responses: '204': @@ -38896,7 +39207,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/organization-roles#remove-an-organization-role-from-a-team parameters: - *164 - - *289 + - *292 - *237 responses: '204': @@ -39017,7 +39328,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -39114,7 +39425,7 @@ paths: description: Response content: application/json: - schema: *288 + schema: *291 examples: default: value: @@ -39273,7 +39584,7 @@ paths: parent: anyOf: - type: 'null' - - *290 + - *293 required: - id - node_id @@ -39287,7 +39598,7 @@ paths: - slug - parent examples: - default: *291 + default: *294 headers: Link: *37 '404': @@ -39346,7 +39657,7 @@ paths: inherited_from: description: Team the user has gotten the role through type: array - items: *290 + items: *293 name: type: - string @@ -39463,7 +39774,7 @@ paths: - type - url examples: - default: *280 + default: *283 headers: Link: *37 '404': @@ -39511,7 +39822,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -39653,7 +39964,7 @@ paths: - nuget - container - *164 - - &705 + - &708 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -39689,12 +40000,12 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *293 + default: *296 '403': *27 '401': *23 - '400': &707 + '400': &710 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -39716,7 +40027,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-an-organization parameters: - - &294 + - &297 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 @@ -39734,7 +40045,7 @@ paths: - docker - nuget - container - - &295 + - &298 name: package_name description: The name of the package. in: path @@ -39747,7 +40058,7 @@ paths: description: Response content: application/json: - schema: *292 + schema: *295 examples: default: value: @@ -39799,8 +40110,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-an-organization parameters: - - *294 - - *295 + - *297 + - *298 - *164 responses: '204': @@ -39833,8 +40144,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-an-organization parameters: - - *294 - - *295 + - *297 + - *298 - *164 - name: token description: package token @@ -39867,8 +40178,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: - - *294 - - *295 + - *297 + - *298 - *164 - *19 - *17 @@ -39889,7 +40200,7 @@ paths: application/json: schema: type: array - items: &296 + items: &299 title: Package Version description: A version of a software package type: object @@ -40024,10 +40335,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: - - *294 - - *295 + - *297 + - *298 - *164 - - &297 + - &300 name: package_version_id description: Unique identifier of the package version. in: path @@ -40039,7 +40350,7 @@ paths: description: Response content: application/json: - schema: *296 + schema: *299 examples: default: value: @@ -40075,10 +40386,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-an-organization parameters: - - *294 - - *295 - - *164 - *297 + - *298 + - *164 + - *300 responses: '204': description: Response @@ -40110,10 +40421,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-an-organization parameters: - - *294 - - *295 - - *164 - *297 + - *298 + - *164 + - *300 responses: '204': description: Response @@ -40143,7 +40454,7 @@ paths: - *164 - *17 - *19 - - &299 + - &302 name: sort description: The property by which to sort the results. in: query @@ -40154,7 +40465,7 @@ paths: - created_at default: created_at - *84 - - &300 + - &303 name: owner description: A list of owner usernames to use to filter the results. in: query @@ -40166,7 +40477,7 @@ paths: type: string examples: - owner[]=octocat1,owner[]=octocat2 - - &301 + - &304 name: repository description: The name of the repository to use to filter the results. in: query @@ -40175,7 +40486,7 @@ paths: type: string examples: - Hello-World - - &302 + - &305 name: permission description: The permission to use to filter the results. in: query @@ -40184,7 +40495,7 @@ paths: type: string examples: - issues_read - - &303 + - &306 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) @@ -40194,7 +40505,7 @@ paths: schema: type: string format: date-time - - &304 + - &307 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) @@ -40204,7 +40515,7 @@ paths: schema: type: string format: date-time - - &305 + - &308 name: token_id description: The ID of the token in: query @@ -40523,7 +40834,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -40549,14 +40860,14 @@ paths: - *164 - *17 - *19 - - *299 - - *84 - - *300 - - *301 - *302 + - *84 - *303 - *304 - *305 + - *306 + - *307 + - *308 responses: '500': *95 '422': *15 @@ -40840,7 +41151,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -40884,7 +41195,7 @@ paths: type: integer configurations: type: array - items: &306 + items: &309 title: Organization private registry description: Private registry configuration for an organization type: object @@ -41096,7 +41407,7 @@ paths: - created_at - updated_at examples: - org-private-registry-with-selected-visibility: &307 + org-private-registry-with-selected-visibility: &310 value: name: MAVEN_REPOSITORY_SECRET registry_type: maven_repository @@ -41198,9 +41509,9 @@ paths: description: The specified private registry configuration for the organization content: application/json: - schema: *306 + schema: *309 examples: - default: *307 + default: *310 '404': *6 x-github: githubCloudOnly: false @@ -41351,7 +41662,7 @@ paths: application/json: schema: type: array - items: &308 + items: &311 title: Project description: Projects are a way to organize columns and cards of work. @@ -41533,7 +41844,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: default: value: @@ -41571,7 +41882,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': &370 + '410': &373 description: Gone content: application/json: @@ -41621,6 +41932,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -41733,7 +42048,7 @@ paths: required: true content: application/json: - schema: *309 + schema: *312 examples: default: value: @@ -41839,7 +42154,7 @@ paths: - octocat/Hello-World properties: type: array - items: &310 + items: &313 title: Custom Property Value description: Custom property name and associated value type: object @@ -41929,7 +42244,7 @@ paths: type: array description: List of custom property names and associated values to apply to the repositories. - items: *310 + items: *313 required: - repository_names - properties @@ -41982,7 +42297,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -42122,7 +42437,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -42326,7 +42641,7 @@ paths: description: Response content: application/json: - schema: &372 + schema: &375 title: Full Repository description: Full Repository type: object @@ -42791,7 +43106,7 @@ paths: description: Whether anonymous git access is allowed. default: true type: boolean - code_of_conduct: &487 + code_of_conduct: &490 title: Code Of Conduct Simple description: Code of Conduct Simple type: object @@ -42821,7 +43136,7 @@ paths: - key - name - html_url - security_and_analysis: *311 + security_and_analysis: *314 custom_properties: type: object description: The custom properties that were defined for the repository. @@ -42905,7 +43220,7 @@ paths: - network_count - subscribers_count examples: - default: &374 + default: &377 value: id: 1296269 node_id: MDEwOlJlcG9zaXRvcnkxMjk2MjY5 @@ -43431,9 +43746,9 @@ paths: application/json: schema: type: array - items: *312 + items: *315 examples: - default: *313 + default: *316 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -43458,7 +43773,7 @@ paths: - *164 - *17 - *19 - - &618 + - &621 name: targets description: | A comma-separated list of rule targets to filter by. @@ -43550,7 +43865,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *314 + conditions: *317 rules: type: array description: An array of rules within the ruleset. @@ -43594,7 +43909,7 @@ paths: application/json: schema: *124 examples: - default: &315 + default: &318 value: id: 21 name: super cool ruleset @@ -43649,7 +43964,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#list-organization-rule-suites parameters: - *164 - - &619 + - &622 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 @@ -43661,14 +43976,14 @@ paths: x-multi-segment: true - *219 - *215 - - &620 + - &623 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 - - &621 + - &624 name: rule_suite_result description: The rule results to filter on. When specified, only suites with this result will be returned. @@ -43688,7 +44003,7 @@ paths: description: Response content: application/json: - schema: &622 + schema: &625 title: Rule Suites description: Response type: array @@ -43744,7 +44059,7 @@ paths: whether rules would pass or fail if all rules in the rule suite were `active`. examples: - default: &623 + default: &626 value: - id: 21 actor_id: 12 @@ -43788,7 +44103,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/rule-suites#get-an-organization-rule-suite parameters: - *164 - - &624 + - &627 name: rule_suite_id description: |- The unique identifier of the rule suite result. @@ -43804,7 +44119,7 @@ paths: description: Response content: application/json: - schema: &625 + schema: &628 title: Rule Suite description: Response type: object @@ -43911,7 +44226,7 @@ paths: description: The detailed failure message for the rule. Null if the rule passed. examples: - default: &626 + default: &629 value: id: 21 actor_id: 12 @@ -43986,7 +44301,7 @@ paths: application/json: schema: *124 examples: - default: *315 + default: *318 '404': *6 '500': *95 put: @@ -44035,7 +44350,7 @@ paths: type: array description: The actors that can bypass the rules in this ruleset items: *122 - conditions: *314 + conditions: *317 rules: description: An array of rules within the ruleset. type: array @@ -44076,7 +44391,7 @@ paths: application/json: schema: *124 examples: - default: *315 + default: *318 '404': *6 '500': *95 delete: @@ -44135,7 +44450,7 @@ paths: type: array items: *127 examples: - default: *316 + default: *319 '404': *6 '500': *95 x-github: @@ -44172,7 +44487,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *320 examples: default: value: @@ -44235,14 +44550,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-an-organization parameters: - *164 - - *318 - - *319 - - *320 - *321 + - *322 + - *323 + - *324 - *84 - *19 - *17 - - &628 + - &631 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 @@ -44252,7 +44567,7 @@ paths: required: false schema: type: string - - &629 + - &632 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 @@ -44262,9 +44577,9 @@ paths: required: false schema: type: string - - *322 - - *323 - - *324 + - *325 + - *326 + - *327 responses: '200': description: Response @@ -44272,9 +44587,9 @@ paths: application/json: schema: type: array - items: *325 + items: *328 examples: - default: *326 + default: *329 headers: Link: *37 '404': *6 @@ -44344,7 +44659,7 @@ paths: application/json: schema: type: array - items: &636 + items: &639 description: A repository security advisory. type: object properties: @@ -44588,7 +44903,7 @@ paths: login: type: string description: The username of the user credited. - type: *327 + type: *330 credits_detailed: type: - array @@ -44599,7 +44914,7 @@ paths: type: object properties: user: *4 - type: *327 + type: *330 state: type: string description: The state of the user's acceptance of the @@ -44663,7 +44978,7 @@ paths: - private_fork additionalProperties: false examples: - default: &637 + default: &640 value: - ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -45050,9 +45365,9 @@ paths: application/json: schema: type: array - items: *290 + items: *293 examples: - default: *291 + default: *294 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -45076,7 +45391,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#add-a-security-manager-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -45102,7 +45417,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/security-managers#remove-a-security-manager-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -45137,9 +45452,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45171,9 +45486,9 @@ paths: description: Success content: application/json: - schema: *330 + schema: *333 examples: - default: *331 + default: *334 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -45201,9 +45516,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *333 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45231,9 +45546,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -45273,7 +45588,7 @@ paths: type: array items: *107 examples: - default: *336 + default: *339 headers: Link: *37 x-github: @@ -45474,15 +45789,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: - *164 - - *337 + - *340 responses: '200': description: Response content: application/json: - schema: *338 + schema: *341 examples: - default: *339 + default: *342 headers: Link: *37 x-github: @@ -45520,7 +45835,7 @@ paths: description: Response content: application/json: - schema: &361 + schema: &364 title: GroupMapping description: External Groups to be mapped to a team for membership type: object @@ -45572,7 +45887,7 @@ paths: group_description: Another group of Developers working on AzureAD SAML SSO examples: - default: &362 + default: &365 value: groups: - group_id: '123' @@ -45618,7 +45933,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-metrics#get-copilot-metrics-for-a-team parameters: - *164 - - *289 + - *292 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -45691,7 +46006,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/copilot/copilot-usage#get-a-summary-of-copilot-usage-for-a-team parameters: - *164 - - *289 + - *292 - name: since description: Show usage metrics since this date. This is a timestamp in [ISO 8601](https://en.wikipedia.org/wiki/ISO_8601) format (`YYYY-MM-DDTHH:MM:SSZ`). @@ -45759,7 +46074,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 headers: Link: *37 '403': *27 @@ -45853,7 +46168,7 @@ paths: description: Response content: application/json: - schema: &340 + schema: &343 title: Full Team description: Groups of organization members that gives permissions on specified repositories. @@ -45927,7 +46242,7 @@ paths: parent: anyOf: - type: 'null' - - *290 + - *293 members_count: type: integer examples: @@ -46233,7 +46548,7 @@ paths: - repos_count - organization examples: - default: &341 + default: &344 value: id: 1 node_id: MDQ6VGVhbTE= @@ -46304,15 +46619,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-by-name parameters: - *164 - - *289 + - *292 responses: '200': description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 x-github: githubCloudOnly: false @@ -46334,7 +46649,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team parameters: - *164 - - *289 + - *292 requestBody: required: false content: @@ -46397,16 +46712,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '201': description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 '422': *15 '403': *27 @@ -46432,7 +46747,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -46459,7 +46774,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions parameters: - *164 - - *289 + - *292 - *84 - *17 - *19 @@ -46476,7 +46791,7 @@ paths: application/json: schema: type: array - items: &342 + items: &345 title: Team Discussion description: A team discussion is a persistent record of a free-form conversation within a team. @@ -46587,7 +46902,7 @@ paths: - updated_at - url examples: - default: &677 + default: &680 value: - author: login: octocat @@ -46662,7 +46977,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion parameters: - *164 - - *289 + - *292 requestBody: required: true content: @@ -46696,9 +47011,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: &343 + default: &346 value: author: login: octocat @@ -46771,8 +47086,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion parameters: - *164 - - *289 - - &344 + - *292 + - &347 name: discussion_number description: The number that identifies the discussion. in: path @@ -46784,9 +47099,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *343 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -46809,8 +47124,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 requestBody: required: false content: @@ -46833,9 +47148,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: &678 + default: &681 value: author: login: octocat @@ -46906,8 +47221,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 responses: '204': description: Response @@ -46934,8 +47249,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments parameters: - *164 - - *289 - - *344 + - *292 + - *347 - *84 - *17 - *19 @@ -46946,7 +47261,7 @@ paths: application/json: schema: type: array - items: &345 + items: &348 title: Team Discussion Comment description: A reply to a discussion within a team. type: object @@ -47026,7 +47341,7 @@ paths: - updated_at - url examples: - default: &679 + default: &682 value: - author: login: octocat @@ -47095,8 +47410,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 + - *347 requestBody: required: true content: @@ -47118,9 +47433,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &346 + default: &349 value: author: login: octocat @@ -47187,9 +47502,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment parameters: - *164 - - *289 - - *344 - - &347 + - *292 + - *347 + - &350 name: comment_number description: The number that identifies the comment. in: path @@ -47201,9 +47516,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47226,9 +47541,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 requestBody: required: true content: @@ -47250,9 +47565,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: &680 + default: &683 value: author: login: octocat @@ -47317,9 +47632,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 responses: '204': description: Response @@ -47346,9 +47661,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -47374,7 +47689,7 @@ paths: application/json: schema: type: array - items: &348 + items: &351 title: Reaction description: Reactions to conversations provide a way to help people express their feelings more simply and effectively. @@ -47418,7 +47733,7 @@ paths: - content - created_at examples: - default: &350 + default: &353 value: - id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47469,9 +47784,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment parameters: - *164 - - *289 - - *344 + - *292 - *347 + - *350 requestBody: required: true content: @@ -47504,9 +47819,9 @@ paths: team discussion comment content: application/json: - schema: *348 + schema: *351 examples: - default: &349 + default: &352 value: id: 1 node_id: MDg6UmVhY3Rpb24x @@ -47535,9 +47850,9 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -47561,10 +47876,10 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-comment-reaction parameters: - *164 - - *289 - - *344 + - *292 - *347 - - &351 + - *350 + - &354 name: reaction_id description: The unique identifier of the reaction. in: path @@ -47597,8 +47912,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -47624,9 +47939,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 x-github: @@ -47653,8 +47968,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion parameters: - *164 - - *289 - - *344 + - *292 + - *347 requestBody: required: true content: @@ -47686,16 +48001,16 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -47719,9 +48034,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-team-discussion-reaction parameters: - *164 - - *289 - - *344 - - *351 + - *292 + - *347 + - *354 responses: '204': description: Response @@ -47745,15 +48060,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#list-a-connection-between-an-external-group-and-a-team parameters: - *164 - - *289 + - *292 responses: '200': description: Response content: application/json: - schema: *352 + schema: *355 examples: - default: *353 + default: *356 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -47773,7 +48088,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#update-the-connection-between-an-external-group-and-a-team parameters: - *164 - - *289 + - *292 requestBody: required: true content: @@ -47797,9 +48112,9 @@ paths: description: Response content: application/json: - schema: *354 + schema: *357 examples: - default: *355 + default: *358 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -47819,7 +48134,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/external-groups#remove-the-connection-between-an-external-group-and-a-team parameters: - *164 - - *289 + - *292 responses: '204': description: Response @@ -47844,7 +48159,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -47879,7 +48194,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members parameters: - *164 - - *289 + - *292 - name: role description: Filters members returned by their role in the team. in: query @@ -47902,7 +48217,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -47933,14 +48248,14 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-membership-for-a-user parameters: - *164 - - *289 + - *292 - *212 responses: '200': description: Response content: application/json: - schema: &356 + schema: &359 title: Team Membership description: Team Membership type: object @@ -47968,7 +48283,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &681 + response-if-user-is-a-team-maintainer: &684 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -48005,7 +48320,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-or-update-team-membership-for-a-user parameters: - *164 - - *289 + - *292 - *212 requestBody: required: false @@ -48031,9 +48346,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *359 examples: - response-if-users-membership-with-team-is-now-pending: &682 + response-if-users-membership-with-team-is-now-pending: &685 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -48069,7 +48384,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-membership-for-a-user parameters: - *164 - - *289 + - *292 - *212 responses: '204': @@ -48096,7 +48411,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -48106,7 +48421,7 @@ paths: application/json: schema: type: array - items: &357 + items: &360 title: Team Project description: A team's access to a project. type: object @@ -48175,7 +48490,7 @@ paths: - updated_at - permissions examples: - default: &683 + default: &686 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48239,8 +48554,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project parameters: - *164 - - *289 - - &358 + - *292 + - &361 name: project_id description: The unique identifier of the project. in: path @@ -48252,9 +48567,9 @@ paths: description: Response content: application/json: - schema: *357 + schema: *360 examples: - default: &684 + default: &687 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -48317,8 +48632,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions parameters: - *164 - - *289 - - *358 + - *292 + - *361 requestBody: required: false content: @@ -48386,8 +48701,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team parameters: - *164 - - *289 - - *358 + - *292 + - *361 responses: '204': description: Response @@ -48415,7 +48730,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -48427,7 +48742,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -48457,15 +48772,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-repository parameters: - *164 - - *289 - - *359 - - *360 + - *292 + - *362 + - *363 responses: '200': description: Alternative response with repository permissions content: application/json: - schema: &685 + schema: &688 title: Team Repository description: A team's access to a repository. type: object @@ -49107,9 +49422,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-repository-permissions parameters: - *164 - - *289 - - *359 - - *360 + - *292 + - *362 + - *363 requestBody: required: false content: @@ -49155,9 +49470,9 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-repository-from-a-team parameters: - *164 - - *289 - - *359 - - *360 + - *292 + - *362 + - *363 responses: '204': description: Response @@ -49184,15 +49499,15 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#list-idp-groups-for-a-team parameters: - *164 - - *289 + - *292 responses: '200': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 x-github: githubCloudOnly: true enabledForGitHubApps: false @@ -49215,7 +49530,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/team-sync#create-or-update-idp-group-connections parameters: - *164 - - *289 + - *292 requestBody: required: true content: @@ -49258,7 +49573,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -49291,7 +49606,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams parameters: - *164 - - *289 + - *292 - *17 - *19 responses: @@ -49303,7 +49618,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: &686 + response-if-child-teams-exist: &689 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -49430,7 +49745,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#get-a-project-card parameters: - - &363 + - &366 name: card_id description: The unique identifier of the card. in: path @@ -49442,7 +49757,7 @@ paths: description: Response content: application/json: - schema: &364 + schema: &367 title: Project Card description: Project cards represent a scope of work. type: object @@ -49517,7 +49832,7 @@ paths: - created_at - updated_at examples: - default: &365 + default: &368 value: url: https://api.github.com/projects/columns/cards/1478 id: 1478 @@ -49573,7 +49888,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#update-an-existing-project-card parameters: - - *363 + - *366 requestBody: required: false content: @@ -49603,9 +49918,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *365 + default: *368 '304': *35 '403': *27 '401': *23 @@ -49632,7 +49947,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#delete-a-project-card parameters: - - *363 + - *366 responses: '204': description: Response @@ -49676,7 +49991,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#move-a-project-card parameters: - - *363 + - *366 requestBody: required: true content: @@ -49789,7 +50104,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#get-a-project-column parameters: - - &366 + - &369 name: column_id description: The unique identifier of the column. in: path @@ -49801,7 +50116,7 @@ paths: description: Response content: application/json: - schema: &367 + schema: &370 title: Project Column description: Project columns contain cards of work. type: object @@ -49855,7 +50170,7 @@ paths: - created_at - updated_at examples: - default: &368 + default: &371 value: url: https://api.github.com/projects/columns/367 project_url: https://api.github.com/projects/120 @@ -49890,7 +50205,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#update-an-existing-project-column parameters: - - *366 + - *369 requestBody: required: true content: @@ -49915,9 +50230,9 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: - default: *368 + default: *371 '304': *35 '403': *27 '401': *23 @@ -49942,7 +50257,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#delete-a-project-column parameters: - - *366 + - *369 responses: '204': description: Response @@ -49971,7 +50286,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#list-project-cards parameters: - - *366 + - *369 - name: archived_state description: Filters the project cards that are returned by the card's state. in: query @@ -49992,7 +50307,7 @@ paths: application/json: schema: type: array - items: *364 + items: *367 examples: default: value: @@ -50051,7 +50366,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/cards#create-a-project-card parameters: - - *366 + - *369 requestBody: required: true content: @@ -50095,9 +50410,9 @@ paths: description: Response content: application/json: - schema: *364 + schema: *367 examples: - default: *365 + default: *368 '304': *35 '403': *27 '401': *23 @@ -50153,7 +50468,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#move-a-project-column parameters: - - *366 + - *369 requestBody: required: true content: @@ -50214,15 +50529,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#get-a-project parameters: - - *358 + - *361 responses: '200': description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: &369 + default: &372 value: owner_url: https://api.github.com/repos/api-playground/projects-test url: https://api.github.com/projects/1002604 @@ -50279,7 +50594,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#update-a-project parameters: - - *358 + - *361 requestBody: required: false content: @@ -50328,9 +50643,9 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: *369 + default: *372 '404': description: Not Found if the authenticated user does not have access to the project @@ -50351,7 +50666,7 @@ paths: items: type: string '401': *23 - '410': *370 + '410': *373 '422': *7 x-github: githubCloudOnly: false @@ -50374,7 +50689,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#delete-a-project parameters: - - *358 + - *361 responses: '204': description: Delete Success @@ -50395,7 +50710,7 @@ paths: items: type: string '401': *23 - '410': *370 + '410': *373 '404': *6 x-github: githubCloudOnly: false @@ -50419,7 +50734,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#list-project-collaborators parameters: - - *358 + - *361 - name: affiliation description: Filters the collaborators by their affiliation. `outside` means outside collaborators of a project that are not a member of the project's @@ -50446,7 +50761,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '404': *6 @@ -50476,7 +50791,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#add-project-collaborator parameters: - - *358 + - *361 - *212 requestBody: required: false @@ -50531,7 +50846,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#remove-user-as-a-collaborator parameters: - - *358 + - *361 - *212 responses: '204': @@ -50563,7 +50878,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/collaborators#get-project-permission-for-a-user parameters: - - *358 + - *361 - *212 responses: '200': @@ -50634,7 +50949,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#list-project-columns parameters: - - *358 + - *361 - *17 - *19 responses: @@ -50644,7 +50959,7 @@ paths: application/json: schema: type: array - items: *367 + items: *370 examples: default: value: @@ -50682,7 +50997,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/columns#create-a-project-column parameters: - - *358 + - *361 requestBody: required: true content: @@ -50706,7 +51021,7 @@ paths: description: Response content: application/json: - schema: *367 + schema: *370 examples: default: value: @@ -50770,7 +51085,7 @@ paths: resources: type: object properties: - core: &371 + core: &374 title: Rate Limit type: object properties: @@ -50787,20 +51102,20 @@ paths: - remaining - reset - used - graphql: *371 - search: *371 - code_search: *371 - source_import: *371 - integration_manifest: *371 - code_scanning_upload: *371 - actions_runner_registration: *371 - scim: *371 - dependency_snapshots: *371 - code_scanning_autofix: *371 + graphql: *374 + search: *374 + code_search: *374 + source_import: *374 + integration_manifest: *374 + code_scanning_upload: *374 + actions_runner_registration: *374 + scim: *374 + dependency_snapshots: *374 + code_scanning_autofix: *374 required: - core - search - rate: *371 + rate: *374 required: - rate - resources @@ -50904,14 +51219,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *372 + schema: *375 examples: default-response: summary: Default response @@ -51416,7 +51731,7 @@ paths: status: disabled '403': *27 '404': *6 - '301': *373 + '301': *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -51434,8 +51749,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#update-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -51682,10 +51997,10 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 - '307': &375 + default: *377 + '307': &378 description: Temporary Redirect content: application/json: @@ -51714,8 +52029,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#delete-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -51737,7 +52052,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': *375 + '307': *378 '404': *6 x-github: githubCloudOnly: false @@ -51760,11 +52075,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-artifacts-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - - &390 + - &393 name: name description: The name field of an artifact. When specified, only artifacts with this name will be returned. @@ -51787,7 +52102,7 @@ paths: type: integer artifacts: type: array - items: &376 + items: &379 title: Artifact description: An artifact type: object @@ -51882,7 +52197,7 @@ paths: - expires_at - updated_at examples: - default: &391 + default: &394 value: total_count: 2 artifacts: @@ -51943,9 +52258,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#get-an-artifact parameters: - - *359 - - *360 - - &377 + - *362 + - *363 + - &380 name: artifact_id description: The unique identifier of the artifact. in: path @@ -51957,7 +52272,7 @@ paths: description: Response content: application/json: - schema: *376 + schema: *379 examples: default: value: @@ -51995,9 +52310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#delete-an-artifact parameters: - - *359 - - *360 - - *377 + - *362 + - *363 + - *380 responses: '204': description: Response @@ -52021,9 +52336,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#download-an-artifact parameters: - - *359 - - *360 - - *377 + - *362 + - *363 + - *380 - name: archive_format in: path required: true @@ -52037,7 +52352,7 @@ paths: example: https://pipelines.actions.githubusercontent.com/OhgS4QRKqmgx7bKC27GKU83jnQjyeqG8oIMTge8eqtheppcmw8/_apis/pipelines/1/runs/176/signedlogcontent?urlExpires=2020-01-24T18%3A10%3A31.5729946Z&urlSigningMethod=HMACV1&urlSignature=agG73JakPYkHrh06seAkvmH7rBR4Ji4c2%2B6a2ejYh3E%3D schema: type: string - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52060,14 +52375,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *378 + schema: *381 examples: default: value: @@ -52093,11 +52408,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: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - - &379 + - &382 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 @@ -52131,7 +52446,7 @@ paths: description: Response content: application/json: - schema: &380 + schema: &383 title: Repository actions caches description: Repository actions caches type: object @@ -52181,7 +52496,7 @@ paths: - total_count - actions_caches examples: - default: &381 + default: &384 value: total_count: 1 actions_caches: @@ -52213,23 +52528,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: - - *359 - - *360 + - *362 + - *363 - name: key description: A key for identifying the cache. in: query required: true schema: type: string - - *379 + - *382 responses: '200': description: Response content: application/json: - schema: *380 + schema: *383 examples: - default: *381 + default: *384 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -52249,8 +52564,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: - - *359 - - *360 + - *362 + - *363 - name: cache_id description: The unique identifier of the GitHub Actions cache. in: path @@ -52281,9 +52596,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: - - *359 - - *360 - - &382 + - *362 + - *363 + - &385 name: job_id description: The unique identifier of the job. in: path @@ -52295,7 +52610,7 @@ paths: description: Response content: application/json: - schema: &394 + schema: &397 title: Job description: Information of a job execution in a workflow run type: object @@ -52642,9 +52957,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: - - *359 - - *360 - - *382 + - *362 + - *363 + - *385 responses: '302': description: Response @@ -52672,9 +52987,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: - - *359 - - *360 - - *382 + - *362 + - *363 + - *385 requestBody: required: false content: @@ -52720,8 +53035,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Status response @@ -52771,8 +53086,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -52835,8 +53150,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-organization-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -52854,7 +53169,7 @@ paths: type: integer secrets: type: array - items: &396 + items: &399 title: Actions Secret description: Set secrets for GitHub Actions. type: object @@ -52875,7 +53190,7 @@ paths: - created_at - updated_at examples: - default: &397 + default: &400 value: total_count: 2 secrets: @@ -52908,9 +53223,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-organization-variables parameters: - - *359 - - *360 - - *383 + - *362 + - *363 + - *386 - *19 responses: '200': @@ -52927,7 +53242,7 @@ paths: type: integer variables: type: array - items: &400 + items: &403 title: Actions Variable type: object properties: @@ -52961,7 +53276,7 @@ paths: - created_at - updated_at examples: - default: &401 + default: &404 value: total_count: 2 variables: @@ -52994,8 +53309,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53004,7 +53319,7 @@ paths: schema: type: object properties: - enabled: &384 + enabled: &387 type: boolean description: Whether GitHub Actions is enabled on the repository. allowed_actions: *46 @@ -53037,8 +53352,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -53049,7 +53364,7 @@ paths: schema: type: object properties: - enabled: *384 + enabled: *387 allowed_actions: *46 required: - enabled @@ -53080,14 +53395,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: &385 + schema: &388 type: object properties: access_level: @@ -53105,7 +53420,7 @@ paths: required: - access_level examples: - default: &386 + default: &389 value: access_level: organization x-github: @@ -53130,15 +53445,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: application/json: - schema: *385 + schema: *388 examples: - default: *386 + default: *389 responses: '204': description: Response @@ -53162,8 +53477,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53194,8 +53509,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -53227,8 +53542,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53257,8 +53572,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Success response @@ -53298,8 +53613,8 @@ paths: in: query schema: type: string - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -53343,8 +53658,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -53376,8 +53691,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -53451,8 +53766,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: - - *359 - - *360 + - *362 + - *363 responses: '201': description: Response @@ -53488,8 +53803,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: - - *359 - - *360 + - *362 + - *363 responses: '201': description: Response @@ -53519,8 +53834,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '200': @@ -53550,8 +53865,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '204': @@ -53577,8 +53892,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '200': *64 @@ -53603,8 +53918,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: - - *359 - - *360 + - *362 + - *363 - *58 requestBody: required: true @@ -53653,8 +53968,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: - - *359 - - *360 + - *362 + - *363 - *58 requestBody: required: true @@ -53704,8 +54019,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: - - *359 - - *360 + - *362 + - *363 - *58 responses: '200': *197 @@ -53735,8 +54050,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: - - *359 - - *360 + - *362 + - *363 - *58 - *198 responses: @@ -53766,9 +54081,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: - - *359 - - *360 - - &404 + - *362 + - *363 + - &407 name: actor description: Returns someone's workflow runs. Use the login for the user who created the `push` associated with the check suite or workflow run. @@ -53776,7 +54091,7 @@ paths: required: false schema: type: string - - &405 + - &408 name: branch description: Returns workflow runs associated with a branch. Use the name of the branch of the `push`. @@ -53784,7 +54099,7 @@ paths: required: false schema: type: string - - &406 + - &409 name: event description: Returns workflow run triggered by the event you specify. For example, `push`, `pull_request` or `issue`. For more information, see "[Events @@ -53793,7 +54108,7 @@ paths: required: false schema: type: string - - &407 + - &410 name: status description: Returns workflow runs with the check run `status` or `conclusion` that you specify. For example, a conclusion can be `success` or a status @@ -53820,7 +54135,7 @@ paths: - pending - *17 - *19 - - &408 + - &411 name: created description: Returns workflow runs created within the given date-time range. For more information on the syntax, see "[Understanding the search syntax](https://docs.github.com/enterprise-cloud@latest//search-github/getting-started-with-searching-on-github/understanding-the-search-syntax#query-for-dates)." @@ -53829,7 +54144,7 @@ paths: schema: type: string format: date-time - - &387 + - &390 name: exclude_pull_requests description: If `true` pull requests are omitted from the response (empty array). @@ -53838,13 +54153,13 @@ paths: schema: type: boolean default: false - - &409 + - &412 name: check_suite_id description: Returns workflow runs with the `check_suite_id` that you specify. in: query schema: type: integer - - &410 + - &413 name: head_sha description: Only returns workflow runs that are associated with the specified `head_sha`. @@ -53867,7 +54182,7 @@ paths: type: integer workflow_runs: type: array - items: &388 + items: &391 title: Workflow Run description: An invocation of a workflow type: object @@ -53984,7 +54299,7 @@ paths: type: - array - 'null' - items: &431 + items: &434 title: Pull Request Minimal type: object properties: @@ -54111,7 +54426,7 @@ paths: head_commit: anyOf: - type: 'null' - - &435 + - &438 title: Simple Commit description: A commit. type: object @@ -54226,7 +54541,7 @@ paths: - workflow_url - pull_requests examples: - default: &411 + default: &414 value: total_count: 1 workflow_runs: @@ -54462,24 +54777,24 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run parameters: - - *359 - - *360 - - &389 + - *362 + - *363 + - &392 name: run_id description: The unique identifier of the workflow run. in: path required: true schema: type: integer - - *387 + - *390 responses: '200': description: Response content: application/json: - schema: *388 + schema: *391 examples: - default: &392 + default: &395 value: id: 30433642 name: Build @@ -54720,9 +55035,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-a-workflow-run parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '204': description: Response @@ -54745,9 +55060,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '200': description: Response @@ -54875,9 +55190,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '201': description: Response @@ -54910,12 +55225,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/artifacts#list-workflow-run-artifacts parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 - *17 - *19 - - *390 + - *393 responses: '200': description: Response @@ -54931,9 +55246,9 @@ paths: type: integer artifacts: type: array - items: *376 + items: *379 examples: - default: *391 + default: *394 headers: Link: *37 x-github: @@ -54957,25 +55272,25 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-a-workflow-run-attempt parameters: - - *359 - - *360 - - *389 - - &393 + - *362 + - *363 + - *392 + - &396 name: attempt_number description: The attempt number of the workflow run. in: path required: true schema: type: integer - - *387 + - *390 responses: '200': description: Response content: application/json: - schema: *388 + schema: *391 examples: - default: *392 + default: *395 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -54998,10 +55313,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: - - *359 - - *360 - - *389 - - *393 + - *362 + - *363 + - *392 + - *396 - *17 - *19 responses: @@ -55019,9 +55334,9 @@ paths: type: integer jobs: type: array - items: *394 + items: *397 examples: - default: &395 + default: &398 value: total_count: 1 jobs: @@ -55134,10 +55449,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-attempt-logs parameters: - - *359 - - *360 - - *389 - - *393 + - *362 + - *363 + - *392 + - *396 responses: '302': description: Response @@ -55165,9 +55480,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#cancel-a-workflow-run parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '202': description: Response @@ -55200,9 +55515,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: true content: @@ -55269,9 +55584,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#force-cancel-a-workflow-run parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '202': description: Response @@ -55304,9 +55619,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 - 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 @@ -55336,9 +55651,9 @@ paths: type: integer jobs: type: array - items: *394 + items: *397 examples: - default: *395 + default: *398 headers: Link: *37 x-github: @@ -55363,9 +55678,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#download-workflow-run-logs parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '302': description: Response @@ -55392,9 +55707,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#delete-workflow-run-logs parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '204': description: Response @@ -55421,9 +55736,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '200': description: Response @@ -55492,7 +55807,7 @@ paths: items: type: object properties: - type: &506 + type: &509 type: string description: The type of reviewer. enum: @@ -55578,9 +55893,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: true content: @@ -55630,7 +55945,7 @@ paths: application/json: schema: type: array - items: &501 + items: &504 title: Deployment description: A request for a specific ref(branch,sha,tag) to be deployed @@ -55742,7 +56057,7 @@ paths: - created_at - updated_at examples: - default: &502 + default: &505 value: - url: https://api.github.com/repos/octocat/example/deployments/1 id: 1 @@ -55798,9 +56113,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#re-run-a-workflow parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: false content: @@ -55845,9 +56160,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: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 requestBody: required: false content: @@ -55902,9 +56217,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflow-runs#get-workflow-run-usage parameters: - - *359 - - *360 - - *389 + - *362 + - *363 + - *392 responses: '200': description: Response @@ -56041,8 +56356,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-repository-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -56060,9 +56375,9 @@ paths: type: integer secrets: type: array - items: *396 + items: *399 examples: - default: *397 + default: *400 headers: Link: *37 x-github: @@ -56087,16 +56402,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-public-key parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -56118,17 +56433,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '200': description: Response content: application/json: - schema: *396 + schema: *399 examples: - default: &519 + default: &522 value: name: GH_TOKEN created_at: '2019-08-10T14:59:22Z' @@ -56154,8 +56469,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 requestBody: required: true @@ -56213,8 +56528,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '204': @@ -56240,9 +56555,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-repository-variables parameters: - - *359 - - *360 - - *383 + - *362 + - *363 + - *386 - *19 responses: '200': @@ -56259,9 +56574,9 @@ paths: type: integer variables: type: array - items: *400 + items: *403 examples: - default: *401 + default: *404 headers: Link: *37 x-github: @@ -56284,8 +56599,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -56337,17 +56652,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: - default: &520 + default: &523 value: name: USERNAME value: octocat @@ -56373,8 +56688,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 requestBody: required: true @@ -56417,8 +56732,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-a-repository-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 responses: '204': @@ -56444,8 +56759,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#list-repository-workflows parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -56463,7 +56778,7 @@ paths: type: integer workflows: type: array - items: &402 + items: &405 title: Workflow description: A GitHub Actions workflow type: object @@ -56581,9 +56896,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-a-workflow parameters: - - *359 - - *360 - - &403 + - *362 + - *363 + - &406 name: workflow_id in: path description: The ID of the workflow. You can also pass the workflow file name @@ -56598,7 +56913,7 @@ paths: description: Response content: application/json: - schema: *402 + schema: *405 examples: default: value: @@ -56631,9 +56946,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#disable-a-workflow parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '204': description: Response @@ -56658,9 +56973,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#create-a-workflow-dispatch-event parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '204': description: Response @@ -56711,9 +57026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#enable-a-workflow parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '204': description: Response @@ -56740,19 +57055,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: - - *359 - - *360 - - *403 - - *404 - - *405 + - *362 + - *363 - *406 - *407 - - *17 - - *19 - *408 - - *387 - *409 - *410 + - *17 + - *19 + - *411 + - *390 + - *412 + - *413 responses: '200': description: Response @@ -56768,9 +57083,9 @@ paths: type: integer workflow_runs: type: array - items: *388 + items: *391 examples: - default: *411 + default: *414 headers: Link: *37 x-github: @@ -56803,9 +57118,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/workflows#get-workflow-usage parameters: - - *359 - - *360 - - *403 + - *362 + - *363 + - *406 responses: '200': description: Response @@ -56866,8 +57181,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-activities parameters: - - *359 - - *360 + - *362 + - *363 - *84 - *17 - *82 @@ -57035,8 +57350,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#list-assignees parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -57048,7 +57363,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '404': *6 @@ -57073,8 +57388,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: - - *359 - - *360 + - *362 + - *363 - name: assignee in: path required: true @@ -57110,8 +57425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-an-attestation parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -57223,8 +57538,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-attestations parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *82 - *83 @@ -57278,7 +57593,7 @@ paths: bundle_url: type: string examples: - default: *412 + default: *415 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -57298,8 +57613,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/autolinks#get-all-autolinks-of-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -57307,7 +57622,7 @@ paths: application/json: schema: type: array - items: &413 + items: &416 title: Autolink reference description: An autolink reference. type: object @@ -57361,8 +57676,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -57401,9 +57716,9 @@ paths: description: response content: application/json: - schema: *413 + schema: *416 examples: - default: &414 + default: &417 value: id: 1 key_prefix: TICKET- @@ -57434,9 +57749,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: - - *359 - - *360 - - &415 + - *362 + - *363 + - &418 name: autolink_id description: The unique identifier of the autolink. in: path @@ -57448,9 +57763,9 @@ paths: description: Response content: application/json: - schema: *413 + schema: *416 examples: - default: *414 + default: *417 '404': *6 x-github: githubCloudOnly: false @@ -57470,9 +57785,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: - - *359 - - *360 - - *415 + - *362 + - *363 + - *418 responses: '204': description: Response @@ -57496,8 +57811,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response if Dependabot is enabled @@ -57547,8 +57862,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-dependabot-security-updates parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -57569,8 +57884,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-dependabot-security-updates parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -57590,8 +57905,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#list-branches parameters: - - *359 - - *360 + - *362 + - *363 - name: protected description: Setting to `true` returns only branches protected by branch protections or rulesets. When set to `false`, only unprotected branches are returned. @@ -57629,7 +57944,7 @@ paths: - url protected: type: boolean - protection: &417 + protection: &420 title: Branch Protection description: Branch Protection type: object @@ -57672,7 +57987,7 @@ paths: required: - contexts - checks - enforce_admins: &420 + enforce_admins: &423 title: Protected Branch Admin Enforced description: Protected Branch Admin Enforced type: object @@ -57689,7 +58004,7 @@ paths: required: - url - enabled - required_pull_request_reviews: &422 + required_pull_request_reviews: &425 title: Protected Branch Pull Request Review description: Protected Branch Pull Request Review type: object @@ -57773,7 +58088,7 @@ paths: required: - dismiss_stale_reviews - require_code_owner_reviews - restrictions: &419 + restrictions: &422 title: Branch Restriction Policy description: Branch Restriction Policy type: object @@ -58098,9 +58413,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#get-a-branch parameters: - - *359 - - *360 - - &418 + - *362 + - *363 + - &421 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). @@ -58114,14 +58429,14 @@ paths: description: Response content: application/json: - schema: &428 + schema: &431 title: Branch With Protection description: Branch With Protection type: object properties: name: type: string - commit: &477 + commit: &480 title: Commit description: Commit type: object @@ -58160,7 +58475,7 @@ paths: author: anyOf: - type: 'null' - - &416 + - &419 title: Git User description: Metaproperties for Git author/committer information. @@ -58181,7 +58496,7 @@ paths: committer: anyOf: - type: 'null' - - *416 + - *419 message: type: string examples: @@ -58205,7 +58520,7 @@ paths: required: - sha - url - verification: &526 + verification: &529 title: Verification type: object properties: @@ -58285,7 +58600,7 @@ paths: type: integer files: type: array - items: &489 + items: &492 title: Diff Entry description: Diff Entry type: object @@ -58379,7 +58694,7 @@ paths: - self protected: type: boolean - protection: *417 + protection: *420 protection_url: type: string format: uri @@ -58488,7 +58803,7 @@ paths: contexts: [] checks: [] protection_url: https://api.github.com/repos/octocat/Hello-World/branches/main/protection - '301': *373 + '301': *376 '404': *6 x-github: githubCloudOnly: false @@ -58510,15 +58825,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *417 + schema: *420 examples: default: value: @@ -58712,9 +59027,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -58974,7 +59289,7 @@ paths: url: type: string format: uri - required_status_checks: &425 + required_status_checks: &428 title: Status Check Policy description: Status Check Policy type: object @@ -59133,7 +59448,7 @@ paths: additionalProperties: false required: - enabled - restrictions: *419 + restrictions: *422 required_conversation_resolution: type: object properties: @@ -59245,9 +59560,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59272,17 +59587,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-admin-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: &421 + default: &424 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/enforce_admins enabled: true @@ -59304,17 +59619,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-admin-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: *421 + default: *424 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -59333,9 +59648,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-admin-branch-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59360,17 +59675,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-pull-request-review-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *422 + schema: *425 examples: - default: &423 + default: &426 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_pull_request_reviews dismissal_restrictions: @@ -59466,9 +59781,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-pull-request-review-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -59566,9 +59881,9 @@ paths: description: Response content: application/json: - schema: *422 + schema: *425 examples: - default: *423 + default: *426 '422': *15 x-github: githubCloudOnly: false @@ -59589,9 +59904,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-pull-request-review-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59618,17 +59933,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-commit-signature-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: &424 + default: &427 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_signatures enabled: true @@ -59651,17 +59966,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#create-commit-signature-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *420 + schema: *423 examples: - default: *424 + default: *427 '404': *6 x-github: githubCloudOnly: false @@ -59681,9 +59996,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-commit-signature-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59708,17 +60023,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-status-checks-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: &426 + default: &429 value: url: https://api.github.com/repos/octocat/Hello-World/branches/master/protection/required_status_checks strict: true @@ -59744,9 +60059,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#update-status-check-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -59798,9 +60113,9 @@ paths: description: Response content: application/json: - schema: *425 + schema: *428 examples: - default: *426 + default: *429 '404': *6 '422': *15 x-github: @@ -59822,9 +60137,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-protection parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -59848,9 +60163,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-all-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -59884,9 +60199,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -59953,9 +60268,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -60019,9 +60334,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-status-check-contexts parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: content: application/json: @@ -60087,15 +60402,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#get-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response content: application/json: - schema: *419 + schema: *422 examples: default: value: @@ -60186,9 +60501,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#delete-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '204': description: Response @@ -60211,9 +60526,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: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -60223,7 +60538,7 @@ paths: type: array items: *5 examples: - default: &427 + default: &430 value: - id: 1 slug: octoapp @@ -60280,9 +60595,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-app-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60316,7 +60631,7 @@ paths: type: array items: *5 examples: - default: *427 + default: *430 '422': *15 x-github: githubCloudOnly: false @@ -60337,9 +60652,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-app-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60373,7 +60688,7 @@ paths: type: array items: *5 examples: - default: *427 + default: *430 '422': *15 x-github: githubCloudOnly: false @@ -60394,9 +60709,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-app-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60430,7 +60745,7 @@ paths: type: array items: *5 examples: - default: *427 + default: *430 '422': *15 x-github: githubCloudOnly: false @@ -60452,9 +60767,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: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -60464,7 +60779,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '404': *6 x-github: githubCloudOnly: false @@ -60484,9 +60799,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-team-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -60524,7 +60839,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '422': *15 x-github: githubCloudOnly: false @@ -60545,9 +60860,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-team-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: false content: @@ -60585,7 +60900,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '422': *15 x-github: githubCloudOnly: false @@ -60606,9 +60921,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-team-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: content: application/json: @@ -60645,7 +60960,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 '422': *15 x-github: githubCloudOnly: false @@ -60667,9 +60982,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: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 responses: '200': description: Response @@ -60679,7 +60994,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '404': *6 x-github: githubCloudOnly: false @@ -60703,9 +61018,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#add-user-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60738,7 +61053,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '422': *15 x-github: githubCloudOnly: false @@ -60763,9 +61078,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#set-user-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60798,7 +61113,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '422': *15 x-github: githubCloudOnly: false @@ -60823,9 +61138,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branch-protection#remove-user-access-restrictions parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60858,7 +61173,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '422': *15 x-github: githubCloudOnly: false @@ -60885,9 +61200,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#rename-a-branch parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 requestBody: required: true content: @@ -60909,7 +61224,7 @@ paths: description: Response content: application/json: - schema: *428 + schema: *431 examples: default: value: @@ -61023,8 +61338,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *359 - - *360 + - *362 + - *363 - *213 - *214 - *215 @@ -61060,8 +61375,8 @@ paths: category: repos subcategory: bypass-requests parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_request_number in: path required: true @@ -61134,8 +61449,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - *213 - *214 - *215 @@ -61149,9 +61464,9 @@ paths: application/json: schema: type: array - items: *429 + items: *432 examples: - default: *430 + default: *433 '404': *6 '403': *27 '500': *95 @@ -61175,8 +61490,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_request_number in: path required: true @@ -61188,7 +61503,7 @@ paths: description: A single bypass request. content: application/json: - schema: *429 + schema: *432 examples: default: value: @@ -61246,8 +61561,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_request_number in: path required: true @@ -61318,8 +61633,8 @@ paths: category: secret-scanning subcategory: delegated-bypass parameters: - - *359 - - *360 + - *362 + - *363 - name: bypass_response_id in: path required: true @@ -61352,8 +61667,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#create-a-check-run parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -61632,7 +61947,7 @@ paths: description: Response content: application/json: - schema: &432 + schema: &435 title: CheckRun description: A check performed on the code of a given code change type: object @@ -61767,8 +62082,8 @@ paths: do not necessarily indicate pull requests that triggered the check. type: array - items: *431 - deployment: &736 + items: *434 + deployment: &739 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62055,9 +62370,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#get-a-check-run parameters: - - *359 - - *360 - - &433 + - *362 + - *363 + - &436 name: check_run_id description: The unique identifier of the check run. in: path @@ -62069,9 +62384,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *435 examples: - default: &434 + default: &437 value: id: 4 head_sha: ce587453ced02b1526dfb4cb910479d431683101 @@ -62171,9 +62486,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#update-a-check-run parameters: - - *359 - - *360 - - *433 + - *362 + - *363 + - *436 requestBody: required: true content: @@ -62413,9 +62728,9 @@ paths: description: Response content: application/json: - schema: *432 + schema: *435 examples: - default: *434 + default: *437 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -62435,9 +62750,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#list-check-run-annotations parameters: - - *359 - - *360 - - *433 + - *362 + - *363 + - *436 - *17 - *19 responses: @@ -62549,9 +62864,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/runs#rerequest-a-check-run parameters: - - *359 - - *360 - - *433 + - *362 + - *363 + - *436 responses: '201': description: Response @@ -62595,8 +62910,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#create-a-check-suite parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -62618,7 +62933,7 @@ paths: description: Response when the suite already exists content: application/json: - schema: &436 + schema: &439 title: CheckSuite description: A suite of checks performed on the code of a given code change @@ -62700,7 +63015,7 @@ paths: type: - array - 'null' - items: *431 + items: *434 app: anyOf: - type: 'null' @@ -62716,7 +63031,7 @@ paths: - string - 'null' format: date-time - head_commit: *435 + head_commit: *438 latest_check_runs_count: type: integer check_runs_url: @@ -62744,7 +63059,7 @@ paths: - check_runs_url - pull_requests examples: - default: &437 + default: &440 value: id: 5 node_id: MDEwOkNoZWNrU3VpdGU1 @@ -63035,9 +63350,9 @@ paths: description: Response when the suite was created content: application/json: - schema: *436 + schema: *439 examples: - default: *437 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63056,8 +63371,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#update-repository-preferences-for-check-suites parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -63366,9 +63681,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#get-a-check-suite parameters: - - *359 - - *360 - - &438 + - *362 + - *363 + - &441 name: check_suite_id description: The unique identifier of the check suite. in: path @@ -63380,9 +63695,9 @@ paths: description: Response content: application/json: - schema: *436 + schema: *439 examples: - default: *437 + default: *440 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -63405,17 +63720,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: - - *359 - - *360 - - *438 - - &484 + - *362 + - *363 + - *441 + - &487 name: check_name description: Returns check runs with the specified `name`. in: query required: false schema: type: string - - &485 + - &488 name: status description: Returns check runs with the specified `status`. in: query @@ -63454,9 +63769,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *435 examples: - default: &486 + default: &489 value: total_count: 1 check_runs: @@ -63558,9 +63873,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/checks/suites#rerequest-a-check-suite parameters: - - *359 - - *360 - - *438 + - *362 + - *363 + - *441 responses: '201': description: Response @@ -63593,21 +63908,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: - - *359 - - *360 + - *362 + - *363 - *221 - *222 - *19 - *17 - - &454 + - &457 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: *439 - - &455 + schema: *442 + - &458 name: pr description: The number of the pull request for the results you want to list. in: query @@ -63638,7 +63953,7 @@ paths: be returned. in: query required: false - schema: *440 + schema: *443 responses: '200': description: Response @@ -63654,7 +63969,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *441 + instances_url: *444 state: *87 fixed_at: *106 dismissed_by: @@ -63662,11 +63977,11 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *442 - dismissed_comment: *443 - rule: *444 - tool: *445 - most_recent_instance: *446 + dismissed_reason: *445 + dismissed_comment: *446 + rule: *447 + tool: *448 + most_recent_instance: *449 dismissal_approved_by: anyOf: - type: 'null' @@ -63786,7 +64101,7 @@ paths: classifications: [] instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/3/instances '304': *35 - '403': &447 + '403': &450 description: Response if GitHub Advanced Security is not enabled for this repository content: @@ -63813,9 +64128,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: - - *359 - - *360 - - &448 + - *362 + - *363 + - &451 name: alert_number in: path description: The number that identifies an alert. You can find this at the @@ -63829,7 +64144,7 @@ paths: description: Response content: application/json: - schema: &449 + schema: &452 type: object properties: number: *96 @@ -63837,7 +64152,7 @@ paths: updated_at: *104 url: *101 html_url: *102 - instances_url: *441 + instances_url: *444 state: *87 fixed_at: *106 dismissed_by: @@ -63845,8 +64160,8 @@ paths: - type: 'null' - *4 dismissed_at: *105 - dismissed_reason: *442 - dismissed_comment: *443 + dismissed_reason: *445 + dismissed_comment: *446 rule: type: object properties: @@ -63908,8 +64223,8 @@ paths: - 'null' description: A link to the documentation for the rule used to detect the alert. - tool: *445 - most_recent_instance: *446 + tool: *448 + most_recent_instance: *449 dismissal_approved_by: anyOf: - type: 'null' @@ -64002,7 +64317,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '304': *35 - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64022,9 +64337,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 requestBody: required: true content: @@ -64039,8 +64354,8 @@ paths: enum: - open - dismissed - dismissed_reason: *442 - dismissed_comment: *443 + dismissed_reason: *445 + dismissed_comment: *446 create_request: type: boolean description: If `true`, attempt to create an alert dismissal request. @@ -64059,7 +64374,7 @@ paths: description: Response content: application/json: - schema: *449 + schema: *452 examples: default: value: @@ -64135,7 +64450,7 @@ paths: - test instances_url: https://api.github.com/repos/octocat/hello-world/code-scanning/alerts/42/instances '400': *14 - '403': &453 + '403': &456 description: Response if the repository is archived or if GitHub Advanced Security is not enabled for this repository content: @@ -64162,15 +64477,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 responses: '200': description: Response content: application/json: - schema: &450 + schema: &453 type: object properties: status: @@ -64197,13 +64512,13 @@ paths: - description - started_at examples: - default: &451 + default: &454 value: status: success description: This fixes an XSS vulnerability by escaping the user input. started_at: '2024-02-14T12:29:18Z' - '400': &452 + '400': &455 description: Bad Request content: application/json: @@ -64214,7 +64529,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': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64239,29 +64554,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 responses: '200': description: OK content: application/json: - schema: *450 + schema: *453 examples: - default: *451 + default: *454 '202': description: Accepted content: application/json: - schema: *450 + schema: *453 examples: default: value: status: pending description: started_at: '2024-02-14T12:29:18Z' - '400': *452 + '400': *455 '403': description: Response if the repository is archived, if GitHub Advanced Security is not enabled for this repository or if rate limit is exceeded @@ -64293,9 +64608,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 requestBody: required: false content: @@ -64341,8 +64656,8 @@ paths: value: target_ref: refs/heads/main sha: 178f4f6090b3fccad4a65b3e83d076a622d59652 - '400': *452 - '403': *453 + '400': *455 + '403': *456 '404': *6 '422': description: Unprocessable Entity @@ -64366,13 +64681,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 - *19 - *17 - - *454 - - *455 + - *457 + - *458 responses: '200': description: Response @@ -64380,7 +64695,7 @@ paths: application/json: schema: type: array - items: *446 + items: *449 examples: default: value: @@ -64419,7 +64734,7 @@ paths: end_column: 50 classifications: - source - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64453,25 +64768,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: - - *359 - - *360 + - *362 + - *363 - *221 - *222 - *19 - *17 - - *455 + - *458 - 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: *439 + schema: *442 - name: sarif_id in: query description: Filter analyses belonging to the same SARIF upload. required: false - schema: &458 + schema: &461 type: string description: An identifier for the upload. examples: @@ -64493,23 +64808,23 @@ paths: application/json: schema: type: array - items: &459 + items: &462 type: object properties: - ref: *439 - commit_sha: &467 + ref: *442 + commit_sha: &470 description: The SHA of the commit to which the analysis you are uploading relates. type: string minLength: 40 maxLength: 40 pattern: "^[0-9a-fA-F]+$" - analysis_key: *456 + analysis_key: *459 environment: type: string description: Identifies the variable values associated with the environment in which this analysis was performed. - category: *457 + category: *460 error: type: string examples: @@ -64534,8 +64849,8 @@ paths: description: The REST API URL of the analysis resource. format: uri readOnly: true - sarif_id: *458 - tool: *445 + sarif_id: *461 + tool: *448 deletable: type: boolean warning: @@ -64597,7 +64912,7 @@ paths: version: 1.2.0 deletable: true warning: '' - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64633,8 +64948,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: - - *359 - - *360 + - *362 + - *363 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64647,7 +64962,7 @@ paths: description: Response content: application/json: - schema: *459 + schema: *462 examples: response: summary: application/json response @@ -64701,7 +65016,7 @@ paths: properties: - github/alertNumber: 2 - github/alertUrl: https://api.github.com/repos/monalisa/monalisa/code-scanning/alerts/2 - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -64783,8 +65098,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: - - *359 - - *360 + - *362 + - *363 - name: analysis_id in: path description: The ID of the analysis, as returned from the `GET /repos/{owner}/{repo}/code-scanning/analyses` @@ -64840,7 +65155,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': *453 + '403': *456 '404': *6 '503': *128 x-github: @@ -64862,8 +65177,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -64871,7 +65186,7 @@ paths: application/json: schema: type: array - items: &460 + items: &463 title: CodeQL Database description: A CodeQL database. type: object @@ -64983,7 +65298,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': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -65012,8 +65327,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: - - *359 - - *360 + - *362 + - *363 - name: language in: path description: The language of the CodeQL database. @@ -65025,7 +65340,7 @@ paths: description: Response content: application/json: - schema: *460 + schema: *463 examples: default: value: @@ -65057,9 +65372,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': &491 + '302': &494 description: Found - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -65081,8 +65396,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/code-scanning/code-scanning#delete-a-codeql-database parameters: - - *359 - - *360 + - *362 + - *363 - name: language in: path description: The language of the CodeQL database. @@ -65092,7 +65407,7 @@ paths: responses: '204': description: Response - '403': *453 + '403': *456 '404': *6 '503': *128 x-github: @@ -65120,8 +65435,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -65130,7 +65445,7 @@ paths: type: object additionalProperties: false properties: - language: &461 + language: &464 type: string description: The language targeted by the CodeQL query enum: @@ -65208,7 +65523,7 @@ paths: description: Variant analysis submitted for processing content: application/json: - schema: &465 + schema: &468 title: Variant Analysis description: A run of a CodeQL query against one or more repositories. type: object @@ -65218,7 +65533,7 @@ paths: description: The ID of the variant analysis. controller_repo: *94 actor: *4 - query_language: *461 + query_language: *464 query_pack_url: type: string description: The download url for the query pack. @@ -65266,7 +65581,7 @@ paths: items: type: object properties: - repository: &462 + repository: &465 title: Repository Identifier description: Repository Identifier type: object @@ -65308,7 +65623,7 @@ paths: - private - stargazers_count - updated_at - analysis_status: &466 + analysis_status: &469 type: string description: The new status of the CodeQL variant analysis repository task. @@ -65340,7 +65655,7 @@ paths: from processing. This information is only available to the user that initiated the variant analysis. properties: - access_mismatch_repos: &463 + access_mismatch_repos: &466 type: object properties: repository_count: @@ -65355,7 +65670,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: *462 + items: *465 required: - repository_count - repositories @@ -65378,8 +65693,8 @@ paths: required: - repository_count - repository_full_names - no_codeql_db_repos: *463 - over_limit_repos: *463 + no_codeql_db_repos: *466 + over_limit_repos: *466 required: - access_mismatch_repos - not_found_repos @@ -65395,7 +65710,7 @@ paths: examples: repositories_parameter: summary: Response for a successful variant analysis submission - value: &464 + value: &467 summary: Default response value: id: 1 @@ -65547,10 +65862,10 @@ paths: private: false repository_owners: summary: Response for a successful variant analysis submission - value: *464 + value: *467 repository_lists: summary: Response for a successful variant analysis submission - value: *464 + value: *467 '404': *6 '422': description: Unable to process variant analysis submission @@ -65578,8 +65893,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: - - *359 - - *360 + - *362 + - *363 - name: codeql_variant_analysis_id in: path description: The unique identifier of the variant analysis. @@ -65591,9 +65906,9 @@ paths: description: Response content: application/json: - schema: *465 + schema: *468 examples: - default: *464 + default: *467 '404': *6 '503': *128 x-github: @@ -65616,7 +65931,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: - - *359 + - *362 - name: repo in: path description: The name of the controller repository. @@ -65651,7 +65966,7 @@ paths: type: object properties: repository: *94 - analysis_status: *466 + analysis_status: *469 artifact_size_in_bytes: type: integer description: The size of the artifact. This is only available @@ -65776,8 +66091,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -65859,7 +66174,7 @@ paths: query_suite: default updated_at: '2023-01-19T11:21:34Z' schedule: weekly - '403': *447 + '403': *450 '404': *6 '503': *128 x-github: @@ -65880,8 +66195,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -65965,7 +66280,7 @@ paths: value: run_id: 42 run_url: https://api.github.com/repos/octoorg/octocat/actions/runs/42 - '403': *453 + '403': *456 '404': *6 '409': description: Response if there is already a validation run in progress with @@ -66030,8 +66345,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -66039,7 +66354,7 @@ paths: schema: type: object properties: - commit_sha: *467 + commit_sha: *470 ref: type: string description: |- @@ -66099,7 +66414,7 @@ paths: schema: type: object properties: - id: *458 + id: *461 url: type: string description: The REST API URL for checking the status of the upload. @@ -66113,7 +66428,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': *453 + '403': *456 '404': *6 '413': description: Payload Too Large if the sarif field is too large @@ -66136,8 +66451,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: - - *359 - - *360 + - *362 + - *363 - name: sarif_id description: The SARIF ID obtained after uploading. in: path @@ -66185,7 +66500,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': *447 + '403': *450 '404': description: Not Found if the sarif id does not match any upload '503': *128 @@ -66210,8 +66525,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -66292,8 +66607,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-codeowners-errors parameters: - - *359 - - *360 + - *362 + - *363 - 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 @@ -66421,8 +66736,8 @@ paths: parameters: - *17 - *19 - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -66438,7 +66753,7 @@ paths: type: integer codespaces: type: array - items: *281 + items: *284 examples: default: value: @@ -66736,8 +67051,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#create-a-codespace-in-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -66801,17 +67116,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '400': *14 '401': *23 '403': *27 @@ -66840,8 +67155,8 @@ paths: parameters: - *17 - *19 - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -66905,8 +67220,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: - - *359 - - *360 + - *362 + - *363 - name: location description: The location to check for available machines. Assigned by IP if not provided. @@ -66943,9 +67258,9 @@ paths: type: integer machines: type: array - items: *469 + items: *472 examples: - default: &693 + default: &696 value: total_count: 2 machines: @@ -66985,8 +67300,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-default-attributes-for-a-codespace parameters: - - *359 - - *360 + - *362 + - *363 - name: ref description: The branch or commit to check for a default devcontainer path. If not specified, the default branch will be checked. @@ -67073,8 +67388,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: - - *359 - - *360 + - *362 + - *363 - 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 @@ -67143,8 +67458,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#list-repository-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -67162,7 +67477,7 @@ paths: type: integer secrets: type: array - items: &473 + items: &476 title: Codespaces Secret description: Set repository secrets for GitHub Codespaces. type: object @@ -67183,7 +67498,7 @@ paths: - created_at - updated_at examples: - default: *470 + default: *473 headers: Link: *37 x-github: @@ -67206,16 +67521,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-public-key parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *471 + schema: *474 examples: - default: *472 + default: *475 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -67235,17 +67550,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#get-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '200': description: Response content: application/json: - schema: *473 + schema: *476 examples: - default: *474 + default: *477 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -67265,8 +67580,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: - - *359 - - *360 + - *362 + - *363 - *200 requestBody: required: true @@ -67319,8 +67634,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/repository-secrets#delete-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '204': @@ -67349,8 +67664,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#list-repository-collaborators parameters: - - *359 - - *360 + - *362 + - *363 - name: affiliation description: Filter collaborators returned by their affiliation. `outside` means all outside collaborators of an organization-owned repository. `direct` @@ -67388,7 +67703,7 @@ paths: application/json: schema: type: array - items: &475 + items: &478 title: Collaborator description: Collaborator type: object @@ -67581,8 +67896,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: - - *359 - - *360 + - *362 + - *363 - *212 responses: '204': @@ -67625,8 +67940,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#add-a-repository-collaborator parameters: - - *359 - - *360 + - *362 + - *363 - *212 requestBody: required: false @@ -67653,7 +67968,7 @@ paths: description: Response when a new invitation is created content: application/json: - schema: &539 + schema: &542 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -67874,8 +68189,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#remove-a-repository-collaborator parameters: - - *359 - - *360 + - *362 + - *363 - *212 responses: '204': @@ -67905,8 +68220,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/collaborators#get-repository-permissions-for-a-user parameters: - - *359 - - *360 + - *362 + - *363 - *212 responses: '200': @@ -67927,7 +68242,7 @@ paths: user: anyOf: - type: 'null' - - *475 + - *478 required: - permission - role_name @@ -67981,8 +68296,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -67992,7 +68307,7 @@ paths: application/json: schema: type: array - items: &476 + items: &479 title: Commit Comment description: Commit Comment type: object @@ -68050,7 +68365,7 @@ paths: - created_at - updated_at examples: - default: &479 + default: &482 value: - html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68109,17 +68424,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#get-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '200': description: Response content: application/json: - schema: *476 + schema: *479 examples: - default: &480 + default: &483 value: html_url: https://github.com/octocat/Hello-World/commit/6dcb09b5b57875f334f61aebed695e2e4193db5e#commitcomment-1 url: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68176,8 +68491,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#update-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -68200,7 +68515,7 @@ paths: description: Response content: application/json: - schema: *476 + schema: *479 examples: default: value: @@ -68251,8 +68566,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#delete-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '204': @@ -68274,8 +68589,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -68302,9 +68617,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -68325,8 +68640,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-commit-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -68359,16 +68674,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -68390,10 +68705,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-commit-comment-reaction parameters: - - *359 - - *360 + - *362 + - *363 - *147 - - *351 + - *354 responses: '204': description: Response @@ -68442,8 +68757,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-commits parameters: - - *359 - - *360 + - *362 + - *363 - name: sha description: 'SHA or branch to start listing commits from. Default: the repository’s default branch (usually `main`).' @@ -68499,9 +68814,9 @@ paths: application/json: schema: type: array - items: *477 + items: *480 examples: - default: &587 + default: &590 value: - url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -68595,9 +68910,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#list-branches-for-head-commit parameters: - - *359 - - *360 - - &478 + - *362 + - *363 + - &481 name: commit_sha description: The SHA of the commit. in: path @@ -68669,9 +68984,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#list-commit-comments parameters: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 - *17 - *19 responses: @@ -68681,9 +68996,9 @@ paths: application/json: schema: type: array - items: *476 + items: *479 examples: - default: *479 + default: *482 headers: Link: *37 x-github: @@ -68711,9 +69026,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/comments#create-a-commit-comment parameters: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 requestBody: required: true content: @@ -68748,9 +69063,9 @@ paths: description: Response content: application/json: - schema: *476 + schema: *479 examples: - default: *480 + default: *483 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/comments/1 @@ -68778,9 +69093,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: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 - *17 - *19 responses: @@ -68790,7 +69105,7 @@ paths: application/json: schema: type: array - items: &578 + items: &581 title: Pull Request Simple description: Pull Request Simple type: object @@ -68910,7 +69225,7 @@ paths: milestone: anyOf: - type: 'null' - - *481 + - *484 active_lock_reason: type: - string @@ -69009,7 +69324,7 @@ paths: _links: type: object properties: - comments: &482 + comments: &485 title: Link description: Hypermedia Link type: object @@ -69018,13 +69333,13 @@ paths: type: string required: - href - commits: *482 - statuses: *482 - html: *482 - issue: *482 - review_comments: *482 - review_comment: *482 - self: *482 + commits: *485 + statuses: *485 + html: *485 + issue: *485 + review_comments: *485 + review_comment: *485 + self: *485 required: - comments - commits @@ -69035,7 +69350,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: &580 + auto_merge: &583 title: Auto merge description: The status of auto merging a pull request. type: @@ -69100,7 +69415,7 @@ paths: - author_association - auto_merge examples: - default: &579 + default: &582 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -69637,11 +69952,11 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#get-a-commit parameters: - - *359 - - *360 + - *362 + - *363 - *19 - *17 - - &483 + - &486 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)" @@ -69656,9 +69971,9 @@ paths: description: Response content: application/json: - schema: *477 + schema: *480 examples: - default: &566 + default: &569 value: url: https://api.github.com/repos/octocat/Hello-World/commits/6dcb09b5b57875f334f61aebed695e2e4193db5e sha: 6dcb09b5b57875f334f61aebed695e2e4193db5e @@ -69771,11 +70086,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: - - *359 - - *360 - - *483 - - *484 - - *485 + - *362 + - *363 + - *486 + - *487 + - *488 - name: filter description: Filters check runs by their `completed_at` timestamp. `latest` returns the most recent check runs. @@ -69809,9 +70124,9 @@ paths: type: integer check_runs: type: array - items: *432 + items: *435 examples: - default: *486 + default: *489 headers: Link: *37 x-github: @@ -69836,9 +70151,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: - - *359 - - *360 - - *483 + - *362 + - *363 + - *486 - name: app_id description: Filters check suites by GitHub App `id`. in: query @@ -69846,7 +70161,7 @@ paths: schema: type: integer example: 1 - - *484 + - *487 - *17 - *19 responses: @@ -69864,7 +70179,7 @@ paths: type: integer check_suites: type: array - items: *436 + items: *439 examples: default: value: @@ -70064,9 +70379,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: - - *359 - - *360 - - *483 + - *362 + - *363 + - *486 - *17 - *19 responses: @@ -70268,9 +70583,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#list-commit-statuses-for-a-reference parameters: - - *359 - - *360 - - *483 + - *362 + - *363 + - *486 - *17 - *19 responses: @@ -70280,7 +70595,7 @@ paths: application/json: schema: type: array - items: &641 + items: &644 title: Status description: The status of a commit. type: object @@ -70361,7 +70676,7 @@ paths: site_admin: false headers: Link: *37 - '301': *373 + '301': *376 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -70389,8 +70704,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/community#get-community-profile-metrics parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -70423,11 +70738,11 @@ paths: code_of_conduct: anyOf: - type: 'null' - - *487 + - *490 code_of_conduct_file: anyOf: - type: 'null' - - &488 + - &491 title: Community Health File type: object properties: @@ -70447,19 +70762,19 @@ paths: contributing: anyOf: - type: 'null' - - *488 + - *491 readme: anyOf: - type: 'null' - - *488 + - *491 issue_template: anyOf: - type: 'null' - - *488 + - *491 pull_request_template: anyOf: - type: 'null' - - *488 + - *491 required: - code_of_conduct - code_of_conduct_file @@ -70588,8 +70903,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/commits#compare-two-commits parameters: - - *359 - - *360 + - *362 + - *363 - *19 - *17 - name: basehead @@ -70637,8 +70952,8 @@ paths: format: uri examples: - https://github.com/octocat/Hello-World/compare/master...topic.patch - base_commit: *477 - merge_base_commit: *477 + base_commit: *480 + merge_base_commit: *480 status: type: string enum: @@ -70662,10 +70977,10 @@ paths: - 6 commits: type: array - items: *477 + items: *480 files: type: array - items: *489 + items: *492 required: - url - html_url @@ -70951,8 +71266,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-repository-content parameters: - - *359 - - *360 + - *362 + - *363 - name: path description: path parameter in: path @@ -71103,7 +71418,7 @@ paths: - type - url examples: - response-if-content-is-a-file: &490 + response-if-content-is-a-file: &493 summary: Response if content is a file value: type: file @@ -71240,7 +71555,7 @@ paths: - size - type - url - - &592 + - &595 title: Content File description: Content File type: object @@ -71458,7 +71773,7 @@ paths: - url - submodule_git_url examples: - response-if-content-is-a-file: *490 + response-if-content-is-a-file: *493 response-if-content-is-a-directory: summary: Response if content is a directory and the application/json media type is requested @@ -71527,7 +71842,7 @@ paths: html: https://github.com/jquery/qunit/tree/6ca3721222109997540bd6d9ccd396902e0ad2f9 '404': *6 '403': *27 - '302': *491 + '302': *494 '304': *35 x-github: githubCloudOnly: false @@ -71550,8 +71865,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#create-or-update-file-contents parameters: - - *359 - - *360 + - *362 + - *363 - name: path description: path parameter in: path @@ -71646,7 +71961,7 @@ paths: description: Response content: application/json: - schema: &492 + schema: &495 title: File Commit description: File Commit type: object @@ -71802,7 +72117,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: example-for-creating-a-file: value: @@ -71856,7 +72171,7 @@ paths: schema: oneOf: - *3 - - &521 + - &524 description: Repository rule violation was detected type: object properties: @@ -71877,7 +72192,7 @@ paths: items: type: object properties: - placeholder_id: &633 + placeholder_id: &636 description: The ID of the push protection bypass placeholder. This value is returned on any push protected routes. @@ -71909,8 +72224,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#delete-a-file parameters: - - *359 - - *360 + - *362 + - *363 - name: path description: path parameter in: path @@ -71971,7 +72286,7 @@ paths: description: Response content: application/json: - schema: *492 + schema: *495 examples: default: value: @@ -72026,8 +72341,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-contributors parameters: - - *359 - - *360 + - *362 + - *363 - name: anon description: Set to `1` or `true` to include anonymous contributors in results. in: query @@ -72151,8 +72466,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#list-dependabot-alerts-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *240 - *241 - *242 @@ -72194,7 +72509,7 @@ paths: application/json: schema: type: array - items: &495 + items: &498 type: object description: A Dependabot alert. properties: @@ -72244,7 +72559,7 @@ paths: - direct - transitive - - security_advisory: *493 + security_advisory: *496 security_vulnerability: *100 url: *101 html_url: *102 @@ -72275,7 +72590,7 @@ paths: dismissal. maxLength: 280 fixed_at: *106 - auto_dismissed_at: *494 + auto_dismissed_at: *497 required: - number - state @@ -72505,9 +72820,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#get-a-dependabot-alert parameters: - - *359 - - *360 - - &496 + - *362 + - *363 + - &499 name: alert_number in: path description: |- @@ -72522,7 +72837,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *498 examples: default: value: @@ -72635,9 +72950,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/alerts#update-a-dependabot-alert parameters: - - *359 - - *360 - - *496 + - *362 + - *363 + - *499 requestBody: required: true content: @@ -72682,7 +72997,7 @@ paths: description: Response content: application/json: - schema: *495 + schema: *498 examples: default: value: @@ -72811,8 +73126,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#list-repository-secrets parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -72830,7 +73145,7 @@ paths: type: integer secrets: type: array - items: &499 + items: &502 title: Dependabot Secret description: Set secrets for Dependabot. type: object @@ -72884,16 +73199,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-public-key parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *497 + schema: *500 examples: - default: *498 + default: *501 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -72913,15 +73228,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#get-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '200': description: Response content: application/json: - schema: *499 + schema: *502 examples: default: value: @@ -72947,8 +73262,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#create-or-update-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 requestBody: required: true @@ -73001,8 +73316,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/dependabot/secrets#delete-a-repository-secret parameters: - - *359 - - *360 + - *362 + - *363 - *200 responses: '204': @@ -73025,8 +73340,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: - - *359 - - *360 + - *362 + - *363 - 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 @@ -73200,8 +73515,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -73461,8 +73776,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -73545,7 +73860,7 @@ paths: - version - url additionalProperties: false - metadata: &500 + metadata: &503 title: metadata description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -73584,7 +73899,7 @@ paths: examples: - "/src/build/package-lock.json" additionalProperties: false - metadata: *500 + metadata: *503 resolved: type: object description: A collection of resolved package dependencies. @@ -73598,7 +73913,7 @@ paths: pattern: "^pkg" examples: - pkg:/npm/%40actions/http-client@1.0.11 - metadata: *500 + metadata: *503 relationship: type: string description: A notation of whether a dependency is requested @@ -73731,8 +74046,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#list-deployments parameters: - - *359 - - *360 + - *362 + - *363 - name: sha description: The SHA recorded at creation time. in: query @@ -73773,9 +74088,9 @@ paths: application/json: schema: type: array - items: *501 + items: *504 examples: - default: *502 + default: *505 headers: Link: *37 x-github: @@ -73841,8 +74156,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#create-a-deployment parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -73924,7 +74239,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: simple-example: summary: Simple example @@ -73997,9 +74312,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#get-a-deployment parameters: - - *359 - - *360 - - &503 + - *362 + - *363 + - &506 name: deployment_id description: deployment_id parameter in: path @@ -74011,7 +74326,7 @@ paths: description: Response content: application/json: - schema: *501 + schema: *504 examples: default: value: @@ -74076,9 +74391,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/deployments#delete-a-deployment parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 responses: '204': description: Response @@ -74100,9 +74415,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#list-deployment-statuses parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 - *17 - *19 responses: @@ -74112,7 +74427,7 @@ paths: application/json: schema: type: array - items: &504 + items: &507 title: Deployment Status description: The status of a deployment. type: object @@ -74276,9 +74591,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#create-a-deployment-status parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 requestBody: required: true content: @@ -74353,9 +74668,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: &505 + default: &508 value: url: https://api.github.com/repos/octocat/example/deployments/42/statuses/1 id: 1 @@ -74411,9 +74726,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/statuses#get-a-deployment-status parameters: - - *359 - - *360 - - *503 + - *362 + - *363 + - *506 - name: status_id in: path required: true @@ -74424,9 +74739,9 @@ paths: description: Response content: application/json: - schema: *504 + schema: *507 examples: - default: *505 + default: *508 '404': *6 x-github: githubCloudOnly: false @@ -74451,8 +74766,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#create-a-repository-dispatch-event parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -74509,8 +74824,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#list-environments parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -74528,7 +74843,7 @@ paths: - 5 environments: type: array - items: &507 + items: &510 title: Environment description: Details of a deployment environment type: object @@ -74590,7 +74905,7 @@ paths: type: string examples: - wait_timer - wait_timer: &509 + wait_timer: &512 type: integer description: The amount of time to delay a job after the job is initially triggered. The time (in minutes) @@ -74632,7 +74947,7 @@ paths: items: type: object properties: - type: *506 + type: *509 reviewer: anyOf: - *4 @@ -74659,7 +74974,7 @@ paths: - id - node_id - type - deployment_branch_policy: &510 + deployment_branch_policy: &513 type: - object - 'null' @@ -74776,9 +75091,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#get-an-environment parameters: - - *359 - - *360 - - &508 + - *362 + - *363 + - &511 name: environment_name in: path required: true @@ -74791,9 +75106,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: &511 + default: &514 value: id: 161088068 node_id: MDExOkVudmlyb25tZW50MTYxMDg4MDY4 @@ -74877,9 +75192,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#create-or-update-an-environment parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 requestBody: required: false content: @@ -74889,7 +75204,7 @@ paths: - object - 'null' properties: - wait_timer: *509 + wait_timer: *512 prevent_self_review: type: boolean description: Whether or not a user who created the job is prevented @@ -74908,14 +75223,14 @@ paths: items: type: object properties: - type: *506 + type: *509 id: type: integer description: The id of the user or team who can review the deployment examples: - 4532992 - deployment_branch_policy: *510 + deployment_branch_policy: *513 additionalProperties: false examples: default: @@ -74935,9 +75250,9 @@ paths: description: Response content: application/json: - schema: *507 + schema: *510 examples: - default: *511 + default: *514 '422': description: Validation error when the environment name is invalid or when `protected_branches` and `custom_branch_policies` in `deployment_branch_policy` @@ -74961,9 +75276,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/environments#delete-an-environment parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 responses: '204': description: Default response @@ -74988,9 +75303,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#list-deployment-branch-policies parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *17 - *19 responses: @@ -75009,7 +75324,7 @@ paths: - 2 branch_policies: type: array - items: &512 + items: &515 title: Deployment branch policy description: Details of a deployment branch or tag policy. type: object @@ -75070,9 +75385,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#create-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 requestBody: required: true content: @@ -75120,9 +75435,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: - example-wildcard: &513 + example-wildcard: &516 value: id: 364662 node_id: MDE2OkdhdGVCcmFuY2hQb2xpY3kzNjQ2NjI= @@ -75164,10 +75479,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#get-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 - - &514 + - *362 + - *363 + - *511 + - &517 name: branch_policy_id in: path required: true @@ -75179,9 +75494,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: - default: *513 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75200,10 +75515,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#update-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 - - *514 + - *362 + - *363 + - *511 + - *517 requestBody: required: true content: @@ -75232,9 +75547,9 @@ paths: description: Response content: application/json: - schema: *512 + schema: *515 examples: - default: *513 + default: *516 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75253,10 +75568,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deployments/branch-policies#delete-a-deployment-branch-policy parameters: - - *359 - - *360 - - *508 - - *514 + - *362 + - *363 + - *511 + - *517 responses: '204': description: Response @@ -75281,9 +75596,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: - - *508 - - *360 - - *359 + - *511 + - *363 + - *362 responses: '200': description: List of deployment protection rules @@ -75300,7 +75615,7 @@ paths: - 10 custom_deployment_protection_rules: type: array - items: &515 + items: &518 title: Deployment protection rule description: Deployment protection rule type: object @@ -75322,7 +75637,7 @@ paths: for the environment. examples: - true - app: &516 + app: &519 title: Custom deployment protection rule app description: A GitHub App that is providing a custom deployment protection rule. @@ -75425,9 +75740,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: - - *508 - - *360 - - *359 + - *511 + - *363 + - *362 requestBody: content: application/json: @@ -75448,9 +75763,9 @@ paths: description: The enabled custom deployment protection rule content: application/json: - schema: *515 + schema: *518 examples: - default: &517 + default: &520 value: id: 3 node_id: IEH37kRlcGxveW1lbnRTdGF0ddiv @@ -75485,9 +75800,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: - - *508 - - *360 - - *359 + - *511 + - *363 + - *362 - *19 - *17 responses: @@ -75507,7 +75822,7 @@ paths: - 35 available_custom_deployment_protection_rule_integrations: type: array - items: *516 + items: *519 examples: default: value: @@ -75542,10 +75857,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: - - *359 - - *360 - - *508 - - &518 + - *362 + - *363 + - *511 + - &521 name: protection_rule_id description: The unique identifier of the protection rule. in: path @@ -75557,9 +75872,9 @@ paths: description: Response content: application/json: - schema: *515 + schema: *518 examples: - default: *517 + default: *520 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75580,10 +75895,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: - - *508 - - *360 - - *359 - - *518 + - *511 + - *363 + - *362 + - *521 responses: '204': description: Response @@ -75609,9 +75924,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#list-environment-secrets parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *17 - *19 responses: @@ -75629,9 +75944,9 @@ paths: type: integer secrets: type: array - items: *396 + items: *399 examples: - default: *397 + default: *400 headers: Link: *37 x-github: @@ -75656,17 +75971,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-public-key parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 responses: '200': description: Response content: application/json: - schema: *398 + schema: *401 examples: - default: *399 + default: *402 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75688,18 +76003,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#get-an-environment-secret parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *200 responses: '200': description: Response content: application/json: - schema: *396 + schema: *399 examples: - default: *519 + default: *522 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75721,9 +76036,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#create-or-update-an-environment-secret parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *200 requestBody: required: true @@ -75781,9 +76096,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/secrets#delete-an-environment-secret parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *200 responses: '204': @@ -75809,10 +76124,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#list-environment-variables parameters: - - *359 - - *360 - - *508 - - *383 + - *362 + - *363 + - *511 + - *386 - *19 responses: '200': @@ -75829,9 +76144,9 @@ paths: type: integer variables: type: array - items: *400 + items: *403 examples: - default: *401 + default: *404 headers: Link: *37 x-github: @@ -75854,9 +76169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#create-an-environment-variable parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 requestBody: required: true content: @@ -75908,18 +76223,18 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#get-an-environment-variable parameters: - - *359 - - *360 - - *508 + - *362 + - *363 + - *511 - *203 responses: '200': description: Response content: application/json: - schema: *400 + schema: *403 examples: - default: *520 + default: *523 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -75940,10 +76255,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#update-an-environment-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 - - *508 + - *511 requestBody: required: true content: @@ -75985,10 +76300,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/actions/variables#delete-an-environment-variable parameters: - - *359 - - *360 + - *362 + - *363 - *203 - - *508 + - *511 responses: '204': description: Response @@ -76010,8 +76325,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/events#list-repository-events parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -76088,8 +76403,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#list-forks parameters: - - *359 - - *360 + - *362 + - *363 - name: sort description: The sort order. `stargazers` will sort by star count. in: query @@ -76248,8 +76563,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/forks#create-a-fork parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -76282,9 +76597,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 '400': *14 '422': *15 '403': *27 @@ -76305,8 +76620,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#create-a-blob parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -76366,7 +76681,7 @@ paths: schema: oneOf: - *173 - - *521 + - *524 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -76391,8 +76706,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/blobs#get-a-blob parameters: - - *359 - - *360 + - *362 + - *363 - name: file_sha in: path required: true @@ -76492,8 +76807,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#create-a-commit parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -76602,7 +76917,7 @@ paths: description: Response content: application/json: - schema: &522 + schema: &525 title: Git Commit description: Low-level Git commit operations within a repository type: object @@ -76829,15 +77144,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/commits#get-a-commit-object parameters: - - *359 - - *360 - - *478 + - *362 + - *363 + - *481 responses: '200': description: Response content: application/json: - schema: *522 + schema: *525 examples: default: value: @@ -76893,9 +77208,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#list-matching-references parameters: - - *359 - - *360 - - &523 + - *362 + - *363 + - &526 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. @@ -76912,7 +77227,7 @@ paths: application/json: schema: type: array - items: &524 + items: &527 title: Git Reference description: Git references within a repository type: object @@ -76988,17 +77303,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference parameters: - - *359 - - *360 - - *523 + - *362 + - *363 + - *526 responses: '200': description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: &525 + default: &528 value: ref: refs/heads/featureA node_id: MDM6UmVmcmVmcy9oZWFkcy9mZWF0dXJlQQ== @@ -77027,8 +77342,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#create-a-reference parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -77057,9 +77372,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *525 + default: *528 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/git/refs/heads/featureA @@ -77085,9 +77400,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#update-a-reference parameters: - - *359 - - *360 - - *523 + - *362 + - *363 + - *526 requestBody: required: true content: @@ -77116,9 +77431,9 @@ paths: description: Response content: application/json: - schema: *524 + schema: *527 examples: - default: *525 + default: *528 '422': *15 '409': *92 x-github: @@ -77136,9 +77451,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/refs#delete-a-reference parameters: - - *359 - - *360 - - *523 + - *362 + - *363 + - *526 responses: '204': description: Response @@ -77191,8 +77506,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#create-a-tag-object parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -77259,7 +77574,7 @@ paths: description: Response content: application/json: - schema: &527 + schema: &530 title: Git Tag description: Metadata for a Git tag type: object @@ -77315,7 +77630,7 @@ paths: - sha - type - url - verification: *526 + verification: *529 required: - sha - url @@ -77325,7 +77640,7 @@ paths: - tag - message examples: - default: &528 + default: &531 value: node_id: MDM6VGFnOTQwYmQzMzYyNDhlZmFlMGY5ZWU1YmM3YjJkNWM5ODU4ODdiMTZhYw== tag: v0.0.1 @@ -77398,8 +77713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/tags#get-a-tag parameters: - - *359 - - *360 + - *362 + - *363 - name: tag_sha in: path required: true @@ -77410,9 +77725,9 @@ paths: description: Response content: application/json: - schema: *527 + schema: *530 examples: - default: *528 + default: *531 '404': *6 '409': *92 x-github: @@ -77436,8 +77751,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#create-a-tree parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -77511,7 +77826,7 @@ paths: description: Response content: application/json: - schema: &529 + schema: &532 title: Git Tree description: The hierarchy between files in a Git repository. type: object @@ -77629,8 +77944,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/git/trees#get-a-tree parameters: - - *359 - - *360 + - *362 + - *363 - name: tree_sha description: The SHA1 value or ref (branch or tag) name of the tree. in: path @@ -77653,7 +77968,7 @@ paths: description: Response content: application/json: - schema: *529 + schema: *532 examples: default-response: summary: Default response @@ -77712,8 +78027,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-repository-webhooks parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -77723,7 +78038,7 @@ paths: application/json: schema: type: array - items: &530 + items: &533 title: Webhook description: Webhooks for repositories. type: object @@ -77786,7 +78101,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &767 + last_response: &770 title: Hook Response type: object properties: @@ -77863,8 +78178,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#create-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -77917,9 +78232,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: &531 + default: &534 value: type: Repository id: 12345678 @@ -77967,17 +78282,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '200': description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: *531 + default: *534 '404': *6 x-github: githubCloudOnly: false @@ -77997,8 +78312,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 requestBody: required: true @@ -78044,9 +78359,9 @@ paths: description: Response content: application/json: - schema: *530 + schema: *533 examples: - default: *531 + default: *534 '422': *15 '404': *6 x-github: @@ -78067,8 +78382,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#delete-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '204': @@ -78093,8 +78408,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-webhook-configuration-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '200': @@ -78122,8 +78437,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#update-a-webhook-configuration-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *254 requestBody: required: false @@ -78168,8 +78483,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#list-deliveries-for-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 - *17 - *255 @@ -78201,8 +78516,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#get-a-delivery-for-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 - *16 responses: @@ -78231,8 +78546,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#redeliver-a-delivery-for-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 - *16 responses: @@ -78256,8 +78571,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#ping-a-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '204': @@ -78283,8 +78598,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/webhooks#test-the-push-repository-webhook parameters: - - *359 - - *360 + - *362 + - *363 - *254 responses: '204': @@ -78343,14 +78658,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-an-import-status parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: &532 + schema: &535 title: Import description: A repository import from an external source. type: object @@ -78457,7 +78772,7 @@ paths: - html_url - authors_url examples: - default: &535 + default: &538 value: vcs: subversion use_lfs: true @@ -78473,7 +78788,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': &533 + '503': &536 description: Unavailable due to service under maintenance. content: application/json: @@ -78502,8 +78817,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#start-an-import parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -78551,7 +78866,7 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: default: value: @@ -78576,7 +78891,7 @@ paths: type: string '422': *15 '404': *6 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78604,8 +78919,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-an-import parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -78657,7 +78972,7 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: example-1: summary: Example 1 @@ -78705,7 +79020,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': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78728,12 +79043,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#cancel-an-import parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78759,9 +79074,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-commit-authors parameters: - - *359 - - *360 - - &716 + - *362 + - *363 + - &719 name: since description: A user ID. Only return users with an ID greater than this ID. in: query @@ -78775,7 +79090,7 @@ paths: application/json: schema: type: array - items: &534 + items: &537 title: Porter Author description: Porter Author type: object @@ -78829,7 +79144,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': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78854,8 +79169,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#map-a-commit-author parameters: - - *359 - - *360 + - *362 + - *363 - name: author_id in: path required: true @@ -78885,7 +79200,7 @@ paths: description: Response content: application/json: - schema: *534 + schema: *537 examples: default: value: @@ -78898,7 +79213,7 @@ paths: import_url: https://api.github.com/repos/octocat/socm/import '422': *15 '404': *6 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78922,8 +79237,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#get-large-files parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -78964,7 +79279,7 @@ paths: path: foo/bar/3 oid: c20ad4d76fe97759aa27a0c99bff6710 size: 12582912 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -78992,8 +79307,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/source-imports#update-git-lfs-preference parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -79020,11 +79335,11 @@ paths: description: Response content: application/json: - schema: *532 + schema: *535 examples: - default: *535 + default: *538 '422': *15 - '503': *533 + '503': *536 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -79047,8 +79362,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -79056,8 +79371,8 @@ paths: application/json: schema: *20 examples: - default: *536 - '301': *373 + default: *539 + '301': *376 '404': *6 x-github: githubCloudOnly: false @@ -79077,8 +79392,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#get-interaction-restrictions-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -79091,7 +79406,7 @@ paths: properties: {} additionalProperties: false examples: - default: &538 + default: &541 value: limit: collaborators_only origin: repository @@ -79116,13 +79431,13 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#set-interaction-restrictions-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: application/json: - schema: *537 + schema: *540 examples: default: summary: Example request body @@ -79136,7 +79451,7 @@ paths: application/json: schema: *272 examples: - default: *538 + default: *541 '409': description: Response x-github: @@ -79158,8 +79473,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/interactions/repos#remove-interaction-restrictions-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -79182,8 +79497,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#list-repository-invitations parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -79193,9 +79508,9 @@ paths: application/json: schema: type: array - items: *539 + items: *542 examples: - default: &709 + default: &712 value: - id: 1 repository: @@ -79326,8 +79641,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#update-a-repository-invitation parameters: - - *359 - - *360 + - *362 + - *363 - *276 requestBody: required: false @@ -79357,7 +79672,7 @@ paths: description: Response content: application/json: - schema: *539 + schema: *542 examples: default: value: @@ -79488,8 +79803,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/collaborators/invitations#delete-a-repository-invitation parameters: - - *359 - - *360 + - *362 + - *363 - *276 responses: '204': @@ -79521,8 +79836,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#list-repository-issues parameters: - - *359 - - *360 + - *362 + - *363 - 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 @@ -79550,6 +79865,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -79562,7 +79885,7 @@ paths: required: false schema: type: string - - *278 + - *281 - name: sort description: What to sort results by. in: query @@ -79587,7 +79910,7 @@ paths: type: array items: *148 examples: - default: &548 + default: &551 value: - id: 1 node_id: MDU6SXNzdWUx @@ -79735,7 +80058,7 @@ paths: state_reason: completed headers: Link: *37 - '301': *373 + '301': *376 '422': *15 '404': *6 x-github: @@ -79764,8 +80087,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#create-an-issue parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -79829,6 +80152,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -79848,7 +80178,7 @@ paths: application/json: schema: *148 examples: - default: &543 + default: &546 value: id: 1 node_id: MDU6SXNzdWUx @@ -80004,7 +80334,7 @@ paths: '422': *15 '503': *128 '404': *6 - '410': *370 + '410': *373 x-github: triggersNotification: true githubCloudOnly: false @@ -80032,8 +80362,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *157 - name: direction description: Either `asc` or `desc`. Ignored without the `sort` parameter. @@ -80054,9 +80384,9 @@ paths: application/json: schema: type: array - items: *540 + items: *543 examples: - default: &545 + default: &548 value: - id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80114,17 +80444,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '200': description: Response content: application/json: - schema: *540 + schema: *543 examples: - default: &541 + default: &544 value: id: 1 node_id: MDEyOklzc3VlQ29tbWVudDE= @@ -80178,8 +80508,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#update-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -80202,9 +80532,9 @@ paths: description: Response content: application/json: - schema: *540 + schema: *543 examples: - default: *541 + default: *544 '422': *15 x-github: githubCloudOnly: false @@ -80222,8 +80552,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#delete-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 responses: '204': @@ -80244,8 +80574,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -80272,9 +80602,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -80295,8 +80625,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue-comment parameters: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -80329,16 +80659,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -80360,10 +80690,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-comment-reaction parameters: - - *359 - - *360 + - *362 + - *363 - *147 - - *351 + - *354 responses: '204': description: Response @@ -80383,8 +80713,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -80394,7 +80724,7 @@ paths: application/json: schema: type: array - items: &542 + items: &545 title: Issue Event description: Issue Event type: object @@ -80733,8 +81063,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#get-an-issue-event parameters: - - *359 - - *360 + - *362 + - *363 - name: event_id in: path required: true @@ -80745,7 +81075,7 @@ paths: description: Response content: application/json: - schema: *542 + schema: *545 examples: default: value: @@ -80938,7 +81268,7 @@ paths: author_association: COLLABORATOR state_reason: completed '404': *6 - '410': *370 + '410': *373 '403': *27 x-github: githubCloudOnly: false @@ -80972,9 +81302,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue parameters: - - *359 - - *360 - - &544 + - *362 + - *363 + - &547 name: issue_number description: The number that identifies the issue. in: path @@ -80988,10 +81318,10 @@ paths: application/json: schema: *148 examples: - default: *543 - '301': *373 + default: *546 + '301': *376 '404': *6 - '410': *370 + '410': *373 '304': *35 x-github: githubCloudOnly: false @@ -81016,9 +81346,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#update-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -81110,6 +81440,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -81128,13 +81466,13 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 '422': *15 '503': *128 '403': *27 - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81152,9 +81490,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#add-assignees-to-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -81182,7 +81520,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81198,9 +81536,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/assignees#remove-assignees-from-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: content: application/json: @@ -81227,7 +81565,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81249,9 +81587,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: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - name: assignee in: path required: true @@ -81291,9 +81629,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#list-issue-comments parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *138 - *17 - *19 @@ -81304,13 +81642,13 @@ paths: application/json: schema: type: array - items: *540 + items: *543 examples: - default: *545 + default: *548 headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -81339,9 +81677,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#create-an-issue-comment parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -81363,16 +81701,16 @@ paths: description: Response content: application/json: - schema: *540 + schema: *543 examples: - default: *541 + default: *544 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/comments/1 schema: type: string '403': *27 - '410': *370 + '410': *373 '422': *15 '404': *6 x-github: @@ -81392,9 +81730,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/events#list-issue-events parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -81408,7 +81746,7 @@ paths: title: Issue Event for Issue description: Issue Event for Issue anyOf: - - &549 + - &552 title: Labeled Issue Event description: Labeled Issue Event type: object @@ -81457,7 +81795,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &550 + - &553 title: Unlabeled Issue Event description: Unlabeled Issue Event type: object @@ -81585,7 +81923,7 @@ paths: - performed_via_github_app - assignee - assigner - - &551 + - &554 title: Milestoned Issue Event description: Milestoned Issue Event type: object @@ -81631,7 +81969,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &552 + - &555 title: Demilestoned Issue Event description: Demilestoned Issue Event type: object @@ -81677,7 +82015,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &553 + - &556 title: Renamed Issue Event description: Renamed Issue Event type: object @@ -81726,7 +82064,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &554 + - &557 title: Review Requested Issue Event description: Review Requested Issue Event type: object @@ -81768,7 +82106,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &555 + - &558 title: Review Request Removed Issue Event description: Review Request Removed Issue Event type: object @@ -81810,7 +82148,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &556 + - &559 title: Review Dismissed Issue Event description: Review Dismissed Issue Event type: object @@ -81866,7 +82204,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &557 + - &560 title: Locked Issue Event description: Locked Issue Event type: object @@ -81911,7 +82249,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &558 + - &561 title: Added to Project Issue Event description: Added to Project Issue Event type: object @@ -81972,7 +82310,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &559 + - &562 title: Moved Column in Project Issue Event description: Moved Column in Project Issue Event type: object @@ -82033,7 +82371,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &560 + - &563 title: Removed from Project Issue Event description: Removed from Project Issue Event type: object @@ -82094,7 +82432,7 @@ paths: - commit_url - created_at - performed_via_github_app - - &561 + - &564 title: Converted Note to Issue Issue Event description: Converted Note to Issue Issue Event type: object @@ -82187,7 +82525,7 @@ paths: color: red headers: Link: *37 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82204,9 +82542,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -82216,7 +82554,7 @@ paths: application/json: schema: type: array - items: &546 + items: &549 title: Label description: Color-coded labels help you categorize and filter your issues (just like labels in Gmail). @@ -82271,7 +82609,7 @@ paths: - color - default examples: - default: &547 + default: &550 value: - id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -82289,9 +82627,9 @@ paths: default: false headers: Link: *37 - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82308,9 +82646,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#add-labels-to-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -82369,12 +82707,12 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 - '301': *373 + default: *550 + '301': *376 '404': *6 - '410': *370 + '410': *373 '422': *15 x-github: githubCloudOnly: false @@ -82391,9 +82729,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#set-labels-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -82453,12 +82791,12 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 - '301': *373 + default: *550 + '301': *376 '404': *6 - '410': *370 + '410': *373 '422': *15 x-github: githubCloudOnly: false @@ -82475,15 +82813,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-all-labels-from-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 responses: '204': description: Response - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82502,9 +82840,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#remove-a-label-from-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - name: name in: path required: true @@ -82517,7 +82855,7 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: default: value: @@ -82528,9 +82866,9 @@ paths: description: Something isn't working color: f29513 default: true - '301': *373 + '301': *376 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82550,9 +82888,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#lock-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: false content: @@ -82581,7 +82919,7 @@ paths: '204': description: Response '403': *27 - '410': *370 + '410': *373 '404': *6 '422': *15 x-github: @@ -82599,9 +82937,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#unlock-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 responses: '204': description: Response @@ -82623,9 +82961,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - 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. @@ -82651,13 +82989,13 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82675,9 +83013,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82709,16 +83047,16 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -82740,10 +83078,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-an-issue-reaction parameters: - - *359 - - *360 - - *544 - - *351 + - *362 + - *363 + - *547 + - *354 responses: '204': description: Response @@ -82772,9 +83110,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#remove-sub-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82798,7 +83136,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/1/sub-issue @@ -82831,9 +83169,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#list-sub-issues parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -82845,11 +83183,11 @@ paths: type: array items: *148 examples: - default: *548 + default: *551 headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -82877,9 +83215,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#add-sub-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82908,14 +83246,14 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 headers: Location: example: https://api.github.com/repos/octocat/Hello-World/issues/sub-issues/1 schema: type: string '403': *27 - '410': *370 + '410': *373 '422': *15 '404': *6 x-github: @@ -82935,9 +83273,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/sub-issues#reprioritize-sub-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 requestBody: required: true content: @@ -82970,7 +83308,7 @@ paths: application/json: schema: *148 examples: - default: *543 + default: *546 '403': *27 '404': *6 '422': *7 @@ -82992,9 +83330,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/timeline#list-timeline-events-for-an-issue parameters: - - *359 - - *360 - - *544 + - *362 + - *363 + - *547 - *17 - *19 responses: @@ -83009,9 +83347,6 @@ paths: description: Timeline Event type: object anyOf: - - *549 - - *550 - - *551 - *552 - *553 - *554 @@ -83022,6 +83357,9 @@ paths: - *559 - *560 - *561 + - *562 + - *563 + - *564 - title: Timeline Comment Event description: Timeline Comment Event type: object @@ -83345,7 +83683,7 @@ paths: type: string comments: type: array - items: &581 + items: &584 title: Pull Request Review Comment description: Pull Request Review Comments are comments on a portion of the Pull Request's diff. @@ -83583,7 +83921,7 @@ paths: type: string comments: type: array - items: *476 + items: *479 - title: Timeline Assigned Issue Event description: Timeline Assigned Issue Event type: object @@ -83858,7 +84196,7 @@ paths: headers: Link: *37 '404': *6 - '410': *370 + '410': *373 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83875,8 +84213,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#list-deploy-keys parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -83886,7 +84224,7 @@ paths: application/json: schema: type: array - items: &562 + items: &565 title: Deploy Key description: An SSH key granting access to a single repository. type: object @@ -83953,8 +84291,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#create-a-deploy-key parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -83990,9 +84328,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *565 examples: - default: &563 + default: &566 value: id: 1 key: ssh-rsa AAA... @@ -84026,9 +84364,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key parameters: - - *359 - - *360 - - &564 + - *362 + - *363 + - &567 name: key_id description: The unique identifier of the key. in: path @@ -84040,9 +84378,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *565 examples: - default: *563 + default: *566 '404': *6 x-github: githubCloudOnly: false @@ -84060,9 +84398,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#delete-a-deploy-key parameters: - - *359 - - *360 - - *564 + - *362 + - *363 + - *567 responses: '204': description: Response @@ -84082,8 +84420,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#list-labels-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -84093,9 +84431,9 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 + default: *550 headers: Link: *37 '404': *6 @@ -84116,8 +84454,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#create-a-label parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84153,9 +84491,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: &565 + default: &568 value: id: 208045946 node_id: MDU6TGFiZWwyMDgwNDU5NDY= @@ -84187,8 +84525,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#get-a-label parameters: - - *359 - - *360 + - *362 + - *363 - name: name in: path required: true @@ -84199,9 +84537,9 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: - default: *565 + default: *568 '404': *6 x-github: githubCloudOnly: false @@ -84218,8 +84556,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#update-a-label parameters: - - *359 - - *360 + - *362 + - *363 - name: name in: path required: true @@ -84258,7 +84596,7 @@ paths: description: Response content: application/json: - schema: *546 + schema: *549 examples: default: value: @@ -84284,8 +84622,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/labels#delete-a-label parameters: - - *359 - - *360 + - *362 + - *363 - name: name in: path required: true @@ -84311,8 +84649,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-languages parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -84348,8 +84686,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#enable-git-lfs-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '202': *93 '403': @@ -84377,8 +84715,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/lfs#disable-git-lfs-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -84404,9 +84742,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/licenses/licenses#get-the-license-for-a-repository parameters: - - *359 - - *360 - - *454 + - *362 + - *363 + - *457 responses: '200': description: Response @@ -84553,8 +84891,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84619,8 +84957,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/branches/branches#merge-a-branch parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84654,9 +84992,9 @@ paths: description: Successful Response (The resulting merge commit) content: application/json: - schema: *477 + schema: *480 examples: - default: *566 + default: *569 '204': description: Response when already merged '404': @@ -84681,8 +85019,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#list-milestones parameters: - - *359 - - *360 + - *362 + - *363 - name: state description: The state of the milestone. Either `open`, `closed`, or `all`. in: query @@ -84723,7 +85061,7 @@ paths: application/json: schema: type: array - items: *481 + items: *484 examples: default: value: @@ -84779,8 +85117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#create-a-milestone parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -84820,9 +85158,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *484 examples: - default: &567 + default: &570 value: url: https://api.github.com/repos/octocat/Hello-World/milestones/1 html_url: https://github.com/octocat/Hello-World/milestones/v1.0 @@ -84881,9 +85219,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#get-a-milestone parameters: - - *359 - - *360 - - &568 + - *362 + - *363 + - &571 name: milestone_number description: The number that identifies the milestone. in: path @@ -84895,9 +85233,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *484 examples: - default: *567 + default: *570 '404': *6 x-github: githubCloudOnly: false @@ -84914,9 +85252,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#update-a-milestone parameters: - - *359 - - *360 - - *568 + - *362 + - *363 + - *571 requestBody: required: false content: @@ -84954,9 +85292,9 @@ paths: description: Response content: application/json: - schema: *481 + schema: *484 examples: - default: *567 + default: *570 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84972,9 +85310,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/issues/milestones#delete-a-milestone parameters: - - *359 - - *360 - - *568 + - *362 + - *363 + - *571 responses: '204': description: Response @@ -84995,9 +85333,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: - - *359 - - *360 - - *568 + - *362 + - *363 + - *571 - *17 - *19 responses: @@ -85007,9 +85345,9 @@ paths: application/json: schema: type: array - items: *546 + items: *549 examples: - default: *547 + default: *550 headers: Link: *37 x-github: @@ -85028,12 +85366,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: - - *359 - - *360 - - *569 - - *570 + - *362 + - *363 + - *572 + - *573 - *138 - - *571 + - *574 - *17 - *19 responses: @@ -85045,7 +85383,7 @@ paths: type: array items: *160 examples: - default: *572 + default: *575 headers: Link: *37 x-github: @@ -85069,8 +85407,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/notifications#mark-repository-notifications-as-read parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -85128,14 +85466,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-a-apiname-pages-site parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: &573 + schema: &576 title: GitHub Pages description: The configuration for GitHub Pages for a repository. type: object @@ -85279,7 +85617,7 @@ paths: - custom_404 - public examples: - default: &574 + default: &577 value: url: https://api.github.com/repos/github/developer.github.com/pages status: built @@ -85320,8 +85658,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-apiname-pages-site parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -85376,9 +85714,9 @@ paths: description: Response content: application/json: - schema: *573 + schema: *576 examples: - default: *574 + default: *577 '422': *15 '409': *92 x-github: @@ -85401,8 +85739,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -85510,8 +85848,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#delete-a-apiname-pages-site parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -85537,8 +85875,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#list-apiname-pages-builds parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -85548,7 +85886,7 @@ paths: application/json: schema: type: array - items: &575 + items: &578 title: Page Build description: Page Build type: object @@ -85640,8 +85978,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#request-a-apiname-pages-build parameters: - - *359 - - *360 + - *362 + - *363 responses: '201': description: Response @@ -85688,16 +86026,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-latest-pages-build parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: &576 + default: &579 value: url: https://api.github.com/repos/github/developer.github.com/pages/builds/5472601 status: built @@ -85745,8 +86083,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#get-apiname-pages-build parameters: - - *359 - - *360 + - *362 + - *363 - name: build_id in: path required: true @@ -85757,9 +86095,9 @@ paths: description: Response content: application/json: - schema: *575 + schema: *578 examples: - default: *576 + default: *579 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -85779,8 +86117,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#create-a-github-pages-deployment parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -85888,9 +86226,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: - - *359 - - *360 - - &577 + - *362 + - *363 + - &580 name: pages_deployment_id description: The ID of the Pages deployment. You can also give the commit SHA of the deployment. @@ -85948,9 +86286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pages/pages#cancel-a-github-pages-deployment parameters: - - *359 - - *360 - - *577 + - *362 + - *363 + - *580 responses: '204': *114 '404': *6 @@ -85977,8 +86315,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -86273,8 +86611,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Private vulnerability reporting status @@ -86311,8 +86649,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: - - *359 - - *360 + - *362 + - *363 responses: '204': *114 '422': *14 @@ -86333,8 +86671,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: - - *359 - - *360 + - *362 + - *363 responses: '204': *114 '422': *14 @@ -86357,8 +86695,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#list-repository-projects parameters: - - *359 - - *360 + - *362 + - *363 - name: state description: Indicates the state of the projects to return. in: query @@ -86379,7 +86717,7 @@ paths: application/json: schema: type: array - items: *308 + items: *311 examples: default: value: @@ -86419,7 +86757,7 @@ paths: '401': *23 '403': *27 '404': *6 - '410': *370 + '410': *373 '422': *7 x-github: githubCloudOnly: false @@ -86442,8 +86780,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/projects/projects#create-a-repository-project parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -86469,13 +86807,13 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: - default: *369 + default: *372 '401': *23 '403': *27 '404': *6 - '410': *370 + '410': *373 '422': *7 x-github: githubCloudOnly: false @@ -86498,8 +86836,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -86507,7 +86845,7 @@ paths: application/json: schema: type: array - items: *310 + items: *313 examples: default: value: @@ -86538,8 +86876,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -86551,7 +86889,7 @@ paths: type: array description: A list of custom property names and associated values to apply to the repositories. - items: *310 + items: *313 required: - properties examples: @@ -86601,8 +86939,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests parameters: - - *359 - - *360 + - *362 + - *363 - name: state description: Either `open`, `closed`, or `all` to filter by state. in: query @@ -86662,9 +87000,9 @@ paths: application/json: schema: type: array - items: *578 + items: *581 examples: - default: *579 + default: *582 headers: Link: *37 '304': *35 @@ -86696,8 +87034,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#create-a-pull-request parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -86764,7 +87102,7 @@ paths: description: Response content: application/json: - schema: &583 + schema: &586 type: object title: Pull Request description: Pull requests let you tell others about changes you've @@ -86893,7 +87231,7 @@ paths: milestone: anyOf: - type: 'null' - - *481 + - *484 active_lock_reason: type: - string @@ -86948,7 +87286,7 @@ paths: type: - array - 'null' - items: *290 + items: *293 head: type: object properties: @@ -86986,14 +87324,14 @@ paths: _links: type: object properties: - comments: *482 - commits: *482 - statuses: *482 - html: *482 - issue: *482 - review_comments: *482 - review_comment: *482 - self: *482 + comments: *485 + commits: *485 + statuses: *485 + html: *485 + issue: *485 + review_comments: *485 + review_comment: *485 + self: *485 required: - comments - commits @@ -87004,7 +87342,7 @@ paths: - review_comment - self author_association: *135 - auto_merge: *580 + auto_merge: *583 draft: description: Indicates whether or not the pull request is a draft. type: boolean @@ -87106,7 +87444,7 @@ paths: - merged_by - review_comments examples: - default: &584 + default: &587 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/1347 id: 1 @@ -87633,8 +87971,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/comments#list-review-comments-in-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - name: sort in: query required: false @@ -87663,9 +88001,9 @@ paths: application/json: schema: type: array - items: *581 + items: *584 examples: - default: &586 + default: &589 value: - url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87742,17 +88080,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: - - *359 - - *360 + - *362 + - *363 - *147 responses: '200': description: Response content: application/json: - schema: *581 + schema: *584 examples: - default: &582 + default: &585 value: url: https://api.github.com/repos/octocat/Hello-World/pulls/comments/1 pull_request_review_id: 42 @@ -87827,8 +88165,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: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -87851,9 +88189,9 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: - default: *582 + default: *585 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -87869,8 +88207,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: - - *359 - - *360 + - *362 + - *363 - *147 responses: '204': @@ -87892,8 +88230,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: - - *359 - - *360 + - *362 + - *363 - *147 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). @@ -87920,9 +88258,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -87943,8 +88281,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: - - *359 - - *360 + - *362 + - *363 - *147 requestBody: required: true @@ -87977,16 +88315,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -88008,10 +88346,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-pull-request-comment-reaction parameters: - - *359 - - *360 + - *362 + - *363 - *147 - - *351 + - *354 responses: '204': description: Response @@ -88054,9 +88392,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#get-a-pull-request parameters: - - *359 - - *360 - - &585 + - *362 + - *363 + - &588 name: pull_number description: The number that identifies the pull request. in: path @@ -88069,9 +88407,9 @@ paths: to fetch diff and patch formats. content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '304': *35 '404': *6 '406': @@ -88106,9 +88444,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -88150,9 +88488,9 @@ paths: description: Response content: application/json: - schema: *583 + schema: *586 examples: - default: *584 + default: *587 '422': *15 '403': *27 x-github: @@ -88174,9 +88512,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: true content: @@ -88237,17 +88575,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '401': *23 '403': *27 '404': *6 @@ -88277,9 +88615,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *157 - name: direction description: The direction to sort results. Ignored without `sort` parameter. @@ -88300,9 +88638,9 @@ paths: application/json: schema: type: array - items: *581 + items: *584 examples: - default: *586 + default: *589 headers: Link: *37 x-github: @@ -88335,9 +88673,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: true content: @@ -88443,7 +88781,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: example-for-a-multi-line-comment: value: @@ -88531,9 +88869,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *147 requestBody: required: true @@ -88556,7 +88894,7 @@ paths: description: Response content: application/json: - schema: *581 + schema: *584 examples: default: value: @@ -88642,9 +88980,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-commits-on-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *17 - *19 responses: @@ -88654,9 +88992,9 @@ paths: application/json: schema: type: array - items: *477 + items: *480 examples: - default: *587 + default: *590 headers: Link: *37 x-github: @@ -88686,9 +89024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#list-pull-requests-files parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *17 - *19 responses: @@ -88698,7 +89036,7 @@ paths: application/json: schema: type: array - items: *489 + items: *492 examples: default: value: @@ -88736,9 +89074,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 responses: '204': description: Response if pull request has been merged @@ -88761,9 +89099,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#merge-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -88875,9 +89213,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 responses: '200': description: Response @@ -88952,9 +89290,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -88991,7 +89329,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *581 examples: default: value: @@ -89527,9 +89865,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: true content: @@ -89563,7 +89901,7 @@ paths: description: Response content: application/json: - schema: *578 + schema: *581 examples: default: value: @@ -90068,9 +90406,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/reviews#list-reviews-for-a-pull-request parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 - *17 - *19 responses: @@ -90080,7 +90418,7 @@ paths: application/json: schema: type: array - items: &588 + items: &591 title: Pull Request Review description: Pull Request Reviews are reviews on pull requests. type: object @@ -90236,9 +90574,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: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -90328,9 +90666,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: &590 + default: &593 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90393,10 +90731,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: - - *359 - - *360 - - *585 - - &589 + - *362 + - *363 + - *588 + - &592 name: review_id description: The unique identifier of the review. in: path @@ -90408,9 +90746,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: &591 + default: &594 value: id: 80 node_id: MDE3OlB1bGxSZXF1ZXN0UmV2aWV3ODA= @@ -90469,10 +90807,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 requestBody: required: true content: @@ -90495,7 +90833,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: default: value: @@ -90557,18 +90895,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 responses: '200': description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *590 + default: *593 '422': *7 '404': *6 x-github: @@ -90595,10 +90933,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 - *17 - *19 responses: @@ -90696,9 +91034,9 @@ paths: _links: type: object properties: - self: *482 - html: *482 - pull_request: *482 + self: *485 + html: *485 + pull_request: *485 required: - self - html @@ -90849,10 +91187,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 requestBody: required: true content: @@ -90881,7 +91219,7 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: default: value: @@ -90944,10 +91282,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: - - *359 - - *360 - - *585 - - *589 + - *362 + - *363 + - *588 + - *592 requestBody: required: true content: @@ -90982,9 +91320,9 @@ paths: description: Response content: application/json: - schema: *588 + schema: *591 examples: - default: *591 + default: *594 '404': *6 '422': *7 '403': *27 @@ -91006,9 +91344,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/pulls/pulls#update-a-pull-request-branch parameters: - - *359 - - *360 - - *585 + - *362 + - *363 + - *588 requestBody: required: false content: @@ -91072,8 +91410,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#get-a-repository-readme parameters: - - *359 - - *360 + - *362 + - *363 - name: ref description: 'The name of the commit/branch/tag. Default: the repository’s default branch.' @@ -91086,9 +91424,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *595 examples: - default: &593 + default: &596 value: type: file encoding: base64 @@ -91130,8 +91468,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: - - *359 - - *360 + - *362 + - *363 - name: dir description: The alternate path to look for a README file in: path @@ -91151,9 +91489,9 @@ paths: description: Response content: application/json: - schema: *592 + schema: *595 examples: - default: *593 + default: *596 '404': *6 '422': *15 x-github: @@ -91175,8 +91513,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#list-releases parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -91186,7 +91524,7 @@ paths: application/json: schema: type: array - items: &594 + items: &597 title: Release description: A release. type: object @@ -91258,7 +91596,7 @@ paths: author: *4 assets: type: array - items: &595 + items: &598 title: Release Asset description: Data related to a release. type: object @@ -91438,8 +91776,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#create-a-release parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -91515,9 +91853,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: &598 + default: &601 value: url: https://api.github.com/repos/octocat/Hello-World/releases/1 html_url: https://github.com/octocat/Hello-World/releases/v1.0.0 @@ -91620,9 +91958,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#get-a-release-asset parameters: - - *359 - - *360 - - &596 + - *362 + - *363 + - &599 name: asset_id description: The unique identifier of the asset. in: path @@ -91634,9 +91972,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *598 examples: - default: &597 + default: &600 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 @@ -91670,7 +92008,7 @@ paths: type: User site_admin: false '404': *6 - '302': *491 + '302': *494 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91686,9 +92024,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#update-a-release-asset parameters: - - *359 - - *360 - - *596 + - *362 + - *363 + - *599 requestBody: required: false content: @@ -91717,9 +92055,9 @@ paths: description: Response content: application/json: - schema: *595 + schema: *598 examples: - default: *597 + default: *600 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91735,9 +92073,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#delete-a-release-asset parameters: - - *359 - - *360 - - *596 + - *362 + - *363 + - *599 responses: '204': description: Response @@ -91761,8 +92099,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -91848,16 +92186,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-the-latest-release parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *598 + default: *601 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -91874,8 +92212,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release-by-tag-name parameters: - - *359 - - *360 + - *362 + - *363 - name: tag description: tag parameter in: path @@ -91888,9 +92226,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *598 + default: *601 '404': *6 x-github: githubCloudOnly: false @@ -91912,9 +92250,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#get-a-release parameters: - - *359 - - *360 - - &599 + - *362 + - *363 + - &602 name: release_id description: The unique identifier of the release. in: path @@ -91928,9 +92266,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: *594 + schema: *597 examples: - default: *598 + default: *601 '401': description: Unauthorized x-github: @@ -91948,9 +92286,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#update-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 requestBody: required: false content: @@ -92014,9 +92352,9 @@ paths: description: Response content: application/json: - schema: *594 + schema: *597 examples: - default: *598 + default: *601 '404': description: Not Found if the discussion category name is invalid content: @@ -92037,9 +92375,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/releases#delete-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 responses: '204': description: Response @@ -92059,9 +92397,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/releases/assets#list-release-assets parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 - *17 - *19 responses: @@ -92071,7 +92409,7 @@ paths: application/json: schema: type: array - items: *595 + items: *598 examples: default: value: @@ -92152,9 +92490,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 - - *599 + - *362 + - *363 + - *602 - name: name in: query required: true @@ -92180,7 +92518,7 @@ paths: description: Response for successful upload content: application/json: - schema: *595 + schema: *598 examples: response-for-successful-upload: value: @@ -92234,9 +92572,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 - 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. @@ -92260,9 +92598,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 '404': *6 @@ -92283,9 +92621,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-release parameters: - - *359 - - *360 - - *599 + - *362 + - *363 + - *602 requestBody: required: true content: @@ -92315,16 +92653,16 @@ paths: description: Reaction exists content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '201': description: Reaction created content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 '422': *15 x-github: githubCloudOnly: false @@ -92346,10 +92684,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#delete-a-release-reaction parameters: - - *359 - - *360 - - *599 - - *351 + - *362 + - *363 + - *602 + - *354 responses: '204': description: Response @@ -92373,9 +92711,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-rules-for-a-branch parameters: - - *359 - - *360 - - *418 + - *362 + - *363 + - *421 - *17 - *19 responses: @@ -92391,8 +92729,8 @@ paths: description: A repository rule with ruleset details. oneOf: - allOf: - - *600 - - &602 + - *603 + - &605 title: repository ruleset data for rule description: User-defined metadata to store domain-specific information limited to 8 keys with scalar values. @@ -92411,54 +92749,54 @@ paths: ruleset_id: type: integer description: The ID of the ruleset that includes this rule. - - allOf: - - *601 - - *602 - - allOf: - - *603 - - *602 - allOf: - *604 - - *602 - - allOf: - *605 - - *602 - allOf: - *606 - - *602 + - *605 - allOf: - *607 - - *602 + - *605 - allOf: - *608 - - *602 + - *605 - allOf: - *609 - - *602 + - *605 - allOf: - *610 - - *602 + - *605 - allOf: - *611 - - *602 + - *605 - allOf: - *612 - - *602 + - *605 - allOf: - *613 - - *602 + - *605 - allOf: - *614 - - *602 + - *605 - allOf: - *615 - - *602 + - *605 - allOf: - *616 - - *602 + - *605 - allOf: - *617 - - *602 + - *605 + - allOf: + - *618 + - *605 + - allOf: + - *619 + - *605 + - allOf: + - *620 + - *605 examples: default: value: @@ -92497,8 +92835,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - name: includes_parents @@ -92509,7 +92847,7 @@ paths: schema: type: boolean default: true - - *618 + - *621 responses: '200': description: Response @@ -92564,8 +92902,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 requestBody: description: Request body required: true @@ -92627,7 +92965,7 @@ paths: application/json: schema: *124 examples: - default: &627 + default: &630 value: id: 42 name: super cool ruleset @@ -92674,12 +93012,12 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#list-repository-rule-suites parameters: - - *359 - - *360 - - *619 + - *362 + - *363 + - *622 - *215 - - *620 - - *621 + - *623 + - *624 - *17 - *19 responses: @@ -92687,9 +93025,9 @@ paths: description: Response content: application/json: - schema: *622 + schema: *625 examples: - default: *623 + default: *626 '404': *6 '500': *95 x-github: @@ -92710,17 +93048,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rule-suites#get-a-repository-rule-suite parameters: - - *359 - - *360 - - *624 + - *362 + - *363 + - *627 responses: '200': description: Response content: application/json: - schema: *625 + schema: *628 examples: - default: *626 + default: *629 '404': *6 '500': *95 x-github: @@ -92748,8 +93086,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92771,7 +93109,7 @@ paths: application/json: schema: *124 examples: - default: *627 + default: *630 '404': *6 '500': *95 put: @@ -92789,8 +93127,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92854,7 +93192,7 @@ paths: application/json: schema: *124 examples: - default: *627 + default: *630 '404': *6 '500': *95 delete: @@ -92872,8 +93210,8 @@ paths: category: repos subcategory: rules parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92896,8 +93234,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-history parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 - name: ruleset_id @@ -92915,7 +93253,7 @@ paths: type: array items: *127 examples: - default: *316 + default: *319 '404': *6 '500': *95 x-github: @@ -92934,8 +93272,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/rules#get-repository-ruleset-version parameters: - - *359 - - *360 + - *362 + - *363 - name: ruleset_id description: The ID of the ruleset. in: path @@ -92953,7 +93291,7 @@ paths: description: Response content: application/json: - schema: *317 + schema: *320 examples: default: value: @@ -93008,20 +93346,20 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#list-secret-scanning-alerts-for-a-repository parameters: - - *359 - - *360 - - *318 - - *319 - - *320 + - *362 + - *363 - *321 - - *84 - - *19 - - *17 - - *628 - - *629 - *322 - *323 - *324 + - *84 + - *19 + - *17 + - *631 + - *632 + - *325 + - *326 + - *327 responses: '200': description: Response @@ -93029,7 +93367,7 @@ paths: application/json: schema: type: array - items: &632 + items: &635 type: object properties: number: *96 @@ -93045,8 +93383,8 @@ paths: format: uri description: The REST API URL of the code locations for this alert. - state: *630 - resolution: *631 + state: *633 + resolution: *634 resolved_at: type: - string @@ -93265,15 +93603,15 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/secret-scanning/secret-scanning#get-a-secret-scanning-alert parameters: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 responses: '200': description: Response content: application/json: - schema: *632 + schema: *635 examples: default: value: @@ -93325,9 +93663,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 requestBody: required: true content: @@ -93335,8 +93673,8 @@ paths: schema: type: object properties: - state: *630 - resolution: *631 + state: *633 + resolution: *634 resolution_comment: description: An optional comment when closing an alert. Cannot be updated or deleted. Must be `null` when changing `state` to `open`. @@ -93355,7 +93693,7 @@ paths: description: Response content: application/json: - schema: *632 + schema: *635 examples: default: value: @@ -93430,9 +93768,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: - - *359 - - *360 - - *448 + - *362 + - *363 + - *451 - *19 - *17 responses: @@ -93443,7 +93781,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &788 + items: &791 type: object properties: type: @@ -93822,8 +94160,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -93831,14 +94169,14 @@ paths: schema: type: object properties: - reason: &634 + reason: &637 description: The reason for bypassing push protection. type: string enum: - false_positive - used_in_tests - will_fix_later - placeholder_id: *633 + placeholder_id: *636 required: - reason - placeholder_id @@ -93855,7 +94193,7 @@ paths: schema: type: object properties: - reason: *634 + reason: *637 expire_at: type: - string @@ -93899,8 +94237,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: - - *359 - - *360 + - *362 + - *363 responses: '404': description: Repository does not have GitHub Advanced Security or secret @@ -93915,7 +94253,7 @@ paths: properties: incremental_scans: type: array - items: &635 + items: &638 description: Information on a single scan performed by secret scanning on the repository type: object @@ -93943,15 +94281,15 @@ paths: the scan is pending pattern_update_scans: type: array - items: *635 + items: *638 backfill_scans: type: array - items: *635 + items: *638 custom_pattern_backfill_scans: type: array items: allOf: - - *635 + - *638 - type: object properties: pattern_name: @@ -94021,8 +94359,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/security-advisories/repository-advisories#list-repository-security-advisories parameters: - - *359 - - *360 + - *362 + - *363 - *84 - name: sort description: The property to sort the results by. @@ -94066,9 +94404,9 @@ paths: application/json: schema: type: array - items: *636 + items: *639 examples: - default: *637 + default: *640 '400': *14 '404': *6 x-github: @@ -94091,8 +94429,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -94172,7 +94510,7 @@ paths: login: type: string description: The username of the user credited. - type: *327 + type: *330 required: - login - type @@ -94262,9 +94600,9 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: &639 + default: &642 value: ghsa_id: GHSA-abcd-1234-efgh cve_id: CVE-2050-00000 @@ -94497,8 +94835,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: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -94611,7 +94949,7 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: default: value: @@ -94758,17 +95096,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 responses: '200': description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *639 + default: *642 '403': *27 '404': *6 x-github: @@ -94792,9 +95130,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 requestBody: required: true content: @@ -94874,7 +95212,7 @@ paths: login: type: string description: The username of the user credited. - type: *327 + type: *330 required: - login - type @@ -94965,10 +95303,10 @@ paths: description: Response content: application/json: - schema: *636 + schema: *639 examples: - default: *639 - add_credit: *639 + default: *642 + add_credit: *642 '403': *27 '404': *6 '422': @@ -95006,9 +95344,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 responses: '202': *93 '400': *14 @@ -95035,17 +95373,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: - - *359 - - *360 - - *638 + - *362 + - *363 + - *641 responses: '202': description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 '400': *14 '422': *15 '403': *27 @@ -95071,8 +95409,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-stargazers parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -95168,8 +95506,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-activity parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Returns a weekly aggregate of the number of additions and deletions @@ -95178,7 +95516,7 @@ paths: application/json: schema: type: array - items: &640 + items: &643 title: Code Frequency Stat description: Code Frequency Stat type: array @@ -95211,8 +95549,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -95290,8 +95628,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-all-contributor-commit-activity parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -95385,8 +95723,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/statistics#get-the-weekly-commit-count parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: The array order is oldest week (index 0) to most recent week. @@ -95540,8 +95878,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: - - *359 - - *360 + - *362 + - *363 responses: '200': description: For example, `[2, 14, 25]` indicates that there were 25 total @@ -95551,7 +95889,7 @@ paths: application/json: schema: type: array - items: *640 + items: *643 examples: default: value: @@ -95584,8 +95922,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/commits/statuses#create-a-commit-status parameters: - - *359 - - *360 + - *362 + - *363 - name: sha in: path required: true @@ -95641,7 +95979,7 @@ paths: description: Response content: application/json: - schema: *641 + schema: *644 examples: default: value: @@ -95695,8 +96033,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#list-watchers parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -95708,7 +96046,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -95728,14 +96066,14 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#get-a-repository-subscription parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: if you subscribe to the repository content: application/json: - schema: &642 + schema: &645 title: Repository Invitation description: Repository invitations let you manage who you collaborate with. @@ -95808,8 +96146,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#set-a-repository-subscription parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: false content: @@ -95835,7 +96173,7 @@ paths: description: Response content: application/json: - schema: *642 + schema: *645 examples: default: value: @@ -95862,8 +96200,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/activity/watching#delete-a-repository-subscription parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -95883,8 +96221,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-tags parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -95966,8 +96304,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---list-tag-protection-states-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -95975,7 +96313,7 @@ paths: application/json: schema: type: array - items: &643 + items: &646 title: Tag protection description: Tag protection type: object @@ -96032,8 +96370,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---create-a-tag-protection-state-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -96056,7 +96394,7 @@ paths: description: Response content: application/json: - schema: *643 + schema: *646 examples: default: value: @@ -96087,8 +96425,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/tags#closing-down---delete-a-tag-protection-state-for-a-repository parameters: - - *359 - - *360 + - *362 + - *363 - name: tag_protection_id description: The unique identifier of the tag protection. in: path @@ -96125,8 +96463,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-tar operationId: repos/download-tarball-archive parameters: - - *359 - - *360 + - *362 + - *363 - name: ref in: path required: true @@ -96162,8 +96500,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#list-repository-teams parameters: - - *359 - - *360 + - *362 + - *363 - *17 - *19 responses: @@ -96175,7 +96513,7 @@ paths: type: array items: *277 examples: - default: *291 + default: *294 headers: Link: *37 '404': *6 @@ -96195,8 +96533,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-all-repository-topics parameters: - - *359 - - *360 + - *362 + - *363 - *19 - *17 responses: @@ -96204,7 +96542,7 @@ paths: description: Response content: application/json: - schema: &644 + schema: &647 title: Topic description: A topic aggregates entities that are related to a subject. type: object @@ -96216,7 +96554,7 @@ paths: required: - names examples: - default: &645 + default: &648 value: names: - octocat @@ -96239,8 +96577,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#replace-all-repository-topics parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -96271,9 +96609,9 @@ paths: description: Response content: application/json: - schema: *644 + schema: *647 examples: - default: *645 + default: *648 '404': *6 '422': *7 x-github: @@ -96294,9 +96632,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-repository-clones parameters: - - *359 - - *360 - - &646 + - *362 + - *363 + - &649 name: per description: The time frame to display results for. in: query @@ -96327,7 +96665,7 @@ paths: - 128 clones: type: array - items: &647 + items: &650 title: Traffic type: object properties: @@ -96414,8 +96752,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-paths parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -96509,8 +96847,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-top-referral-sources parameters: - - *359 - - *360 + - *362 + - *363 responses: '200': description: Response @@ -96573,9 +96911,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/metrics/traffic#get-page-views parameters: - - *359 - - *360 - - *646 + - *362 + - *363 + - *649 responses: '200': description: Response @@ -96596,7 +96934,7 @@ paths: - 3782 views: type: array - items: *647 + items: *650 required: - uniques - count @@ -96673,8 +97011,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#transfer-a-repository parameters: - - *359 - - *360 + - *362 + - *363 requestBody: required: true content: @@ -96948,8 +97286,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response if repository is enabled with vulnerability alerts @@ -96972,8 +97310,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#enable-vulnerability-alerts parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -96995,8 +97333,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#disable-vulnerability-alerts parameters: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -97022,8 +97360,8 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/repos/contents#download-a-repository-archive-zip operationId: repos/download-zipball-archive parameters: - - *359 - - *360 + - *362 + - *363 - name: ref in: path required: true @@ -97115,9 +97453,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -97268,7 +97606,7 @@ paths: value: Engineering externalId: value: 8aa1a0c0-c4c3-4bc0-b4a5-2ef676900159 - - &655 + - &658 name: excludedAttributes description: Excludes the specified attribute from being returned in the results. Using this parameter can speed up response time. @@ -97278,7 +97616,7 @@ paths: type: string examples: - members - - &660 + - &663 name: startIndex description: 'Used for pagination: the starting index of the first result to return when paginating through values.' @@ -97290,7 +97628,7 @@ paths: format: int32 examples: - 1 - - &661 + - &664 name: count description: 'Used for pagination: the number of results to return per page.' in: query @@ -97334,7 +97672,7 @@ paths: Resources: type: array description: Information about each provisioned group. - items: &649 + items: &652 allOf: - type: object required: @@ -97416,7 +97754,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: &662 + meta: &665 type: object description: The metadata associated with the creation/updates to the user. @@ -97481,31 +97819,31 @@ paths: location: https://api.github.localhost/scim/v2/Groups/24b28bbb-5fc4-4686-a153-a020debb1155 startIndex: 1 itemsPerPage: 20 - '400': &650 + '400': &653 description: Bad request content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '401': &651 + schema: *651 + '401': &654 description: Authorization failure - '403': &652 + '403': &655 description: Permission denied - '429': &653 + '429': &656 description: Too many requests content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '500': &654 + schema: *651 + '500': &657 description: Internal server error content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 + schema: *651 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97529,7 +97867,7 @@ paths: required: true content: application/json: - schema: &658 + schema: &661 type: object required: - schemas @@ -97589,9 +97927,9 @@ paths: description: Group has been created content: application/scim+json: - schema: *649 + schema: *652 examples: - group: &656 + group: &659 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:Group @@ -97610,13 +97948,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': *650 - '401': *651 - '403': *652 - '409': &659 + '400': *653 + '401': *654 + '403': *655 + '409': &662 description: Duplicate record detected - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97633,7 +97971,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: - - &657 + - &660 name: scim_group_id description: A unique identifier of the SCIM group. in: path @@ -97642,22 +97980,22 @@ paths: type: string examples: - 7fce0092-d52e-4f76-b727-3955bd72c939 - - *655 + - *658 - *38 responses: '200': description: Success, a group was found content: application/scim+json: - schema: *649 + schema: *652 examples: - default: *656 - '400': *650 - '401': *651 - '403': *652 + default: *659 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97676,13 +98014,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: - - *657 + - *660 - *38 requestBody: required: true content: application/json: - schema: *658 + schema: *661 examples: group: summary: Group @@ -97708,17 +98046,17 @@ paths: description: Group was updated content: application/scim+json: - schema: *649 + schema: *652 examples: - group: *656 - groupWithMembers: *656 - '400': *650 - '401': *651 - '403': *652 + group: *659 + groupWithMembers: *659 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97742,13 +98080,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: - - *657 + - *660 - *38 requestBody: required: true content: application/json: - schema: &669 + schema: &672 type: object required: - Operations @@ -97808,17 +98146,17 @@ paths: description: Success, group was updated content: application/scim+json: - schema: *649 + schema: *652 examples: - updateGroup: *656 - addMembers: *656 - '400': *650 - '401': *651 - '403': *652 + updateGroup: *659 + addMembers: *659 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97834,17 +98172,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: - - *657 + - *660 - *38 responses: '204': description: Group was deleted, no content - '400': *650 - '401': *651 - '403': *652 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -97878,8 +98216,8 @@ paths: value: userName eq 'E012345' externalId: value: externalId eq 'E012345' - - *660 - - *661 + - *663 + - *664 - *38 responses: '200': @@ -97913,7 +98251,7 @@ paths: Resources: type: array description: Information about each provisioned account. - items: &664 + items: &667 allOf: - type: object required: @@ -98005,7 +98343,7 @@ paths: address. examples: - true - roles: &663 + roles: &666 type: array description: The roles assigned to the user. items: @@ -98064,7 +98402,7 @@ paths: type: string description: Provisioned SCIM groups that the user is a member of. - meta: *662 + meta: *665 startIndex: type: integer description: A starting index for the returned page @@ -98103,11 +98441,11 @@ paths: primary: false startIndex: 1 itemsPerPage: 20 - '400': *650 - '401': *651 - '403': *652 - '429': *653 - '500': *654 + '400': *653 + '401': *654 + '403': *655 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98131,7 +98469,7 @@ paths: required: true content: application/json: - schema: &667 + schema: &670 type: object required: - schemas @@ -98224,9 +98562,9 @@ paths: description: Whether this email address is the primary address. examples: - true - roles: *663 + roles: *666 examples: - user: &668 + user: &671 summary: User value: schemas: @@ -98273,9 +98611,9 @@ paths: description: User has been created content: application/scim+json: - schema: *664 + schema: *667 examples: - user: &665 + user: &668 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98301,13 +98639,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: *665 - '400': *650 - '401': *651 - '403': *652 - '409': *659 - '429': *653 - '500': *654 + enterpriseOwner: *668 + '400': *653 + '401': *654 + '403': *655 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98324,7 +98662,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: - - &666 + - &669 name: scim_user_id description: The unique identifier of the SCIM user. in: path @@ -98337,15 +98675,15 @@ paths: description: Success, a user was found content: application/scim+json: - schema: *664 + schema: *667 examples: - default: *665 - '400': *650 - '401': *651 - '403': *652 + default: *668 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98367,30 +98705,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: - - *666 + - *669 - *38 requestBody: required: true content: application/json: - schema: *667 + schema: *670 examples: - user: *668 + user: *671 responses: '200': description: User was updated content: application/scim+json: - schema: *664 + schema: *667 examples: - user: *665 - '400': *650 - '401': *651 - '403': *652 + user: *668 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98425,13 +98763,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: - - *666 + - *669 - *38 requestBody: required: true content: application/json: - schema: *669 + schema: *672 examples: userMultiValuedProperties: summary: Multi Valued Property @@ -98471,18 +98809,18 @@ paths: description: Success, user was updated content: application/scim+json: - schema: *664 - examples: - userMultiValuedProperties: *665 - userSingleValuedProperties: *665 - disableUser: *665 - '400': *650 - '401': *651 - '403': *652 + schema: *667 + examples: + userMultiValuedProperties: *668 + userSingleValuedProperties: *668 + disableUser: *668 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '409': *659 - '429': *653 - '500': *654 + '409': *662 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98502,17 +98840,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: - - *666 + - *669 - *38 responses: '204': description: User was deleted, no content - '400': *650 - '401': *651 - '403': *652 + '400': *653 + '401': *654 + '403': *655 '404': *6 - '429': *653 - '500': *654 + '429': *656 + '500': *657 x-github: enabledForGitHubApps: true githubCloudOnly: true @@ -98603,7 +98941,7 @@ paths: - 1 Resources: type: array - items: &670 + items: &673 title: SCIM /Users description: SCIM /Users provisioning endpoints type: object @@ -98850,22 +99188,22 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/77563764-eb6-24-0598234-958243 '304': *35 - '404': &671 + '404': &674 description: Resource not found content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '403': &672 + schema: *651 + '403': &675 description: Forbidden content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '400': *650 - '429': *653 + schema: *651 + '400': *653 + '429': *656 x-github: githubCloudOnly: true enabledForGitHubApps: true @@ -98891,9 +99229,9 @@ paths: description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: &673 + default: &676 value: schemas: - urn:ietf:params:scim:schemas:core:2.0:User @@ -98916,17 +99254,17 @@ paths: lastModified: '2017-03-09T16:11:13-05:00' location: https://api.github.com/scim/v2/organizations/octo-org/Users/edefdfedf-050c-11e7-8d32 '304': *35 - '404': *671 - '403': *672 - '500': *654 + '404': *674 + '403': *675 + '500': *657 '409': description: Conflict content: application/json: - schema: *648 + schema: *651 application/scim+json: - schema: *648 - '400': *650 + schema: *651 + '400': *653 requestBody: required: true content: @@ -99021,17 +99359,17 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#get-scim-provisioning-information-for-a-user parameters: - *164 - - *666 + - *669 responses: '200': description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: *673 - '404': *671 - '403': *672 + default: *676 + '404': *674 + '403': *675 '304': *35 x-github: githubCloudOnly: true @@ -99055,18 +99393,18 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-a-provisioned-organization-membership parameters: - *164 - - *666 + - *669 responses: '200': description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: *673 + default: *676 '304': *35 - '404': *671 - '403': *672 + '404': *674 + '403': *675 requestBody: required: true content: @@ -99177,19 +99515,19 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#update-an-attribute-for-a-scim-user parameters: - *164 - - *666 + - *669 responses: '200': description: Response content: application/scim+json: - schema: *670 + schema: *673 examples: - default: *673 + default: *676 '304': *35 - '404': *671 - '403': *672 - '400': *650 + '404': *674 + '403': *675 + '400': *653 '429': description: Response content: @@ -99285,12 +99623,12 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/scim/scim#delete-a-scim-user-from-an-organization parameters: - *164 - - *666 + - *669 responses: '204': description: Response - '404': *671 - '403': *672 + '404': *674 + '403': *675 '304': *35 x-github: githubCloudOnly: true @@ -99424,7 +99762,7 @@ paths: examples: - 73..77 - 77..78 - text_matches: &674 + text_matches: &677 title: Search Result Text Matches type: array items: @@ -99588,7 +99926,7 @@ paths: enum: - author-date - committer-date - - &675 + - &678 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 @@ -99657,7 +99995,7 @@ paths: committer: anyOf: - type: 'null' - - *416 + - *419 comment_count: type: integer message: @@ -99676,7 +100014,7 @@ paths: url: type: string format: uri - verification: *526 + verification: *529 required: - author - committer @@ -99691,7 +100029,7 @@ paths: committer: anyOf: - type: 'null' - - *416 + - *419 parents: type: array items: @@ -99708,7 +100046,7 @@ paths: type: number node_id: type: string - text_matches: *674 + text_matches: *677 required: - sha - node_id @@ -99891,7 +100229,7 @@ paths: - interactions - created - updated - - *675 + - *678 - *17 - *19 - name: advanced_search @@ -100015,7 +100353,7 @@ paths: milestone: anyOf: - type: 'null' - - *481 + - *484 comments: type: integer created_at: @@ -100029,7 +100367,7 @@ paths: - string - 'null' format: date-time - text_matches: *674 + text_matches: *677 pull_request: type: object properties: @@ -100078,6 +100416,7 @@ paths: timeline_url: type: string format: uri + type: *278 performed_via_github_app: anyOf: - type: 'null' @@ -100254,7 +100593,7 @@ paths: enum: - created - updated - - *675 + - *678 - *17 - *19 responses: @@ -100299,7 +100638,7 @@ paths: - 'null' score: type: number - text_matches: *674 + text_matches: *677 required: - id - node_id @@ -100385,7 +100724,7 @@ paths: - forks - help-wanted-issues - updated - - *675 + - *678 - *17 - *19 responses: @@ -100622,7 +100961,7 @@ paths: - admin - pull - push - text_matches: *674 + text_matches: *677 temp_clone_token: type: string allow_merge_commit: @@ -100931,7 +101270,7 @@ paths: - string - 'null' format: uri - text_matches: *674 + text_matches: *677 related: type: - array @@ -101126,7 +101465,7 @@ paths: - followers - repositories - joined - - *675 + - *678 - *17 - *19 responses: @@ -101236,7 +101575,7 @@ paths: type: - boolean - 'null' - text_matches: *674 + text_matches: *677 blog: type: - string @@ -101318,7 +101657,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#get-a-team-legacy parameters: - - &676 + - &679 name: team_id description: The unique identifier of the team. in: path @@ -101330,9 +101669,9 @@ paths: description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 x-github: githubCloudOnly: false @@ -101359,7 +101698,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#update-a-team-legacy parameters: - - *676 + - *679 requestBody: required: true content: @@ -101423,16 +101762,16 @@ paths: description: Response when the updated information already exists content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '201': description: Response content: application/json: - schema: *340 + schema: *343 examples: - default: *341 + default: *344 '404': *6 '422': *15 '403': *27 @@ -101460,7 +101799,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#delete-a-team-legacy parameters: - - *676 + - *679 responses: '204': description: Response @@ -101491,7 +101830,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#list-discussions-legacy parameters: - - *676 + - *679 - *84 - *17 - *19 @@ -101502,9 +101841,9 @@ paths: application/json: schema: type: array - items: *342 + items: *345 examples: - default: *677 + default: *680 headers: Link: *37 x-github: @@ -101533,7 +101872,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#create-a-discussion-legacy parameters: - - *676 + - *679 requestBody: required: true content: @@ -101567,9 +101906,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *343 + default: *346 x-github: triggersNotification: true githubCloudOnly: false @@ -101596,16 +101935,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#get-a-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 responses: '200': description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *343 + default: *346 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101630,8 +101969,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#update-a-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 requestBody: required: false content: @@ -101654,9 +101993,9 @@ paths: description: Response content: application/json: - schema: *342 + schema: *345 examples: - default: *678 + default: *681 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101681,8 +102020,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussions#delete-a-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 responses: '204': description: Response @@ -101711,8 +102050,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#list-discussion-comments-legacy parameters: - - *676 - - *344 + - *679 + - *347 - *84 - *17 - *19 @@ -101723,9 +102062,9 @@ paths: application/json: schema: type: array - items: *345 + items: *348 examples: - default: *679 + default: *682 headers: Link: *37 x-github: @@ -101754,8 +102093,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#create-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 + - *347 requestBody: required: true content: @@ -101777,9 +102116,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: triggersNotification: true githubCloudOnly: false @@ -101806,17 +102145,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#get-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 responses: '200': description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *346 + default: *349 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101841,9 +102180,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#update-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 requestBody: required: true content: @@ -101865,9 +102204,9 @@ paths: description: Response content: application/json: - schema: *345 + schema: *348 examples: - default: *680 + default: *683 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -101892,9 +102231,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/discussion-comments#delete-a-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 responses: '204': description: Response @@ -101923,9 +102262,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion comment. @@ -101951,9 +102290,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 x-github: @@ -101982,9 +102321,9 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-comment-legacy parameters: - - *676 - - *344 + - *679 - *347 + - *350 requestBody: required: true content: @@ -102016,9 +102355,9 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -102044,8 +102383,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#list-reactions-for-a-team-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 - name: content description: Returns a single [reaction type](https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#about-reactions). Omit this parameter to list all reactions to a team discussion. @@ -102071,9 +102410,9 @@ paths: application/json: schema: type: array - items: *348 + items: *351 examples: - default: *350 + default: *353 headers: Link: *37 x-github: @@ -102102,8 +102441,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/reactions/reactions#create-reaction-for-a-team-discussion-legacy parameters: - - *676 - - *344 + - *679 + - *347 requestBody: required: true content: @@ -102135,9 +102474,9 @@ paths: description: Response content: application/json: - schema: *348 + schema: *351 examples: - default: *349 + default: *352 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -102161,7 +102500,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-pending-team-invitations-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -102199,7 +102538,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#list-team-members-legacy parameters: - - *676 + - *679 - name: role description: Filters members returned by their role in the team. in: query @@ -102222,7 +102561,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '404': *6 @@ -102250,7 +102589,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#get-team-member-legacy parameters: - - *676 + - *679 - *212 responses: '204': @@ -102287,7 +102626,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#add-team-member-legacy parameters: - - *676 + - *679 - *212 responses: '204': @@ -102327,7 +102666,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/members#remove-team-member-legacy parameters: - - *676 + - *679 - *212 responses: '204': @@ -102364,16 +102703,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: - - *676 + - *679 - *212 responses: '200': description: Response content: application/json: - schema: *356 + schema: *359 examples: - response-if-user-is-a-team-maintainer: *681 + response-if-user-is-a-team-maintainer: *684 '404': *6 x-github: githubCloudOnly: false @@ -102406,7 +102745,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: - - *676 + - *679 - *212 requestBody: required: false @@ -102432,9 +102771,9 @@ paths: description: Response content: application/json: - schema: *356 + schema: *359 examples: - response-if-users-membership-with-team-is-now-pending: *682 + response-if-users-membership-with-team-is-now-pending: *685 '403': description: Forbidden if team synchronization is set up '422': @@ -102468,7 +102807,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: - - *676 + - *679 - *212 responses: '204': @@ -102497,7 +102836,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-projects-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -102507,9 +102846,9 @@ paths: application/json: schema: type: array - items: *357 + items: *360 examples: - default: *683 + default: *686 headers: Link: *37 '404': *6 @@ -102535,16 +102874,16 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#check-team-permissions-for-a-project-legacy parameters: - - *676 - - *358 + - *679 + - *361 responses: '200': description: Response content: application/json: - schema: *357 + schema: *360 examples: - default: *684 + default: *687 '404': description: Not Found if project is not managed by this team x-github: @@ -102568,8 +102907,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#add-or-update-team-project-permissions-legacy parameters: - - *676 - - *358 + - *679 + - *361 requestBody: required: false content: @@ -102636,8 +102975,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#remove-a-project-from-a-team-legacy parameters: - - *676 - - *358 + - *679 + - *361 responses: '204': description: Response @@ -102664,7 +103003,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-team-repositories-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -102676,7 +103015,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 '404': *6 @@ -102706,15 +103045,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: - - *676 - - *359 - - *360 + - *679 + - *362 + - *363 responses: '200': description: Alternative response with extra repository information content: application/json: - schema: *685 + schema: *688 examples: alternative-response-with-extra-repository-information: value: @@ -102865,9 +103204,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: - - *676 - - *359 - - *360 + - *679 + - *362 + - *363 requestBody: required: false content: @@ -102917,9 +103256,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: - - *676 - - *359 - - *360 + - *679 + - *362 + - *363 responses: '204': description: Response @@ -102948,15 +103287,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: - - *676 + - *679 responses: '200': description: Response content: application/json: - schema: *361 + schema: *364 examples: - default: *362 + default: *365 '403': *27 '404': *6 x-github: @@ -102983,7 +103322,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: - - *676 + - *679 requestBody: required: true content: @@ -103044,7 +103383,7 @@ paths: description: Response content: application/json: - schema: *361 + schema: *364 examples: default: value: @@ -103075,7 +103414,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/teams/teams#list-child-teams-legacy parameters: - - *676 + - *679 - *17 - *19 responses: @@ -103087,7 +103426,7 @@ paths: type: array items: *277 examples: - response-if-child-teams-exist: *686 + response-if-child-teams-exist: *689 headers: Link: *37 '404': *6 @@ -103120,7 +103459,7 @@ paths: application/json: schema: oneOf: - - &688 + - &691 title: Private User description: Private User type: object @@ -103370,7 +103709,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *687 + - *690 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -103530,7 +103869,7 @@ paths: description: Response content: application/json: - schema: *688 + schema: *691 examples: default: value: @@ -103609,7 +103948,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 '304': *35 '404': *6 '403': *27 @@ -103733,9 +104072,9 @@ paths: type: integer codespaces: type: array - items: *281 + items: *284 examples: - default: *282 + default: *285 '304': *35 '500': *95 '401': *23 @@ -103874,17 +104213,17 @@ paths: description: Response when the codespace was successfully created content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '202': description: Response when the codespace creation partially failed but is being retried in the background content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '401': *23 '403': *27 '404': *6 @@ -103928,7 +104267,7 @@ paths: type: integer secrets: type: array - items: &689 + items: &692 title: Codespaces Secret description: Secrets for a GitHub Codespace. type: object @@ -103970,7 +104309,7 @@ paths: - visibility - selected_repositories_url examples: - default: *470 + default: *473 headers: Link: *37 x-github: @@ -104048,7 +104387,7 @@ paths: description: Response content: application/json: - schema: *689 + schema: *692 examples: default: value: @@ -104194,7 +104533,7 @@ paths: type: array items: *190 examples: - default: *690 + default: *693 '401': *23 '403': *27 '404': *6 @@ -104338,15 +104677,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: - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '304': *35 '500': *95 '401': *23 @@ -104372,7 +104711,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: - - *283 + - *286 requestBody: required: false content: @@ -104402,9 +104741,9 @@ paths: description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '401': *23 '403': *27 '404': *6 @@ -104426,7 +104765,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: - - *283 + - *286 responses: '202': *93 '304': *35 @@ -104455,13 +104794,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: - - *283 + - *286 responses: '202': description: Response content: application/json: - schema: &691 + schema: &694 type: object title: Fetches information about an export of a codespace. description: An export of a codespace. Also, latest export details @@ -104514,7 +104853,7 @@ paths: examples: - https://github.com/octocat/hello-world/tree/:branch examples: - default: &692 + default: &695 value: state: succeeded completed_at: '2022-01-01T14:59:22Z' @@ -104546,7 +104885,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/codespaces#get-details-about-a-codespace-export parameters: - - *283 + - *286 - name: export_id in: path required: true @@ -104559,9 +104898,9 @@ paths: description: Response content: application/json: - schema: *691 + schema: *694 examples: - default: *692 + default: *695 '404': *6 x-github: githubCloudOnly: false @@ -104582,7 +104921,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/codespaces/machines#list-machine-types-for-a-codespace parameters: - - *283 + - *286 responses: '200': description: Response @@ -104598,9 +104937,9 @@ paths: type: integer machines: type: array - items: *469 + items: *472 examples: - default: *693 + default: *696 '304': *35 '500': *95 '401': *23 @@ -104629,7 +104968,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: - - *283 + - *286 requestBody: required: true content: @@ -104685,11 +105024,11 @@ paths: - 26a7c758-7299-4a73-b978-5a92a7ae98a0 owner: *4 billable_owner: *4 - repository: *372 + repository: *375 machine: anyOf: - type: 'null' - - *469 + - *472 devcontainer_path: description: Path to devcontainer.json from repo root used to create Codespace. @@ -105486,15 +105825,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: - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '304': *35 '500': *95 '400': *14 @@ -105526,15 +105865,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: - - *283 + - *286 responses: '200': description: Response content: application/json: - schema: *281 + schema: *284 examples: - default: *468 + default: *471 '500': *95 '401': *23 '403': *27 @@ -105564,9 +105903,9 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: &706 + default: &709 value: - id: 197 name: hello_docker @@ -105667,7 +106006,7 @@ paths: application/json: schema: type: array - items: &694 + items: &697 title: Email description: Email type: object @@ -105737,9 +106076,9 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: - default: &708 + default: &711 value: - email: octocat@github.com verified: true @@ -105816,7 +106155,7 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: default: value: @@ -105928,7 +106267,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '304': *35 @@ -105961,7 +106300,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 '304': *35 @@ -106074,7 +106413,7 @@ paths: application/json: schema: type: array - items: &695 + items: &698 title: GPG Key description: A unique encryption key type: object @@ -106219,7 +106558,7 @@ paths: - subkeys - revoked examples: - default: &719 + default: &722 value: - id: 3 name: Octocat's GPG Key @@ -106304,9 +106643,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: &696 + default: &699 value: id: 3 name: Octocat's GPG Key @@ -106363,7 +106702,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: - - &697 + - &700 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -106375,9 +106714,9 @@ paths: description: Response content: application/json: - schema: *695 + schema: *698 examples: - default: *696 + default: *699 '404': *6 '304': *35 '403': *27 @@ -106400,7 +106739,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: - - *697 + - *700 responses: '204': description: Response @@ -106591,7 +106930,7 @@ paths: type: array items: *61 examples: - default: *698 + default: *701 headers: Link: *37 '404': *6 @@ -106705,7 +107044,7 @@ paths: required: true content: application/json: - schema: *537 + schema: *540 examples: default: value: @@ -106797,7 +107136,7 @@ paths: - closed - all default: open - - *278 + - *281 - name: sort description: What to sort results by. in: query @@ -106822,7 +107161,7 @@ paths: type: array items: *148 examples: - default: *279 + default: *282 headers: Link: *37 '404': *6 @@ -106855,7 +107194,7 @@ paths: application/json: schema: type: array - items: &699 + items: &702 title: Key description: Key type: object @@ -106953,9 +107292,9 @@ paths: description: Response content: application/json: - schema: *699 + schema: *702 examples: - default: &700 + default: &703 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -106988,15 +107327,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: - - *564 + - *567 responses: '200': description: Response content: application/json: - schema: *699 + schema: *702 examples: - default: *700 + default: *703 '404': *6 '304': *35 '403': *27 @@ -107019,7 +107358,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: - - *564 + - *567 responses: '204': description: Response @@ -107052,7 +107391,7 @@ paths: application/json: schema: type: array - items: &701 + items: &704 title: User Marketplace Purchase description: User Marketplace Purchase type: object @@ -107131,7 +107470,7 @@ paths: - account - plan examples: - default: &702 + default: &705 value: - billing_cycle: monthly next_billing_date: '2017-11-11T00:00:00Z' @@ -107193,9 +107532,9 @@ paths: application/json: schema: type: array - items: *701 + items: *704 examples: - default: *702 + default: *705 headers: Link: *37 '304': *35 @@ -107235,7 +107574,7 @@ paths: application/json: schema: type: array - items: *284 + items: *287 examples: default: value: @@ -107343,7 +107682,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *287 examples: default: value: @@ -107426,7 +107765,7 @@ paths: description: Response content: application/json: - schema: *284 + schema: *287 examples: default: value: @@ -107494,7 +107833,7 @@ paths: application/json: schema: type: array - items: *286 + items: *289 examples: default: value: @@ -107756,7 +108095,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -107936,7 +108275,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#get-a-user-migration-status parameters: - - *287 + - *290 - name: exclude in: query required: false @@ -107949,7 +108288,7 @@ paths: description: Response content: application/json: - schema: *286 + schema: *289 examples: default: value: @@ -108143,7 +108482,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#download-a-user-migration-archive parameters: - - *287 + - *290 responses: '302': description: Response @@ -108169,7 +108508,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#delete-a-user-migration-archive parameters: - - *287 + - *290 responses: '204': description: Response @@ -108198,8 +108537,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#unlock-a-user-repository parameters: - - *287 - - *703 + - *290 + - *706 responses: '204': description: Response @@ -108223,7 +108562,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/migrations/users#list-repositories-for-a-user-migration parameters: - - *287 + - *290 - *17 - *19 responses: @@ -108235,7 +108574,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 '404': *6 @@ -108272,7 +108611,7 @@ paths: type: array items: *56 examples: - default: *704 + default: *707 headers: Link: *37 '304': *35 @@ -108314,7 +108653,7 @@ paths: - docker - nuget - container - - *705 + - *708 - *19 - *17 responses: @@ -108324,10 +108663,10 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *706 - '400': *707 + default: *709 + '400': *710 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -108347,16 +108686,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: - - *294 - - *295 + - *297 + - *298 responses: '200': description: Response content: application/json: - schema: *292 + schema: *295 examples: - default: &720 + default: &723 value: id: 40201 name: octo-name @@ -108469,8 +108808,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: - - *294 - - *295 + - *297 + - *298 responses: '204': description: Response @@ -108500,8 +108839,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: - - *294 - - *295 + - *297 + - *298 - name: token description: package token schema: @@ -108533,8 +108872,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: - - *294 - - *295 + - *297 + - *298 - *19 - *17 - name: state @@ -108554,7 +108893,7 @@ paths: application/json: schema: type: array - items: *296 + items: *299 examples: default: value: @@ -108603,15 +108942,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: - - *294 - - *295 - *297 + - *298 + - *300 responses: '200': description: Response content: application/json: - schema: *296 + schema: *299 examples: default: value: @@ -108647,9 +108986,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: - - *294 - - *295 - *297 + - *298 + - *300 responses: '204': description: Response @@ -108679,9 +109018,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: - - *294 - - *295 - *297 + - *298 + - *300 responses: '204': description: Response @@ -108739,7 +109078,7 @@ paths: description: Response content: application/json: - schema: *308 + schema: *311 examples: default: value: @@ -108811,9 +109150,9 @@ paths: application/json: schema: type: array - items: *694 + items: *697 examples: - default: *708 + default: *711 headers: Link: *37 '304': *35 @@ -108926,7 +109265,7 @@ paths: type: array items: *61 examples: - default: &715 + default: &718 summary: Default response value: - id: 1296269 @@ -109242,9 +109581,9 @@ paths: description: Response content: application/json: - schema: *372 + schema: *375 examples: - default: *374 + default: *377 headers: Location: example: https://api.github.com/repos/octocat/Hello-World @@ -109282,9 +109621,9 @@ paths: application/json: schema: type: array - items: *539 + items: *542 examples: - default: *709 + default: *712 headers: Link: *37 '304': *35 @@ -109363,7 +109702,7 @@ paths: application/json: schema: type: array - items: &710 + items: &713 title: Social account description: Social media account type: object @@ -109380,7 +109719,7 @@ paths: - provider - url examples: - default: &711 + default: &714 value: - provider: twitter url: https://twitter.com/github @@ -109443,9 +109782,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: *711 + default: *714 '422': *15 '304': *35 '404': *6 @@ -109533,7 +109872,7 @@ paths: application/json: schema: type: array - items: &712 + items: &715 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -109553,7 +109892,7 @@ paths: - title - created_at examples: - default: &721 + default: &724 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109620,9 +109959,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *715 examples: - default: &713 + default: &716 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -109653,7 +109992,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: - - &714 + - &717 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -109665,9 +110004,9 @@ paths: description: Response content: application/json: - schema: *712 + schema: *715 examples: - default: *713 + default: *716 '404': *6 '304': *35 '403': *27 @@ -109690,7 +110029,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: - - *714 + - *717 responses: '204': description: Response @@ -109719,7 +110058,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: - - &722 + - &725 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 @@ -109744,11 +110083,11 @@ paths: type: array items: *61 examples: - default-response: *715 + default-response: *718 application/vnd.github.v3.star+json: schema: type: array - items: &723 + items: &726 title: Starred Repository description: Starred Repository type: object @@ -109904,8 +110243,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response if this repository is starred by you @@ -109933,8 +110272,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -109958,8 +110297,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: - - *359 - - *360 + - *362 + - *363 responses: '204': description: Response @@ -109994,7 +110333,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 '304': *35 @@ -110031,7 +110370,7 @@ paths: application/json: schema: type: array - items: *340 + items: *343 examples: default: value: @@ -110117,10 +110456,10 @@ paths: application/json: schema: oneOf: - - *688 - - *687 + - *691 + - *690 examples: - default-response: &717 + default-response: &720 summary: Default response value: login: octocat @@ -110155,7 +110494,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &718 + response-with-git-hub-plan-information: &721 summary: Response with GitHub plan information value: login: octocat @@ -110215,7 +110554,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/users/users#list-users parameters: - - *716 + - *719 - *17 responses: '200': @@ -110226,7 +110565,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: example: ; rel="next" @@ -110264,11 +110603,11 @@ paths: application/json: schema: oneOf: - - *688 - - *687 + - *691 + - *690 examples: - default-response: *717 - response-with-git-hub-plan-information: *718 + default-response: *720 + response-with-git-hub-plan-information: *721 '404': *6 x-github: githubCloudOnly: false @@ -110344,7 +110683,7 @@ paths: bundle_url: type: string examples: - default: *412 + default: *415 '201': description: Response content: @@ -110383,9 +110722,9 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *706 + default: *709 '403': *27 '401': *23 x-github: @@ -110668,7 +111007,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -110699,7 +111038,7 @@ paths: type: array items: *4 examples: - default: *280 + default: *283 headers: Link: *37 x-github: @@ -110789,9 +111128,9 @@ paths: application/json: schema: type: array - items: *695 + items: *698 examples: - default: *719 + default: *722 headers: Link: *37 x-github: @@ -110895,7 +111234,7 @@ paths: application/json: schema: *20 examples: - default: *536 + default: *539 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -110973,7 +111312,7 @@ paths: type: array items: *56 examples: - default: *704 + default: *707 headers: Link: *37 x-github: @@ -111012,7 +111351,7 @@ paths: - docker - nuget - container - - *705 + - *708 - *212 - *19 - *17 @@ -111023,12 +111362,12 @@ paths: application/json: schema: type: array - items: *292 + items: *295 examples: - default: *706 + default: *709 '403': *27 '401': *23 - '400': *707 + '400': *710 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111048,17 +111387,17 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#get-a-package-for-a-user parameters: - - *294 - - *295 + - *297 + - *298 - *212 responses: '200': description: Response content: application/json: - schema: *292 + schema: *295 examples: - default: *720 + default: *723 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111079,8 +111418,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-a-package-for-a-user parameters: - - *294 - - *295 + - *297 + - *298 - *212 responses: '204': @@ -111113,8 +111452,8 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-a-package-for-a-user parameters: - - *294 - - *295 + - *297 + - *298 - *212 - name: token description: package token @@ -111147,8 +111486,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: - - *294 - - *295 + - *297 + - *298 - *212 responses: '200': @@ -111157,7 +111496,7 @@ paths: application/json: schema: type: array - items: *296 + items: *299 examples: default: value: @@ -111215,16 +111554,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: - - *294 - - *295 - *297 + - *298 + - *300 - *212 responses: '200': description: Response content: application/json: - schema: *296 + schema: *299 examples: default: value: @@ -111259,10 +111598,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#delete-package-version-for-a-user parameters: - - *294 - - *295 - - *212 - *297 + - *298 + - *212 + - *300 responses: '204': description: Response @@ -111294,10 +111633,10 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-cloud@latest//rest/packages/packages#restore-package-version-for-a-user parameters: - - *294 - - *295 - - *212 - *297 + - *298 + - *212 + - *300 responses: '204': description: Response @@ -111344,7 +111683,7 @@ paths: application/json: schema: type: array - items: *308 + items: *311 examples: default: value: @@ -111627,7 +111966,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -111657,9 +111996,9 @@ paths: description: Response content: application/json: - schema: *328 + schema: *331 examples: - default: *329 + default: *332 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111687,9 +112026,9 @@ paths: description: Response content: application/json: - schema: *332 + schema: *335 examples: - default: *333 + default: *336 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111717,9 +112056,9 @@ paths: description: Response content: application/json: - schema: *334 + schema: *337 examples: - default: *335 + default: *338 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -111747,9 +112086,9 @@ paths: application/json: schema: type: array - items: *710 + items: *713 examples: - default: *711 + default: *714 headers: Link: *37 x-github: @@ -111779,9 +112118,9 @@ paths: application/json: schema: type: array - items: *712 + items: *715 examples: - default: *721 + default: *724 headers: Link: *37 x-github: @@ -111806,7 +112145,7 @@ paths: url: https://docs.github.com/enterprise-cloud@latest//rest/activity/starring#list-repositories-starred-by-a-user parameters: - *212 - - *722 + - *725 - *84 - *17 - *19 @@ -111818,11 +112157,11 @@ paths: schema: anyOf: - type: array - items: *723 + items: *726 - type: array items: *61 examples: - default-response: *715 + default-response: *718 headers: Link: *37 x-github: @@ -111853,7 +112192,7 @@ paths: type: array items: *190 examples: - default: *298 + default: *301 headers: Link: *37 x-github: @@ -111982,7 +112321,7 @@ webhooks: type: string enum: - disabled - enterprise: &724 + enterprise: &727 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -112051,7 +112390,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &725 + installation: &728 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -112072,7 +112411,7 @@ webhooks: required: - id - node_id - organization: &726 + organization: &729 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -112145,7 +112484,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &727 + repository: &730 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -113058,10 +113397,10 @@ webhooks: type: string enum: - enabled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -113137,11 +113476,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: &728 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + rule: &731 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) @@ -113364,11 +113703,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + rule: *731 sender: *4 required: - action @@ -113556,11 +113895,11 @@ webhooks: - everyone required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - rule: *728 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + rule: *731 sender: *4 required: - action @@ -113633,7 +113972,7 @@ webhooks: required: true content: application/json: - schema: &731 + schema: &734 title: Exemption request cancellation event type: object properties: @@ -113641,11 +113980,11 @@ webhooks: type: string enum: - cancelled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: &729 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: &732 title: Exemption Request description: A request from a user to be exempted from a set of rules. @@ -113875,7 +114214,7 @@ webhooks: - array - 'null' description: The responses to the exemption request. - items: &730 + items: &733 title: Exemption response description: A response to an exemption request by a delegated bypasser. @@ -113987,7 +114326,7 @@ webhooks: required: true content: application/json: - schema: &732 + schema: &735 title: Exemption request completed event type: object properties: @@ -113995,11 +114334,11 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 sender: *4 required: - action @@ -114071,7 +114410,7 @@ webhooks: required: true content: application/json: - schema: &733 + schema: &736 title: Exemption request created event type: object properties: @@ -114079,11 +114418,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 sender: *4 required: - action @@ -114155,7 +114494,7 @@ webhooks: required: true content: application/json: - schema: &734 + schema: &737 title: Exemption response dismissed event type: object properties: @@ -114163,12 +114502,12 @@ webhooks: type: string enum: - response_dismissed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 - exemption_response: *730 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 + exemption_response: *733 sender: *4 required: - action @@ -114242,7 +114581,7 @@ webhooks: required: true content: application/json: - schema: &735 + schema: &738 title: Exemption response submitted event type: object properties: @@ -114250,12 +114589,12 @@ webhooks: type: string enum: - response_submitted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - exemption_request: *729 - exemption_response: *730 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + exemption_request: *732 + exemption_response: *733 sender: *4 required: - action @@ -114328,7 +114667,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114395,7 +114734,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114462,7 +114801,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *736 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114529,7 +114868,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *737 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114597,7 +114936,7 @@ webhooks: required: true content: application/json: - schema: *735 + schema: *738 responses: '200': description: Return a 200 status to indicate that the data was received @@ -114675,7 +115014,7 @@ webhooks: type: string enum: - completed - check_run: &737 + check_run: &740 title: CheckRun description: A check performed on the code of a given code change type: object @@ -114743,7 +115082,7 @@ webhooks: - MDEwOkNoZWNrU3VpdGU1 pull_requests: type: array - items: *431 + items: *434 repository: *190 status: type: string @@ -114788,7 +115127,7 @@ webhooks: - examples: - neutral - deployment: *736 + deployment: *739 details_url: type: string examples: @@ -114848,7 +115187,7 @@ webhooks: - annotations_url pull_requests: type: array - items: *431 + items: *434 started_at: type: string format: date-time @@ -114886,9 +115225,9 @@ webhooks: - output - app - pull_requests - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - check_run @@ -115281,10 +115620,10 @@ webhooks: type: string enum: - created - check_run: *737 - installation: *725 - organization: *726 - repository: *727 + check_run: *740 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - check_run @@ -115680,10 +116019,10 @@ webhooks: type: string enum: - requested_action - check_run: *737 - installation: *725 - organization: *726 - repository: *727 + check_run: *740 + installation: *728 + organization: *729 + repository: *730 requested_action: description: The action requested by the user. type: object @@ -116088,10 +116427,10 @@ webhooks: type: string enum: - rerequested - check_run: *737 - installation: *725 - organization: *726 - repository: *727 + check_run: *740 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - check_run @@ -117083,10 +117422,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -117771,10 +118110,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -118453,10 +118792,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -118622,7 +118961,7 @@ webhooks: required: - login - id - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -118774,20 +119113,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &738 + commit_oid: &741 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: *724 - installation: *725 - organization: *726 - ref: &739 + enterprise: *727 + installation: *728 + organization: *729 + ref: &742 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: *727 + repository: *730 sender: *4 required: - action @@ -118951,7 +119290,7 @@ webhooks: required: - login - id - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119192,12 +119531,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -119295,7 +119634,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -119477,12 +119816,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -119648,7 +119987,7 @@ webhooks: required: - login - id - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: The reason for dismissing or closing the alert. type: @@ -119825,12 +120164,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -119930,7 +120269,7 @@ webhooks: type: - object - 'null' - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120110,9 +120449,9 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -120120,7 +120459,7 @@ webhooks: type: - string - 'null' - repository: *727 + repository: *730 sender: *4 required: - action @@ -120216,7 +120555,7 @@ webhooks: dismissed_by: type: - 'null' - dismissed_comment: *443 + dismissed_comment: *446 dismissed_reason: description: 'The reason for dismissing or closing the alert. Can be one of: `false positive`, `won''t fix`, and `used in @@ -120363,12 +120702,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *738 - enterprise: *724 - installation: *725 - organization: *726 - ref: *739 - repository: *727 + commit_oid: *741 + enterprise: *727 + installation: *728 + organization: *729 + ref: *742 + repository: *730 sender: *4 required: - action @@ -120630,10 +120969,10 @@ webhooks: - updated_at - author_association - body - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -120714,18 +121053,18 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *726 - pusher_type: &740 + organization: *729 + pusher_type: &743 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &741 + ref: &744 description: The [`git ref`](https://docs.github.com/enterprise-cloud@latest//rest/git/refs#get-a-reference) resource. type: string @@ -120735,7 +121074,7 @@ webhooks: enum: - tag - branch - repository: *727 + repository: *730 sender: *4 required: - ref @@ -120818,9 +121157,9 @@ webhooks: enum: - created definition: *110 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -120905,9 +121244,9 @@ webhooks: description: The name of the property that was deleted. required: - property_name - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -120985,9 +121324,9 @@ webhooks: enum: - updated definition: *110 - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -121064,19 +121403,19 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - repository: *727 - organization: *726 + enterprise: *727 + installation: *728 + repository: *730 + organization: *729 sender: *4 new_property_values: type: array description: The new custom property values for the repository. - items: *310 + items: *313 old_property_values: type: array description: The old custom property values for the repository. - items: *310 + items: *313 required: - action - repository @@ -121152,18 +121491,18 @@ webhooks: title: delete event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - pusher_type: *740 - ref: *741 + enterprise: *727 + installation: *728 + organization: *729 + pusher_type: *743 + ref: *744 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *727 + repository: *730 sender: *4 required: - ref @@ -121247,11 +121586,11 @@ webhooks: type: string enum: - auto_dismissed - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121335,11 +121674,11 @@ webhooks: type: string enum: - auto_reopened - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121423,11 +121762,11 @@ webhooks: type: string enum: - created - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121509,11 +121848,11 @@ webhooks: type: string enum: - dismissed - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121595,11 +121934,11 @@ webhooks: type: string enum: - fixed - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121682,11 +122021,11 @@ webhooks: type: string enum: - reintroduced - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121768,11 +122107,11 @@ webhooks: type: string enum: - reopened - alert: *495 - installation: *725 - organization: *726 - enterprise: *724 - repository: *727 + alert: *498 + installation: *728 + organization: *729 + enterprise: *727 + repository: *730 sender: *4 required: - action @@ -121849,9 +122188,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - key: &742 + enterprise: *727 + installation: *728 + key: &745 description: The [`deploy key`](https://docs.github.com/enterprise-cloud@latest//rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -121889,8 +122228,8 @@ webhooks: - verified - created_at - read_only - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -121967,11 +122306,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - key: *742 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + key: *745 + organization: *729 + repository: *730 sender: *4 required: - action @@ -122543,12 +122882,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: &746 + workflow: &749 title: Workflow type: - object @@ -123286,13 +123625,13 @@ webhooks: description: The URL to review the deployment protection rule. type: string format: uri - deployment: *501 + deployment: *504 pull_requests: type: array - items: *583 - repository: *727 - organization: *726 - installation: *725 + items: *586 + repository: *730 + organization: *729 + installation: *728 sender: *4 responses: '200': @@ -123363,7 +123702,7 @@ webhooks: type: string enum: - approved - approver: &743 + approver: &746 type: object properties: avatar_url: @@ -123406,11 +123745,11 @@ webhooks: type: string comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: &744 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + reviewers: &747 type: array items: type: object @@ -123491,7 +123830,7 @@ webhooks: sender: *4 since: type: string - workflow_job_run: &745 + workflow_job_run: &748 type: object properties: conclusion: @@ -124237,18 +124576,18 @@ webhooks: type: string enum: - rejected - approver: *743 + approver: *746 comment: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - reviewers: *744 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + reviewers: *747 sender: *4 since: type: string - workflow_job_run: *745 + workflow_job_run: *748 workflow_job_runs: type: array items: @@ -124965,13 +125304,13 @@ webhooks: type: string enum: - requested - enterprise: *724 + enterprise: *727 environment: type: string - installation: *725 - organization: *726 - repository: *727 - requestor: &751 + installation: *728 + organization: *729 + repository: *730 + requestor: &754 title: User type: - object @@ -126914,12 +127253,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Deployment Workflow Run type: @@ -127610,7 +127949,7 @@ webhooks: type: string enum: - answered - answer: &749 + answer: &752 type: object properties: author_association: @@ -127770,7 +128109,7 @@ webhooks: - created_at - updated_at - body - discussion: &747 + discussion: &750 title: Discussion description: A Discussion in a repository. type: object @@ -128066,7 +128405,7 @@ webhooks: - id labels: type: array - items: *546 + items: *549 required: - repository_url - category @@ -128088,10 +128427,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128218,11 +128557,11 @@ webhooks: - from required: - category - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128305,11 +128644,11 @@ webhooks: type: string enum: - closed - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128391,7 +128730,7 @@ webhooks: type: string enum: - created - comment: &748 + comment: &751 type: object properties: author_association: @@ -128551,11 +128890,11 @@ webhooks: - updated_at - body - reactions - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128638,12 +128977,12 @@ webhooks: type: string enum: - deleted - comment: *748 - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *751 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128738,12 +129077,12 @@ webhooks: - from required: - body - comment: *748 - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + comment: *751 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128827,11 +129166,11 @@ webhooks: type: string enum: - created - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -128913,11 +129252,11 @@ webhooks: type: string enum: - deleted - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129017,11 +129356,11 @@ webhooks: type: string required: - from - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129103,10 +129442,10 @@ webhooks: type: string enum: - labeled - discussion: *747 - enterprise: *724 - installation: *725 - label: &750 + discussion: *750 + enterprise: *727 + installation: *728 + label: &753 title: Label type: object properties: @@ -129139,8 +129478,8 @@ webhooks: - color - default - description - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129223,11 +129562,11 @@ webhooks: type: string enum: - locked - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129309,11 +129648,11 @@ webhooks: type: string enum: - pinned - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129395,11 +129734,11 @@ webhooks: type: string enum: - reopened - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129484,16 +129823,16 @@ webhooks: changes: type: object properties: - new_discussion: *747 - new_repository: *727 + new_discussion: *750 + new_repository: *730 required: - new_discussion - new_repository - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129576,10 +129915,10 @@ webhooks: type: string enum: - unanswered - discussion: *747 - old_answer: *749 - organization: *726 - repository: *727 + discussion: *750 + old_answer: *752 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129661,12 +130000,12 @@ webhooks: type: string enum: - unlabeled - discussion: *747 - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129749,11 +130088,11 @@ webhooks: type: string enum: - unlocked - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129835,11 +130174,11 @@ webhooks: type: string enum: - unpinned - discussion: *747 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + discussion: *750 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -129911,7 +130250,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *736 responses: '200': description: Return a 200 status to indicate that the data was received @@ -129977,7 +130316,7 @@ webhooks: required: true content: application/json: - schema: *735 + schema: *738 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130043,7 +130382,7 @@ webhooks: required: true content: application/json: - schema: *731 + schema: *734 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130109,7 +130448,7 @@ webhooks: required: true content: application/json: - schema: *732 + schema: *735 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130175,7 +130514,7 @@ webhooks: required: true content: application/json: - schema: *733 + schema: *736 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130241,7 +130580,7 @@ webhooks: required: true content: application/json: - schema: *734 + schema: *737 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130307,7 +130646,7 @@ webhooks: required: true content: application/json: - schema: *735 + schema: *738 responses: '200': description: Return a 200 status to indicate that the data was received @@ -130374,7 +130713,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *724 + enterprise: *727 forkee: description: The created [`repository`](https://docs.github.com/enterprise-cloud@latest//rest/repos/repos#get-a-repository) resource. @@ -131052,9 +131391,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - forkee @@ -131200,9 +131539,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pages: description: The pages that were updated. type: array @@ -131240,7 +131579,7 @@ webhooks: - action - sha - html_url - repository: *727 + repository: *730 sender: *4 required: - pages @@ -131316,10 +131655,10 @@ webhooks: type: string enum: - created - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: &752 + organization: *729 + repositories: &755 description: An array of repository objects that the installation can access. type: array @@ -131345,8 +131684,8 @@ webhooks: - name - full_name - private - repository: *727 - requester: *751 + repository: *730 + requester: *754 sender: *4 required: - action @@ -131421,11 +131760,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -131502,11 +131841,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -131583,10 +131922,10 @@ webhooks: type: string enum: - added - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories_added: &753 + organization: *729 + repositories_added: &756 description: An array of repository objects, which were added to the installation. type: array @@ -131632,15 +131971,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *727 - repository_selection: &754 + repository: *730 + repository_selection: &757 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *751 + requester: *754 sender: *4 required: - action @@ -131719,10 +132058,10 @@ webhooks: type: string enum: - removed - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories_added: *753 + organization: *729 + repositories_added: *756 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -131749,9 +132088,9 @@ webhooks: - name - full_name - private - repository: *727 - repository_selection: *754 - requester: *751 + repository: *730 + repository_selection: *757 + requester: *754 sender: *4 required: - action @@ -131830,11 +132169,11 @@ webhooks: type: string enum: - suspend - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -132017,10 +132356,10 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 target_type: type: string @@ -132099,11 +132438,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *724 + enterprise: *727 installation: *20 - organization: *726 - repositories: *752 - repository: *727 + organization: *729 + repositories: *755 + repository: *730 requester: type: - 'null' @@ -132351,8 +132690,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -133199,6 +133538,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -133542,8 +133882,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -133623,7 +133963,7 @@ webhooks: type: string enum: - deleted - comment: &755 + comment: &758 title: issue comment description: The [comment](https://docs.github.com/enterprise-cloud@latest//rest/issues/comments#get-an-issue-comment) itself. @@ -133790,8 +134130,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -134634,6 +134974,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -134979,8 +135320,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -135060,7 +135401,7 @@ webhooks: type: string enum: - edited - changes: &780 + changes: &783 description: The changes to the comment. type: object properties: @@ -135072,9 +135413,9 @@ webhooks: type: string required: - from - comment: *755 - enterprise: *724 - installation: *725 + comment: *758 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) the comment belongs to. @@ -135920,6 +136261,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -136263,8 +136605,8 @@ webhooks: - state - locked - assignee - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -136346,10 +136688,10 @@ webhooks: type: string enum: - assigned - assignee: *751 - enterprise: *724 - installation: *725 - issue: &758 + assignee: *754 + enterprise: *727 + installation: *728 + issue: &761 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -137191,6 +137533,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -137293,8 +137636,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -137374,8 +137717,8 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -138222,6 +138565,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -138467,8 +138811,8 @@ webhooks: required: - state - closed_at - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -138547,8 +138891,8 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -139384,6 +139728,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -139485,8 +139830,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -139565,8 +139910,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -140427,6 +140772,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -140507,7 +140853,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &756 + milestone: &759 title: Milestone description: A collection of related issues and pull requests. type: object @@ -140650,8 +140996,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -140750,8 +141096,8 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -141590,6 +141936,7 @@ webhooks: timeline_url: type: string format: uri + type: *278 title: description: Title of the issue type: string @@ -141695,9 +142042,9 @@ webhooks: - active_lock_reason - body - reactions - label: *750 - organization: *726 - repository: *727 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -141777,8 +142124,8 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -142616,6 +142963,7 @@ webhooks: timeline_url: type: string format: uri + type: *278 title: description: Title of the issue type: string @@ -142721,9 +143069,9 @@ webhooks: - active_lock_reason - body - reactions - label: *750 - organization: *726 - repository: *727 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -142803,8 +143151,8 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -143667,6 +144015,7 @@ webhooks: timeline_url: type: string format: uri + type: *278 title: description: Title of the issue type: string @@ -143749,8 +144098,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -143829,8 +144178,8 @@ webhooks: type: string enum: - milestoned - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -144690,6 +145039,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -144769,9 +145119,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *756 - organization: *726 - repository: *727 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -146271,8 +146621,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -147114,6 +147464,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -147215,8 +147566,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -147296,9 +147647,9 @@ webhooks: type: string enum: - pinned - enterprise: *724 - installation: *725 - issue: &757 + enterprise: *727 + installation: *728 + issue: &760 title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) itself. @@ -148134,6 +148485,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -148235,8 +148587,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -148315,8 +148667,8 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -149260,8 +149612,9 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + type: *278 + organization: *729 + repository: *730 sender: *4 required: - action @@ -150180,6 +150533,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -150761,11 +151115,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *724 - installation: *725 - issue: *757 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *760 + organization: *729 + repository: *730 sender: *4 required: - action @@ -150846,7 +151200,7 @@ webhooks: type: string enum: - unassigned - assignee: &783 + assignee: &786 title: User type: - object @@ -150918,11 +151272,11 @@ webhooks: required: - login - id - enterprise: *724 - installation: *725 - issue: *758 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *761 + organization: *729 + repository: *730 sender: *4 required: - action @@ -151001,12 +151355,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - issue: *758 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *761 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -151086,8 +151440,8 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-cloud@latest//rest/issues/issues#get-an-issue) @@ -151951,6 +152305,7 @@ webhooks: title: description: Title of the issue type: string + type: *278 updated_at: type: string format: date-time @@ -152030,8 +152385,8 @@ webhooks: format: uri user_view_type: type: string - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152111,11 +152466,11 @@ webhooks: type: string enum: - unpinned - enterprise: *724 - installation: *725 - issue: *757 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + issue: *760 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152194,11 +152549,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152276,11 +152631,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152390,11 +152745,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - label: *750 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + label: *753 + organization: *729 + repository: *730 sender: *4 required: - action @@ -152476,9 +152831,9 @@ webhooks: - cancelled effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: &759 + enterprise: *727 + installation: *728 + marketplace_purchase: &762 title: Marketplace Purchase type: object required: @@ -152566,8 +152921,8 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: &760 + organization: *729 + previous_marketplace_purchase: &763 title: Marketplace Purchase type: object properties: @@ -152651,7 +153006,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *730 sender: *4 required: - action @@ -152731,10 +153086,10 @@ webhooks: - changed effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *759 - organization: *726 + enterprise: *727 + installation: *728 + marketplace_purchase: *762 + organization: *729 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152822,7 +153177,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *730 sender: *4 required: - action @@ -152904,10 +153259,10 @@ webhooks: - pending_change effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *759 - organization: *726 + enterprise: *727 + installation: *728 + marketplace_purchase: *762 + organization: *729 previous_marketplace_purchase: title: Marketplace Purchase type: object @@ -152993,7 +153348,7 @@ webhooks: - on_free_trial - free_trial_ends_on - plan - repository: *727 + repository: *730 sender: *4 required: - action @@ -153074,8 +153429,8 @@ webhooks: - pending_change_cancelled effective_date: type: string - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 marketplace_purchase: title: Marketplace Purchase type: object @@ -153161,9 +153516,9 @@ webhooks: type: integer unit_count: type: integer - organization: *726 - previous_marketplace_purchase: *760 - repository: *727 + organization: *729 + previous_marketplace_purchase: *763 + repository: *730 sender: *4 required: - action @@ -153243,12 +153598,12 @@ webhooks: - purchased effective_date: type: string - enterprise: *724 - installation: *725 - marketplace_purchase: *759 - organization: *726 - previous_marketplace_purchase: *760 - repository: *727 + enterprise: *727 + installation: *728 + marketplace_purchase: *762 + organization: *729 + previous_marketplace_purchase: *763 + repository: *730 sender: *4 required: - action @@ -153350,11 +153705,11 @@ webhooks: type: string required: - to - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 sender: *4 required: - action @@ -153456,11 +153811,11 @@ webhooks: type: - string - 'null' - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 sender: *4 required: - action @@ -153539,11 +153894,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 sender: *4 required: - action @@ -153621,11 +153976,11 @@ webhooks: type: string enum: - added - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153703,7 +154058,7 @@ webhooks: required: - login - id - team: &761 + team: &764 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -153896,11 +154251,11 @@ webhooks: type: string enum: - removed - enterprise: *724 - installation: *725 - member: *751 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + member: *754 + organization: *729 + repository: *730 scope: description: The scope of the membership. Currently, can only be `team`. @@ -153979,7 +154334,7 @@ webhooks: required: - login - id - team: *761 + team: *764 required: - action - scope @@ -154061,8 +154416,8 @@ webhooks: type: string enum: - checks_requested - installation: *725 - merge_group: &762 + installation: *728 + merge_group: &765 type: object title: Merge Group description: A group of pull requests that the merge queue has grouped @@ -154081,15 +154436,15 @@ webhooks: description: The full ref of the branch the merge group will be merged into. type: string - head_commit: *435 + head_commit: *438 required: - head_sha - head_ref - base_sha - base_ref - head_commit - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154175,10 +154530,10 @@ webhooks: - merged - invalidated - dequeued - installation: *725 - merge_group: *762 - organization: *726 - repository: *727 + installation: *728 + merge_group: *765 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154251,7 +154606,7 @@ webhooks: type: string enum: - deleted - enterprise: *724 + enterprise: *727 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -154359,12 +154714,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *725 - organization: *726 + installation: *728 + organization: *729 repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -154444,11 +154799,11 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154527,9 +154882,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - milestone: &763 + enterprise: *727 + installation: *728 + milestone: &766 title: Milestone description: A collection of related issues and pull requests. type: object @@ -154671,8 +155026,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154751,11 +155106,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154865,11 +155220,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - milestone: *756 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *759 + organization: *729 + repository: *730 sender: *4 required: - action @@ -154949,11 +155304,11 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - milestone: *763 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + milestone: *766 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155032,11 +155387,11 @@ webhooks: type: string enum: - blocked - blocked_user: *751 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *754 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155115,11 +155470,11 @@ webhooks: type: string enum: - unblocked - blocked_user: *751 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + blocked_user: *754 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155198,9 +155553,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - membership: &764 + enterprise: *727 + installation: *728 + membership: &767 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -155294,8 +155649,8 @@ webhooks: - role - organization_url - user - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155373,11 +155728,11 @@ webhooks: type: string enum: - member_added - enterprise: *724 - installation: *725 - membership: *764 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + membership: *767 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155456,8 +155811,8 @@ webhooks: type: string enum: - member_invited - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -155579,10 +155934,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 - user: *751 + user: *754 required: - action - invitation @@ -155660,11 +156015,11 @@ webhooks: type: string enum: - member_removed - enterprise: *724 - installation: *725 - membership: *764 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + membership: *767 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155751,11 +156106,11 @@ webhooks: properties: from: type: string - enterprise: *724 - installation: *725 - membership: *764 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + membership: *767 + organization: *729 + repository: *730 sender: *4 required: - action @@ -155831,9 +156186,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 package: description: Information about the package. type: object @@ -156356,7 +156711,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &765 + items: &768 title: Ruby Gems metadata type: object properties: @@ -156453,7 +156808,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -156529,9 +156884,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 package: description: Information about the package. type: object @@ -156893,7 +157248,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *765 + items: *768 source_url: type: string format: uri @@ -156964,7 +157319,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -157145,12 +157500,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *724 + enterprise: *727 id: type: integer - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - id @@ -157230,7 +157585,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &766 + personal_access_token_request: &769 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -157380,10 +157735,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *724 - organization: *726 + enterprise: *727 + organization: *729 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157462,11 +157817,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *766 - enterprise: *724 - organization: *726 + personal_access_token_request: *769 + enterprise: *727 + organization: *729 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157544,11 +157899,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *766 - enterprise: *724 - organization: *726 + personal_access_token_request: *769 + enterprise: *727 + organization: *729 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157625,11 +157980,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *766 - organization: *726 - enterprise: *724 + personal_access_token_request: *769 + organization: *729 + enterprise: *727 sender: *4 - installation: *725 + installation: *728 required: - action - personal_access_token_request @@ -157733,7 +158088,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *767 + last_response: *770 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -157765,8 +158120,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 zen: description: Random string of GitHub zen. @@ -158011,10 +158366,10 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: &768 + enterprise: *727 + installation: *728 + organization: *729 + project_card: &771 title: Project Card type: object properties: @@ -158137,7 +158492,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *730 sender: *4 required: - action @@ -158218,11 +158573,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_card: *768 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_card: *771 + repository: *730 sender: *4 required: - action @@ -158302,9 +158657,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 project_card: title: Project Card type: object @@ -158434,7 +158789,7 @@ webhooks: repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -158528,11 +158883,11 @@ webhooks: - from required: - note - enterprise: *724 - installation: *725 - organization: *726 - project_card: *768 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_card: *771 + repository: *730 sender: *4 required: - action @@ -158626,9 +158981,9 @@ webhooks: - from required: - column_id - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 project_card: allOf: - title: Project Card @@ -158825,7 +159180,7 @@ webhooks: type: string required: - after_id - repository: *727 + repository: *730 sender: *4 required: - action @@ -158905,10 +159260,10 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - organization: *726 - project: &770 + enterprise: *727 + installation: *728 + organization: *729 + project: &773 title: Project type: object properties: @@ -159035,7 +159390,7 @@ webhooks: - creator - created_at - updated_at - repository: *727 + repository: *730 sender: *4 required: - action @@ -159115,10 +159470,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project_column: &769 + enterprise: *727 + installation: *728 + organization: *729 + project_column: &772 title: Project Column type: object properties: @@ -159158,7 +159513,7 @@ webhooks: - name - created_at - updated_at - repository: *727 + repository: *730 sender: *4 required: - action @@ -159237,14 +159592,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project_column: *769 + enterprise: *727 + installation: *728 + organization: *729 + project_column: *772 repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -159333,11 +159688,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project_column: *769 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_column: *772 + repository: *730 sender: *4 required: - action @@ -159417,11 +159772,11 @@ webhooks: type: string enum: - moved - enterprise: *724 - installation: *725 - organization: *726 - project_column: *769 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project_column: *772 + repository: *730 sender: *4 required: - action @@ -159501,11 +159856,11 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - project: *770 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 + repository: *730 sender: *4 required: - action @@ -159585,14 +159940,14 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - project: *770 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 repository: anyOf: - type: 'null' - - *727 + - *730 sender: *4 required: - action @@ -159693,11 +160048,11 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - project: *770 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 + repository: *730 sender: *4 required: - action @@ -159776,11 +160131,11 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - organization: *726 - project: *770 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + project: *773 + repository: *730 sender: *4 required: - action @@ -159861,9 +160216,9 @@ webhooks: type: string enum: - closed - installation: *725 - organization: *726 - projects_v2: &771 + installation: *728 + organization: *729 + projects_v2: &774 title: Projects v2 Project description: A projects v2 project type: object @@ -160011,9 +160366,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -160094,9 +160449,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -160217,9 +160572,9 @@ webhooks: type: string to: type: string - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -160302,7 +160657,7 @@ webhooks: type: string enum: - archived - changes: &775 + changes: &778 type: object properties: archived_at: @@ -160318,9 +160673,9 @@ webhooks: - string - 'null' format: date-time - installation: *725 - organization: *726 - projects_v2_item: &772 + installation: *728 + organization: *729 + projects_v2_item: &775 title: Projects v2 Item description: An item belonging to a project type: object @@ -160459,9 +160814,9 @@ webhooks: - 'null' to: type: string - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160543,9 +160898,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160626,9 +160981,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160733,7 +161088,7 @@ webhooks: oneOf: - type: string - type: integer - - &773 + - &776 title: Projects v2 Single Select Option description: An option for a single select field type: object @@ -160753,7 +161108,7 @@ webhooks: required: - id - name - - &774 + - &777 title: Projects v2 Iteration Setting description: An iteration setting for an iteration field type: object @@ -160782,8 +161137,8 @@ webhooks: oneOf: - type: string - type: integer - - *773 - - *774 + - *776 + - *777 type: - 'null' - string @@ -160806,9 +161161,9 @@ webhooks: - 'null' required: - body - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160905,9 +161260,9 @@ webhooks: type: - string - 'null' - installation: *725 - organization: *726 - projects_v2_item: *772 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -160990,10 +161345,10 @@ webhooks: type: string enum: - restored - changes: *775 - installation: *725 - organization: *726 - projects_v2_item: *772 + changes: *778 + installation: *728 + organization: *729 + projects_v2_item: *775 sender: *4 required: - action @@ -161075,9 +161430,9 @@ webhooks: type: string enum: - reopened - installation: *725 - organization: *726 - projects_v2: *771 + installation: *728 + organization: *729 + projects_v2: *774 sender: *4 required: - action @@ -161158,9 +161513,9 @@ webhooks: type: string enum: - created - installation: *725 - organization: *726 - projects_v2_status_update: &776 + installation: *728 + organization: *729 + projects_v2_status_update: &779 title: Projects v2 Status Update description: An status update belonging to a project type: object @@ -161295,9 +161650,9 @@ webhooks: type: string enum: - deleted - installation: *725 - organization: *726 - projects_v2_status_update: *776 + installation: *728 + organization: *729 + projects_v2_status_update: *779 sender: *4 required: - action @@ -161443,9 +161798,9 @@ webhooks: - string - 'null' format: date - installation: *725 - organization: *726 - projects_v2_status_update: *776 + installation: *728 + organization: *729 + projects_v2_status_update: *779 sender: *4 required: - action @@ -161516,10 +161871,10 @@ webhooks: title: public event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - repository @@ -161596,13 +161951,13 @@ webhooks: type: string enum: - assigned - assignee: *751 - enterprise: *724 - installation: *725 - number: &777 + assignee: *754 + enterprise: *727 + installation: *728 + number: &780 description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -163951,7 +164306,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -164033,11 +164388,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -166379,7 +166734,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *730 sender: *4 required: - action @@ -166461,11 +166816,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -168807,7 +169162,7 @@ webhooks: - draft reason: type: string - repository: *727 + repository: *730 sender: *4 required: - action @@ -168889,13 +169244,13 @@ webhooks: type: string enum: - closed - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: &778 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: &781 allOf: - - *583 + - *586 - type: object properties: allow_auto_merge: @@ -168957,7 +169312,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *727 + repository: *730 sender: *4 required: - action @@ -169038,12 +169393,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -169123,11 +169478,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *724 - milestone: *481 - number: *777 - organization: *726 - pull_request: &779 + enterprise: *727 + milestone: *484 + number: *780 + organization: *729 + pull_request: &782 title: Pull Request type: object properties: @@ -171454,7 +171809,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -171533,11 +171888,11 @@ webhooks: type: string enum: - dequeued - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -173883,7 +174238,7 @@ webhooks: - BRANCH_PROTECTIONS - GIT_TREE_INVALID - INVALID_MERGE_COMMIT - repository: *727 + repository: *730 sender: *4 required: - action @@ -174007,12 +174362,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -174092,11 +174447,11 @@ webhooks: type: string enum: - enqueued - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -176427,7 +176782,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -176507,11 +176862,11 @@ webhooks: type: string enum: - labeled - enterprise: *724 - installation: *725 - label: *750 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + label: *753 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -178859,7 +179214,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -178940,10 +179295,10 @@ webhooks: type: string enum: - locked - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -181289,7 +181644,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -181369,12 +181724,12 @@ webhooks: type: string enum: - milestoned - enterprise: *724 - milestone: *481 - number: *777 - organization: *726 - pull_request: *779 - repository: *727 + enterprise: *727 + milestone: *484 + number: *780 + organization: *729 + pull_request: *782 + repository: *730 sender: *4 required: - action @@ -181453,12 +181808,12 @@ webhooks: type: string enum: - opened - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -181539,12 +181894,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -181624,12 +181979,12 @@ webhooks: type: string enum: - reopened - enterprise: *724 - installation: *725 - number: *777 - organization: *726 - pull_request: *778 - repository: *727 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 + pull_request: *781 + repository: *730 sender: *4 required: - action @@ -182004,9 +182359,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: type: object properties: @@ -184236,7 +184591,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *730 sender: *4 required: - action @@ -184316,7 +184671,7 @@ webhooks: type: string enum: - deleted - comment: &781 + comment: &784 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. @@ -184609,9 +184964,9 @@ webhooks: - start_side - side - reactions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: type: object properties: @@ -186829,7 +187184,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *730 sender: *4 required: - action @@ -186909,11 +187264,11 @@ webhooks: type: string enum: - edited - changes: *780 - comment: *781 - enterprise: *724 - installation: *725 - organization: *726 + changes: *783 + comment: *784 + enterprise: *727 + installation: *728 + organization: *729 pull_request: type: object properties: @@ -189134,7 +189489,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *727 + repository: *730 sender: *4 required: - action @@ -189215,9 +189570,9 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -191450,7 +191805,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *730 review: description: The review that was affected. type: object @@ -191696,9 +192051,9 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -193812,8 +194167,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: &782 + repository: *730 + review: &785 description: The review that was affected. type: object properties: @@ -194046,12 +194401,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -196398,7 +196753,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_reviewer: title: User type: @@ -196484,12 +196839,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -198843,7 +199198,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_team: title: Team description: Groups of organization members that gives permissions @@ -199038,12 +199393,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -201392,7 +201747,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_reviewer: title: User type: @@ -201479,12 +201834,12 @@ webhooks: type: string enum: - review_requested - enterprise: *724 - installation: *725 + enterprise: *727 + installation: *728 number: description: The pull request number. type: integer - organization: *726 + organization: *729 pull_request: title: Pull Request type: object @@ -203824,7 +204179,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 requested_team: title: Team description: Groups of organization members that gives permissions @@ -204008,9 +204363,9 @@ webhooks: type: string enum: - submitted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -206246,8 +206601,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 - review: *782 + repository: *730 + review: *785 sender: *4 required: - action @@ -206327,9 +206682,9 @@ webhooks: type: string enum: - resolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -208460,7 +208815,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *730 sender: *4 thread: type: object @@ -208852,9 +209207,9 @@ webhooks: type: string enum: - unresolved - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 pull_request: title: Simple Pull Request type: object @@ -210968,7 +211323,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *727 + repository: *730 sender: *4 thread: type: object @@ -211362,10 +211717,10 @@ webhooks: type: string before: type: string - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -213700,7 +214055,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -213782,11 +214137,11 @@ webhooks: type: string enum: - unassigned - assignee: *783 - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + assignee: *786 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -216136,7 +216491,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -216215,11 +216570,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *724 - installation: *725 - label: *750 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + label: *753 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -218558,7 +218913,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -218639,10 +218994,10 @@ webhooks: type: string enum: - unlocked - enterprise: *724 - installation: *725 - number: *777 - organization: *726 + enterprise: *727 + installation: *728 + number: *780 + organization: *729 pull_request: title: Pull Request type: object @@ -220971,7 +221326,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *727 + repository: *730 sender: *4 required: - action @@ -221174,7 +221529,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *724 + enterprise: *727 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -221269,8 +221624,8 @@ webhooks: - url - author - committer - installation: *725 - organization: *726 + installation: *728 + organization: *729 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -221858,9 +222213,9 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 registry_package: type: object properties: @@ -222337,7 +222692,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *765 + items: *768 summary: type: string tag_name: @@ -222393,7 +222748,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -222471,9 +222826,9 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 registry_package: type: object properties: @@ -222785,7 +223140,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *765 + items: *768 summary: type: string tag_name: @@ -222835,7 +223190,7 @@ webhooks: - owner - package_version - registry - repository: *727 + repository: *730 sender: *4 required: - action @@ -222912,10 +223267,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - release: &784 + enterprise: *727 + installation: *728 + organization: *729 + release: &787 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -223231,7 +223586,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *727 + repository: *730 sender: *4 required: - action @@ -223308,11 +223663,11 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - release: *784 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *787 + repository: *730 sender: *4 required: - action @@ -223429,11 +223784,11 @@ webhooks: type: boolean required: - to - enterprise: *724 - installation: *725 - organization: *726 - release: *784 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *787 + repository: *730 sender: *4 required: - action @@ -223511,9 +223866,9 @@ webhooks: type: string enum: - prereleased - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 release: title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) @@ -223834,7 +224189,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *730 sender: *4 required: - action @@ -223910,10 +224265,10 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - release: &785 + enterprise: *727 + installation: *728 + organization: *729 + release: &788 title: Release description: The [release](https://docs.github.com/enterprise-cloud@latest//rest/releases/releases/#get-a-release) object. @@ -224231,7 +224586,7 @@ webhooks: - string - 'null' format: uri - repository: *727 + repository: *730 sender: *4 required: - action @@ -224307,11 +224662,11 @@ webhooks: type: string enum: - released - enterprise: *724 - installation: *725 - organization: *726 - release: *784 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *787 + repository: *730 sender: *4 required: - action @@ -224387,11 +224742,11 @@ webhooks: type: string enum: - unpublished - enterprise: *724 - installation: *725 - organization: *726 - release: *785 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + release: *788 + repository: *730 sender: *4 required: - action @@ -224467,11 +224822,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *636 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + repository_advisory: *639 sender: *4 required: - action @@ -224547,11 +224902,11 @@ webhooks: type: string enum: - reported - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - repository_advisory: *636 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + repository_advisory: *639 sender: *4 required: - action @@ -224627,10 +224982,10 @@ webhooks: type: string enum: - archived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224707,10 +225062,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224788,10 +225143,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224876,10 +225231,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -224994,10 +225349,10 @@ webhooks: - 'null' items: type: string - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225069,10 +225424,10 @@ webhooks: title: repository_import event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 status: type: string @@ -225153,10 +225508,10 @@ webhooks: type: string enum: - privatized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225233,10 +225588,10 @@ webhooks: type: string enum: - publicized - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225330,10 +225685,10 @@ webhooks: - name required: - repository - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225413,10 +225768,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 repository_ruleset: *124 sender: *4 required: @@ -225495,10 +225850,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 repository_ruleset: *124 sender: *4 required: @@ -225577,10 +225932,10 @@ webhooks: type: string enum: - edited - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 repository_ruleset: *124 changes: type: object @@ -225888,10 +226243,10 @@ webhooks: - from required: - owner - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -225969,10 +226324,10 @@ webhooks: type: string enum: - unarchived - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226050,7 +226405,7 @@ webhooks: type: string enum: - create - alert: &786 + alert: &789 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -226174,10 +226529,10 @@ webhooks: type: string enum: - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226387,10 +226742,10 @@ webhooks: type: string enum: - dismissed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226468,11 +226823,11 @@ webhooks: type: string enum: - reopen - alert: *786 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *789 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226674,10 +227029,10 @@ webhooks: enum: - fixed - open - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226755,7 +227110,7 @@ webhooks: type: string enum: - created - alert: &787 + alert: &790 type: object properties: number: *96 @@ -226865,10 +227220,10 @@ webhooks: - 'null' description: Whether the detected secret was found in multiple repositories in the same organization or business. - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -226949,11 +227304,11 @@ webhooks: type: string enum: - created - alert: *787 - installation: *725 - location: *788 - organization: *726 - repository: *727 + alert: *790 + installation: *728 + location: *791 + organization: *729 + repository: *730 sender: *4 required: - location @@ -227191,11 +227546,11 @@ webhooks: type: string enum: - publicly_leaked - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227273,11 +227628,11 @@ webhooks: type: string enum: - reopened - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227355,11 +227710,11 @@ webhooks: type: string enum: - resolved - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227437,11 +227792,11 @@ webhooks: type: string enum: - validated - alert: *787 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + alert: *790 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -227571,10 +227926,10 @@ webhooks: - organization - enterprise - - repository: *727 - enterprise: *724 - installation: *725 - organization: *726 + repository: *730 + enterprise: *727 + installation: *728 + organization: *729 sender: *4 required: - action @@ -227652,11 +228007,11 @@ webhooks: type: string enum: - published - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: &789 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + security_advisory: &792 description: The details of the security advisory, including summary, description, and severity. type: object @@ -227842,11 +228197,11 @@ webhooks: type: string enum: - updated - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 - security_advisory: *789 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 + security_advisory: *792 sender: *4 required: - action @@ -227919,10 +228274,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -228108,11 +228463,11 @@ webhooks: from: type: object properties: - security_and_analysis: *311 - enterprise: *724 - installation: *725 - organization: *726 - repository: *372 + security_and_analysis: *314 + enterprise: *727 + installation: *728 + organization: *729 + repository: *375 sender: *4 required: - changes @@ -228190,12 +228545,12 @@ webhooks: type: string enum: - cancelled - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: &790 + sponsorship: &793 type: object properties: created_at: @@ -228500,12 +228855,12 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -228593,12 +228948,12 @@ webhooks: type: string required: - from - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -228675,17 +229030,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &791 + effective_date: &794 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: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - sponsorship @@ -228759,7 +229114,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &792 + changes: &795 type: object properties: tier: @@ -228803,13 +229158,13 @@ webhooks: - from required: - tier - effective_date: *791 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + effective_date: *794 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -228886,13 +229241,13 @@ webhooks: type: string enum: - tier_changed - changes: *792 - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + changes: *795 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - sponsorship: *790 + sponsorship: *793 required: - action - changes @@ -228966,10 +229321,10 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229053,10 +229408,10 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 starred_at: description: 'The time the star was created. This is a timestamp @@ -229490,15 +229845,15 @@ webhooks: type: - string - 'null' - enterprise: *724 + enterprise: *727 id: description: The unique identifier of the status. type: integer - installation: *725 + installation: *728 name: type: string - organization: *726 - repository: *727 + organization: *729 + repository: *730 sender: *4 sha: description: The Commit SHA. @@ -229614,9 +229969,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229706,9 +230061,9 @@ webhooks: description: The ID of the sub-issue. type: number sub_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229798,9 +230153,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229890,9 +230245,9 @@ webhooks: description: The ID of the parent issue. type: number parent_issue: *148 - installation: *725 - organization: *726 - repository: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -229969,12 +230324,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - team: &793 + team: &796 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -230167,9 +230522,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -230639,7 +230994,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -230715,9 +231070,9 @@ webhooks: type: string enum: - created - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -231187,7 +231542,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -231264,9 +231619,9 @@ webhooks: type: string enum: - deleted - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -231736,7 +232091,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -231880,9 +232235,9 @@ webhooks: - from required: - permissions - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -232352,7 +232707,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - changes @@ -232430,9 +232785,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *724 - installation: *725 - organization: *726 + enterprise: *727 + installation: *728 + organization: *729 repository: title: Repository description: A git repository @@ -232902,7 +233257,7 @@ webhooks: - topics - visibility sender: *4 - team: *793 + team: *796 required: - action - team @@ -232978,10 +233333,10 @@ webhooks: type: string enum: - started - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 required: - action @@ -233054,17 +233409,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *724 + enterprise: *727 inputs: type: - object - 'null' additionalProperties: true - installation: *725 - organization: *726 + installation: *728 + organization: *729 ref: type: string - repository: *727 + repository: *730 sender: *4 workflow: type: string @@ -233146,10 +233501,10 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: allOf: @@ -233405,7 +233760,7 @@ webhooks: type: string required: - conclusion - deployment: *501 + deployment: *504 required: - action - repository @@ -233484,10 +233839,10 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: allOf: @@ -233769,7 +234124,7 @@ webhooks: required: - status - steps - deployment: *501 + deployment: *504 required: - action - repository @@ -233848,10 +234203,10 @@ webhooks: type: string enum: - queued - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: type: object @@ -233997,7 +234352,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *501 + deployment: *504 required: - action - repository @@ -234076,10 +234431,10 @@ webhooks: type: string enum: - waiting - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 workflow_job: type: object @@ -234226,7 +234581,7 @@ webhooks: - workflow_name - head_branch - created_at - deployment: *501 + deployment: *504 required: - action - repository @@ -234306,12 +234661,12 @@ webhooks: type: string enum: - completed - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Workflow Run type: object @@ -235330,12 +235685,12 @@ webhooks: type: string enum: - in_progress - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Workflow Run type: object @@ -236339,12 +236694,12 @@ webhooks: type: string enum: - requested - enterprise: *724 - installation: *725 - organization: *726 - repository: *727 + enterprise: *727 + installation: *728 + organization: *729 + repository: *730 sender: *4 - workflow: *746 + workflow: *749 workflow_run: title: Workflow Run type: object diff --git a/descriptions-next/ghec/ghec.2022-11-28.json b/descriptions-next/ghec/ghec.2022-11-28.json index 5375f0c451..c71e21f998 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.json +++ b/descriptions-next/ghec/ghec.2022-11-28.json @@ -7486,7 +7486,7 @@ }, "patch": { "summary": "Create or update custom properties for an enterprise", - "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", "tags": [ "enterprise-admin" ], @@ -23023,6 +23023,230 @@ } } }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/issue-type" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-create-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-update-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/delete-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "responses": { + "204": { + "description": "Response" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, "/orgs/{org}/issues": { "get": { "summary": "List organization issues assigned to the authenticated user", @@ -23075,6 +23299,15 @@ { "$ref": "#/components/parameters/labels" }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -26942,7 +27175,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -54643,6 +54876,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -54837,6 +55079,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -55702,6 +55954,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -107508,7 +107770,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -114446,6 +114708,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -116632,6 +116909,73 @@ "updated_at" ] }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "author-association": { "title": "author_association", "type": "string", @@ -116989,6 +117333,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -122159,6 +122506,98 @@ "limit" ] }, + "organization-create-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "organization-update-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -144216,6 +144655,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "anyOf": [ { @@ -151328,6 +151770,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -152781,6 +153226,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -177064,6 +177512,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -178716,6 +179167,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -180377,6 +180831,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -182072,6 +182529,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -183581,6 +184041,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -184897,6 +185360,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -186200,6 +186666,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -187500,6 +187969,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -188828,6 +189300,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -190124,6 +190599,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -193300,6 +193778,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -194764,6 +195245,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -195922,6 +196406,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -197968,6 +198455,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -300560,6 +301050,36 @@ } ] }, + "issue-type-items": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + }, + "issue-type": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + }, "codespace": { "value": { "id": 1, @@ -325007,6 +325527,15 @@ "type": "integer" } }, + "issue-type-id": { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, "codespace-name": { "name": "codespace_name", "in": "path", diff --git a/descriptions-next/ghec/ghec.2022-11-28.yaml b/descriptions-next/ghec/ghec.2022-11-28.yaml index 2d879d23d7..8a28f87055 100644 --- a/descriptions-next/ghec/ghec.2022-11-28.yaml +++ b/descriptions-next/ghec/ghec.2022-11-28.yaml @@ -5343,6 +5343,10 @@ paths: Creates new or updates existing custom properties defined for an enterprise in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be an administrator for the enterprise. tags: - enterprise-admin @@ -16644,6 +16648,160 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type-items" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-create-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-update-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + responses: + '204': + description: Response + '422': + "$ref": "#/components/responses/validation_failed_simple" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -16697,6 +16855,12 @@ paths: - all default: open - "$ref": "#/components/parameters/labels" + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -19533,6 +19697,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -39878,6 +40046,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -40018,6 +40194,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -40627,6 +40810,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -77667,7 +77858,7 @@ components: - write dependabot_secrets: type: string - description: The leve of permission to grant the access token to manage + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -83069,6 +83260,17 @@ components: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type repository-rule-enforcement: @@ -84656,6 +84858,58 @@ components: - url - created_at - updated_at + issue-type: + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description author-association: title: author_association type: string @@ -84905,6 +85159,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -88735,6 +88991,80 @@ components: "$ref": "#/components/schemas/interaction-expiry" required: - limit + organization-create-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + organization-update-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -104505,6 +104835,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: anyOf: - type: 'null' @@ -109769,6 +110101,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -110849,6 +111183,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -128617,6 +128953,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -129828,6 +130166,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -131046,6 +131386,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -132289,6 +132631,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -133391,6 +133735,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -134374,6 +134720,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -135336,6 +135684,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -136303,6 +136653,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -137294,6 +137646,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -138257,6 +138611,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -140621,6 +140977,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -141712,6 +142070,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -142570,6 +142930,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -144098,6 +144460,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -221959,6 +222323,28 @@ components: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: + issue-type-items: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + issue-type: + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' codespace: value: id: 1 @@ -243040,6 +243426,13 @@ components: required: true schema: type: integer + issue-type-id: + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer codespace-name: name: codespace_name in: path diff --git a/descriptions-next/ghec/ghec.json b/descriptions-next/ghec/ghec.json index 5375f0c451..c71e21f998 100644 --- a/descriptions-next/ghec/ghec.json +++ b/descriptions-next/ghec/ghec.json @@ -7486,7 +7486,7 @@ }, "patch": { "summary": "Create or update custom properties for an enterprise", - "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", + "description": "> [!NOTE]\n> This endpoint is in public preview and is subject to change.\n\nCreates new or updates existing custom properties defined for an enterprise in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be an administrator for the enterprise.", "tags": [ "enterprise-admin" ], @@ -23023,6 +23023,230 @@ } } }, + "/orgs/{org}/issue-types": { + "get": { + "summary": "List issue types for an organization", + "description": "Lists all issue types for an organization.", + "tags": [ + "orgs" + ], + "operationId": "orgs/list-issue-types", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "type": "array", + "items": { + "$ref": "#/components/schemas/issue-type" + } + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type-items" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "post": { + "summary": "Create issue type for an organization", + "description": "Create a new issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/create-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-create-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, + "/orgs/{org}/issue-types/{issue_type_id}": { + "put": { + "summary": "Update issue type for an organization", + "description": "Updates an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/update-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "requestBody": { + "required": true, + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/organization-update-issue-type" + }, + "examples": { + "default": { + "value": { + "name": "Epic", + "description": "An issue type for a multi-week tracking of work", + "is_enabled": true, + "color": "green", + "is_private": true + } + } + } + } + } + }, + "responses": { + "200": { + "description": "Response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/issue-type" + }, + "examples": { + "default": { + "$ref": "#/components/examples/issue-type" + } + } + } + } + }, + "404": { + "$ref": "#/components/responses/not_found" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + }, + "delete": { + "summary": "Delete issue type for an organization", + "description": "Deletes an issue type for an organization.\n\nYou can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization).", + "tags": [ + "orgs" + ], + "operationId": "orgs/delete-issue-type", + "externalDocs": { + "description": "API method documentation", + "url": "https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization" + }, + "parameters": [ + { + "$ref": "#/components/parameters/org" + }, + { + "$ref": "#/components/parameters/issue-type-id" + } + ], + "responses": { + "204": { + "description": "Response" + }, + "422": { + "$ref": "#/components/responses/validation_failed_simple" + }, + "404": { + "$ref": "#/components/responses/not_found" + } + }, + "x-github": { + "githubCloudOnly": false, + "enabledForGitHubApps": true, + "category": "orgs", + "subcategory": "issue-types" + } + } + }, "/orgs/{org}/issues": { "get": { "summary": "List organization issues assigned to the authenticated user", @@ -23075,6 +23299,15 @@ { "$ref": "#/components/parameters/labels" }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -26942,7 +27175,7 @@ }, "patch": { "summary": "Create or update custom properties for an organization", - "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", + "description": "Creates new or updates existing custom properties defined for an organization in a batch.\n\nIf the property already exists, the existing property will be replaced with the new values.\nMissing optional values will fall back to default values, previous values will be overwritten.\nE.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`.\n\nTo use this endpoint, the authenticated user must be one of:\n - An administrator for the organization.\n - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization.", "tags": [ "orgs" ], @@ -54643,6 +54876,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -54837,6 +55079,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -55702,6 +55954,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -107508,7 +107770,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -114446,6 +114708,21 @@ }, "maxItems": 200, "description": "An ordered list of the allowed values of the property.\nThe property can have up to 200 allowed values." + }, + "values_editable_by": { + "type": [ + "string", + "null" + ], + "enum": [ + "org_actors", + "org_and_repo_actors", + null + ], + "description": "Who can edit the values of the property", + "examples": [ + "org_actors" + ] } }, "required": [ @@ -116632,6 +116909,73 @@ "updated_at" ] }, + "issue-type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "author-association": { "title": "author_association", "type": "string", @@ -116989,6 +117333,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "repository": { "$ref": "#/components/schemas/repository" }, @@ -122159,6 +122506,98 @@ "limit" ] }, + "organization-create-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, + "organization-update-issue-type": { + "type": "object", + "properties": { + "name": { + "description": "Name of the issue type.", + "type": "string" + }, + "is_enabled": { + "description": "Whether or not the issue type is enabled at the organization level.", + "type": "boolean" + }, + "is_private": { + "description": "Whether or not the issue type is restricted to issues in private repositories.", + "type": "boolean" + }, + "description": { + "description": "Description of the issue type.", + "type": [ + "string", + "null" + ] + }, + "color": { + "description": "Color for the issue type.", + "type": [ + "string", + "null" + ], + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + } + }, + "required": [ + "name", + "is_enabled" + ] + }, "org-membership": { "title": "Org Membership", "description": "Org Membership", @@ -144216,6 +144655,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "performed_via_github_app": { "anyOf": [ { @@ -151328,6 +151770,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -152781,6 +153226,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -177064,6 +177512,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -178716,6 +179167,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -180377,6 +180831,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -182072,6 +182529,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -183581,6 +184041,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -184897,6 +185360,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -186200,6 +186666,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -187500,6 +187969,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -188828,6 +189300,9 @@ "type": "string", "format": "uri" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "title": { "description": "Title of the issue", "type": "string" @@ -190124,6 +190599,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -193300,6 +193778,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -194764,6 +195245,9 @@ "type": "string" } } + }, + "type": { + "$ref": "#/components/schemas/issue-type" } } }, @@ -195922,6 +196406,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -197968,6 +198455,9 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "$ref": "#/components/schemas/issue-type" + }, "updated_at": { "type": "string", "format": "date-time" @@ -300560,6 +301050,36 @@ } ] }, + "issue-type-items": { + "value": [ + { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + }, + { + "id": 411, + "node_id": "IT_kwDNAd3NAZs", + "name": "Bug", + "description": "An unexpected problem or behavior", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + ] + }, + "issue-type": { + "value": { + "id": 410, + "node_id": "IT_kwDNAd3NAZo", + "name": "Task", + "description": "A specific piece of work", + "created_at": "2024-12-11T14:39:09Z", + "updated_at": "2024-12-11T14:39:09Z" + } + }, "codespace": { "value": { "id": 1, @@ -325007,6 +325527,15 @@ "type": "integer" } }, + "issue-type-id": { + "name": "issue_type_id", + "description": "The unique identifier of the issue type.", + "in": "path", + "required": true, + "schema": { + "type": "integer" + } + }, "codespace-name": { "name": "codespace_name", "in": "path", diff --git a/descriptions-next/ghec/ghec.yaml b/descriptions-next/ghec/ghec.yaml index 2d879d23d7..8a28f87055 100644 --- a/descriptions-next/ghec/ghec.yaml +++ b/descriptions-next/ghec/ghec.yaml @@ -5343,6 +5343,10 @@ paths: Creates new or updates existing custom properties defined for an enterprise in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be an administrator for the enterprise. tags: - enterprise-admin @@ -16644,6 +16648,160 @@ paths: enabledForGitHubApps: true category: orgs subcategory: members + "/orgs/{org}/issue-types": + get: + summary: List issue types for an organization + description: Lists all issue types for an organization. + tags: + - orgs + operationId: orgs/list-issue-types + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#list-issue-types-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + responses: + '200': + description: Response + content: + application/json: + schema: + type: array + items: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type-items" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + post: + summary: Create issue type for an organization + description: |- + Create a new issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/create-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#create-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-create-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + "/orgs/{org}/issue-types/{issue_type_id}": + put: + summary: Update issue type for an organization + description: |- + Updates an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/update-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#update-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + requestBody: + required: true + content: + application/json: + schema: + "$ref": "#/components/schemas/organization-update-issue-type" + examples: + default: + value: + name: Epic + description: An issue type for a multi-week tracking of work + is_enabled: true + color: green + is_private: true + responses: + '200': + description: Response + content: + application/json: + schema: + "$ref": "#/components/schemas/issue-type" + examples: + default: + "$ref": "#/components/examples/issue-type" + '404': + "$ref": "#/components/responses/not_found" + '422': + "$ref": "#/components/responses/validation_failed_simple" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types + delete: + summary: Delete issue type for an organization + description: |- + Deletes an issue type for an organization. + + You can find out more about issue types in [Managing issue types in an organization](https://docs.github.com/enterprise-cloud@latest//issues/tracking-your-work-with-issues/configuring-issues/managing-issue-types-in-an-organization). + tags: + - orgs + operationId: orgs/delete-issue-type + externalDocs: + description: API method documentation + url: https://docs.github.com/enterprise-cloud@latest//rest/orgs/issue-types#delete-issue-type-for-an-organization + parameters: + - "$ref": "#/components/parameters/org" + - "$ref": "#/components/parameters/issue-type-id" + responses: + '204': + description: Response + '422': + "$ref": "#/components/responses/validation_failed_simple" + '404': + "$ref": "#/components/responses/not_found" + x-github: + githubCloudOnly: false + enabledForGitHubApps: true + category: orgs + subcategory: issue-types "/orgs/{org}/issues": get: summary: List organization issues assigned to the authenticated user @@ -16697,6 +16855,12 @@ paths: - all default: open - "$ref": "#/components/parameters/labels" + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -19533,6 +19697,10 @@ paths: description: |- Creates new or updates existing custom properties defined for an organization in a batch. + If the property already exists, the existing property will be replaced with the new values. + Missing optional values will fall back to default values, previous values will be overwritten. + E.g. if a property exists with `values_editable_by: org_and_repo_actors` and it's updated without specifying `values_editable_by`, it will be updated to default value `org_actors`. + To use this endpoint, the authenticated user must be one of: - An administrator for the organization. - A user, or a user on a team, with the fine-grained permission of `custom_properties_org_definitions_manager` in the organization. @@ -39878,6 +40046,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -40018,6 +40194,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -40627,6 +40810,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -77667,7 +77858,7 @@ components: - write dependabot_secrets: type: string - description: The leve of permission to grant the access token to manage + description: The level of permission to grant the access token to manage Dependabot secrets. enum: - read @@ -83069,6 +83260,17 @@ components: description: |- An ordered list of the allowed values of the property. The property can have up to 200 allowed values. + values_editable_by: + type: + - string + - 'null' + enum: + - org_actors + - org_and_repo_actors + - + description: Who can edit the values of the property + examples: + - org_actors required: - value_type repository-rule-enforcement: @@ -84656,6 +84858,58 @@ components: - url - created_at - updated_at + issue-type: + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description author-association: title: author_association type: string @@ -84905,6 +85159,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" repository: "$ref": "#/components/schemas/repository" performed_via_github_app: @@ -88735,6 +88991,80 @@ components: "$ref": "#/components/schemas/interaction-expiry" required: - limit + organization-create-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled + organization-update-issue-type: + type: object + properties: + name: + description: Name of the issue type. + type: string + is_enabled: + description: Whether or not the issue type is enabled at the organization + level. + type: boolean + is_private: + description: Whether or not the issue type is restricted to issues in private + repositories. + type: boolean + description: + description: Description of the issue type. + type: + - string + - 'null' + color: + description: Color for the issue type. + type: + - string + - 'null' + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + required: + - name + - is_enabled org-membership: title: Org Membership description: Org Membership @@ -104505,6 +104835,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" performed_via_github_app: anyOf: - type: 'null' @@ -109769,6 +110101,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -110849,6 +111183,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -128617,6 +128953,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -129828,6 +130166,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -131046,6 +131386,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -132289,6 +132631,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -133391,6 +133735,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -134374,6 +134720,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -135336,6 +135684,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -136303,6 +136653,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -137294,6 +137646,8 @@ components: timeline_url: type: string format: uri + type: + "$ref": "#/components/schemas/issue-type" title: description: Title of the issue type: string @@ -138257,6 +138611,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -140621,6 +140977,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -141712,6 +142070,8 @@ components: format: uri user_view_type: type: string + type: + "$ref": "#/components/schemas/issue-type" organization: "$ref": "#/components/schemas/organization-simple-webhooks" repository: @@ -142570,6 +142930,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -144098,6 +144460,8 @@ components: title: description: Title of the issue type: string + type: + "$ref": "#/components/schemas/issue-type" updated_at: type: string format: date-time @@ -221959,6 +222323,28 @@ components: members_url: https://api.github.com/teams/1/members{/member} repositories_url: https://api.github.com/teams/1/repos parent: + issue-type-items: + value: + - id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + - id: 411 + node_id: IT_kwDNAd3NAZs + name: Bug + description: An unexpected problem or behavior + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' + issue-type: + value: + id: 410 + node_id: IT_kwDNAd3NAZo + name: Task + description: A specific piece of work + created_at: '2024-12-11T14:39:09Z' + updated_at: '2024-12-11T14:39:09Z' codespace: value: id: 1 @@ -243040,6 +243426,13 @@ components: required: true schema: type: integer + issue-type-id: + name: issue_type_id + description: The unique identifier of the issue type. + in: path + required: true + schema: + type: integer codespace-name: name: codespace_name in: path diff --git a/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json b/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json index 580d50a15e..dbbf3089c2 100644 --- a/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json +++ b/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.json @@ -4350,7 +4350,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -5748,7 +5748,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -6679,7 +6679,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -12407,7 +12407,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -13484,7 +13484,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -14340,7 +14340,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -14761,7 +14761,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -17903,7 +17903,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -19018,7 +19018,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -19997,7 +19997,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -20679,7 +20679,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -22419,7 +22419,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -23542,7 +23542,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -24740,7 +24740,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -25679,7 +25679,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -26855,7 +26855,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -27794,7 +27794,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -28844,7 +28844,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -29933,7 +29933,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -47958,6 +47958,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -65984,6 +66051,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -72962,6 +73096,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -102439,6 +102640,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -108163,7 +108431,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -109255,7 +109523,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -109999,6 +110267,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "sort", "description": "What to sort results by.", @@ -111305,6 +111582,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -284098,6 +284442,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -299640,7 +300051,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -303342,6 +303753,15 @@ "type": "string" } }, + { + "name": "type", + "description": "Can be the name of an issue type. If the string `*` is passed, issues with any type are accepted. If the string `none` is passed, issues without type are returned.", + "in": "query", + "required": false, + "schema": { + "type": "string" + } + }, { "name": "creator", "description": "The user that created the issue.", @@ -304675,6 +305095,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -306574,6 +307061,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue.", + "examples": [ + "Epic" + ] } }, "required": [ @@ -307844,6 +308341,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -315244,6 +315808,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -319994,6 +320625,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -324541,6 +325239,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -326424,6 +327189,16 @@ "items": { "type": "string" } + }, + "type": { + "type": [ + "string", + "null" + ], + "description": "The name of the issue type to associate with this issue or use `null` to remove the current issue type.", + "examples": [ + "Epic" + ] } } }, @@ -327692,6 +328467,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -330854,6 +331696,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -333813,6 +334722,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -364065,6 +365041,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -462068,6 +463111,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "performed_via_github_app": { "anyOf": [ { @@ -485253,7 +486363,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -488822,6 +489932,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -520152,6 +521329,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -523905,6 +525149,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -527660,6 +528971,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -532163,7 +533541,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -538675,6 +540053,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -542430,6 +543875,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "repository": { "title": "Repository", "description": "A repository on GitHub.", @@ -711515,7 +713027,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -714578,7 +716090,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -717546,7 +719058,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -720514,7 +722026,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -723616,7 +725128,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -726725,7 +728237,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -731840,7 +733352,7 @@ }, "dependabot_secrets": { "type": "string", - "description": "The leve of permission to grant the access token to manage Dependabot secrets.", + "description": "The level of permission to grant the access token to manage Dependabot secrets.", "enum": [ "read", "write" @@ -736239,6 +737751,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -740480,6 +742059,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -744745,6 +746391,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -748453,6 +750166,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -751714,6 +753494,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -755180,6 +757027,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -758453,6 +760367,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -761903,6 +763884,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -765200,6 +767248,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -768525,6 +770640,73 @@ "type": "string", "format": "uri" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "title": { "description": "Title of the issue", "type": "string" @@ -771778,6 +773960,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -777096,6 +779345,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -780345,6 +782661,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -783730,6 +786113,73 @@ "type": "string" } } + }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] } } }, @@ -786736,6 +789186,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -788740,6 +791257,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -792097,6 +794681,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -795353,6 +798004,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -798676,6 +801394,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" @@ -801902,6 +804687,73 @@ "description": "Title of the issue", "type": "string" }, + "type": { + "title": "Issue Type", + "description": "The type of issue.", + "type": [ + "object", + "null" + ], + "properties": { + "id": { + "type": "integer", + "description": "The unique identifier of the issue type." + }, + "node_id": { + "type": "string", + "description": "The node identifier of the issue type." + }, + "name": { + "type": "string", + "description": "The name of the issue type." + }, + "description": { + "type": [ + "string", + "null" + ], + "description": "The description of the issue type." + }, + "color": { + "type": [ + "string", + "null" + ], + "description": "The color of the issue type.", + "enum": [ + "gray", + "blue", + "green", + "yellow", + "orange", + "red", + "pink", + "purple", + null + ] + }, + "created_at": { + "type": "string", + "description": "The time the issue type created.", + "format": "date-time" + }, + "updated_at": { + "type": "string", + "description": "The time the issue type last updated.", + "format": "date-time" + }, + "is_enabled": { + "type": "boolean", + "description": "The enabled state of the issue type." + } + }, + "required": [ + "id", + "node_id", + "name", + "description" + ] + }, "updated_at": { "type": "string", "format": "date-time" diff --git a/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml b/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml index 28a99396e0..a1aa3e9056 100644 --- a/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml +++ b/descriptions-next/ghes-3.12/dereferenced/ghes-3.12.2022-11-28.deref.yaml @@ -2577,8 +2577,8 @@ paths: - write dependabot_secrets: type: string - description: The leve of permission to grant the access - token to manage Dependabot secrets. + description: The level of permission to grant the + access token to manage Dependabot secrets. enum: - read - write @@ -15274,6 +15274,59 @@ paths: timeline_url: type: string format: uri + type: &541 + title: Issue Type + description: The type of issue. + type: + - object + - 'null' + properties: + id: + type: integer + description: The unique identifier of the issue + type. + node_id: + type: string + description: The node identifier of the issue type. + name: + type: string + description: The name of the issue type. + description: + type: + - string + - 'null' + description: The description of the issue type. + color: + type: + - string + - 'null' + description: The color of the issue type. + enum: + - gray + - blue + - green + - yellow + - orange + - red + - pink + - purple + - + created_at: + type: string + description: The time the issue type created. + format: date-time + updated_at: + type: string + description: The time the issue type last updated. + format: date-time + is_enabled: + type: boolean + description: The enabled state of the issue type. + required: + - id + - node_id + - name + - description repository: *82 performed_via_github_app: anyOf: @@ -15936,7 +15989,7 @@ paths: url: type: string format: uri - user: &555 + user: &556 title: Public User description: Public User type: object @@ -21776,7 +21829,7 @@ paths: type: array items: *68 examples: - default: &564 + default: &565 value: - login: github id: 1 @@ -22911,7 +22964,7 @@ paths: type: array items: *82 examples: - default: &561 + default: &562 value: total_count: 1 repositories: @@ -27954,6 +28007,12 @@ paths: - all default: open - *199 + - name: type + description: Can be the name of an issue type. + in: query + required: false + schema: + type: string - name: sort description: What to sort results by. in: query @@ -29455,7 +29514,7 @@ paths: - nuget - container - *130 - - &565 + - &566 name: visibility description: |- The selected visibility of the packages. This parameter is optional and only filters an existing result set. @@ -29496,7 +29555,7 @@ paths: default: *207 '403': *41 '401': *39 - '400': &567 + '400': &568 description: The value of `per_page` multiplied by `page` cannot be greater than 10000. x-github: @@ -35141,7 +35200,7 @@ paths: - updated_at - url examples: - default: &545 + default: &546 value: - author: login: octocat @@ -35389,7 +35448,7 @@ paths: application/json: schema: *249 examples: - default: &546 + default: &547 value: author: login: octocat @@ -35580,7 +35639,7 @@ paths: - updated_at - url examples: - default: &547 + default: &548 value: - author: login: octocat @@ -35806,7 +35865,7 @@ paths: application/json: schema: *252 examples: - default: &548 + default: &549 value: author: login: octocat @@ -36486,7 +36545,7 @@ paths: - state - url examples: - response-if-user-is-a-team-maintainer: &549 + response-if-user-is-a-team-maintainer: &550 summary: Response if user is a team maintainer value: url: https://api.github.com/teams/1/memberships/octocat @@ -36551,7 +36610,7 @@ paths: application/json: schema: *263 examples: - response-if-users-membership-with-team-is-now-pending: &550 + response-if-users-membership-with-team-is-now-pending: &551 summary: Response if user's membership with team is now pending value: url: https://api.github.com/teams/1/memberships/octocat @@ -36694,7 +36753,7 @@ paths: - updated_at - permissions examples: - default: &551 + default: &552 value: - owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36771,7 +36830,7 @@ paths: application/json: schema: *264 examples: - default: &552 + default: &553 value: owner_url: https://api.github.com/orgs/octocat url: https://api.github.com/projects/1002605 @@ -36975,7 +37034,7 @@ paths: description: Alternative response with repository permissions content: application/json: - schema: &553 + schema: &554 title: Team Repository description: A team's access to a repository. type: object @@ -37704,7 +37763,7 @@ paths: type: array items: *268 examples: - response-if-child-teams-exist: &554 + response-if-child-teams-exist: &555 value: - id: 2 node_id: MDQ6VGVhbTI= @@ -49276,7 +49335,7 @@ paths: check. type: array items: *335 - deployment: &588 + deployment: &589 title: Deployment description: A deployment created as the result of an Actions check run from a workflow that references an environment @@ -62669,7 +62728,7 @@ paths: format: uri examples: - https://api.github.com/repos/octocat/Hello-World/hooks/1/deliveries - last_response: &616 + last_response: &617 title: Hook Response type: object properties: @@ -63294,7 +63353,7 @@ paths: - html_url - created_at examples: - default: &569 + default: &570 value: - id: 1 repository: @@ -63655,6 +63714,14 @@ paths: required: false schema: type: string + - name: type + description: Can be the name of an issue type. If the string `*` is passed, + issues with any type are accepted. If the string `none` is passed, issues + without type are returned. + in: query + required: false + schema: + type: string - name: creator description: The user that created the issue. in: query @@ -63934,6 +64001,13 @@ paths: are silently dropped otherwise._' items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue. + examples: + - Epic required: - title examples: @@ -65225,6 +65299,14 @@ paths: push access to the repository, assignee changes are silently dropped. items: type: string + type: + type: + - string + - 'null' + description: The name of the issue type to associate with this issue + or use `null` to remove the current issue type. + examples: + - Epic examples: default: value: @@ -76672,7 +76754,7 @@ paths: schema: type: array description: List of locations where the secret was detected - items: &634 + items: &635 type: object properties: type: @@ -80898,6 +80980,7 @@ paths: timeline_url: type: string format: uri + type: *541 performed_via_github_app: anyOf: - type: 'null' @@ -82251,7 +82334,7 @@ paths: description: Response content: application/json: - schema: &541 + schema: &542 type: object properties: status: @@ -82271,7 +82354,7 @@ paths: - name - number examples: - default: &542 + default: &543 value: status: scheduled scheduled_time: Tuesday, January 22 at 15:34 -0800 @@ -82316,9 +82399,9 @@ paths: description: Response content: application/json: - schema: *541 + schema: *542 examples: - default: *542 + default: *543 '401': description: Unauthorized requestBody: @@ -82911,7 +82994,7 @@ paths: application/json: schema: type: array - items: &543 + items: &544 type: object properties: key: @@ -82919,7 +83002,7 @@ paths: pretty-print: type: string examples: - default: &544 + default: &545 value: - key: ssh-rsa AAAAB3NzaC1yc2EAAAAB... pretty-print: ssh-rsa 01:14:0f:f2:0f:e2:fe:e8:f4:72:62:af:75:f7:1a:88:3e:04:92:64 @@ -82962,9 +83045,9 @@ paths: application/json: schema: type: array - items: *543 + items: *544 examples: - default: *544 + default: *545 '401': description: Unauthorized requestBody: @@ -83016,9 +83099,9 @@ paths: application/json: schema: type: array - items: *543 + items: *544 examples: - default: *544 + default: *545 '401': description: Unauthorized requestBody: @@ -83349,7 +83432,7 @@ paths: type: array items: *249 examples: - default: *545 + default: *546 headers: Link: *6 x-github: @@ -83501,7 +83584,7 @@ paths: application/json: schema: *249 examples: - default: *546 + default: *547 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -83570,7 +83653,7 @@ paths: type: array items: *252 examples: - default: *547 + default: *548 headers: Link: *6 x-github: @@ -83712,7 +83795,7 @@ paths: application/json: schema: *252 examples: - default: *548 + default: *549 x-github: githubCloudOnly: false enabledForGitHubApps: true @@ -84180,7 +84263,7 @@ paths: application/json: schema: *263 examples: - response-if-user-is-a-team-maintainer: *549 + response-if-user-is-a-team-maintainer: *550 '404': *24 x-github: githubCloudOnly: false @@ -84241,7 +84324,7 @@ paths: application/json: schema: *263 examples: - response-if-users-membership-with-team-is-now-pending: *550 + response-if-users-membership-with-team-is-now-pending: *551 '403': description: Forbidden if team synchronization is set up '422': @@ -84317,7 +84400,7 @@ paths: type: array items: *264 examples: - default: *551 + default: *552 headers: Link: *6 '404': *24 @@ -84353,7 +84436,7 @@ paths: application/json: schema: *264 examples: - default: *552 + default: *553 '404': description: Not Found if project is not managed by this team x-github: @@ -84525,7 +84608,7 @@ paths: description: Alternative response with extra repository information content: application/json: - schema: *553 + schema: *554 examples: alternative-response-with-extra-repository-information: value: @@ -84767,7 +84850,7 @@ paths: type: array items: *268 examples: - response-if-child-teams-exist: *554 + response-if-child-teams-exist: *555 headers: Link: *6 '404': *24 @@ -84800,7 +84883,7 @@ paths: application/json: schema: oneOf: - - &556 + - &557 title: Private User description: Private User type: object @@ -85050,7 +85133,7 @@ paths: - private_gists - total_private_repos - two_factor_authentication - - *555 + - *556 examples: response-with-public-and-private-profile-information: summary: Response with public and private profile information @@ -85208,7 +85291,7 @@ paths: description: Response content: application/json: - schema: *556 + schema: *557 examples: default: value: @@ -85286,7 +85369,7 @@ paths: type: array items: *206 examples: - default: &566 + default: &567 value: - id: 197 name: hello_docker @@ -85373,7 +85456,7 @@ paths: application/json: schema: type: array - items: &557 + items: &558 title: Email description: Email type: object @@ -85403,7 +85486,7 @@ paths: - verified - visibility examples: - default: &568 + default: &569 value: - email: octocat@github.com verified: true @@ -85480,7 +85563,7 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: default: value: @@ -85738,7 +85821,7 @@ paths: application/json: schema: type: array - items: &558 + items: &559 title: GPG Key description: A unique encryption key type: object @@ -85883,7 +85966,7 @@ paths: - subkeys - revoked examples: - default: &578 + default: &579 value: - id: 3 name: Octocat's GPG Key @@ -85968,9 +86051,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: &559 + default: &560 value: id: 3 name: Octocat's GPG Key @@ -86027,7 +86110,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.12/rest/users/gpg-keys#get-a-gpg-key-for-the-authenticated-user parameters: - - &560 + - &561 name: gpg_key_id description: The unique identifier of the GPG key. in: path @@ -86039,9 +86122,9 @@ paths: description: Response content: application/json: - schema: *558 + schema: *559 examples: - default: *559 + default: *560 '404': *24 '304': *40 '403': *41 @@ -86064,7 +86147,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.12/rest/users/gpg-keys#delete-a-gpg-key-for-the-authenticated-user parameters: - - *560 + - *561 responses: '204': description: Response @@ -86255,7 +86338,7 @@ paths: type: array items: *82 examples: - default: *561 + default: *562 headers: Link: *6 '404': *24 @@ -86431,7 +86514,7 @@ paths: application/json: schema: type: array - items: &562 + items: &563 title: Key description: Key type: object @@ -86529,9 +86612,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: &563 + default: &564 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -86570,9 +86653,9 @@ paths: description: Response content: application/json: - schema: *562 + schema: *563 examples: - default: *563 + default: *564 '404': *24 '304': *40 '403': *41 @@ -87424,7 +87507,7 @@ paths: type: array items: *68 examples: - default: *564 + default: *565 headers: Link: *6 '304': *40 @@ -87466,7 +87549,7 @@ paths: - docker - nuget - container - - *565 + - *566 - *5 - *4 responses: @@ -87478,8 +87561,8 @@ paths: type: array items: *206 examples: - default: *566 - '400': *567 + default: *567 + '400': *568 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -87508,7 +87591,7 @@ paths: application/json: schema: *206 examples: - default: &579 + default: &580 value: id: 40201 name: octo-name @@ -87960,9 +88043,9 @@ paths: application/json: schema: type: array - items: *557 + items: *558 examples: - default: *568 + default: *569 headers: Link: *6 '304': *40 @@ -88075,7 +88158,7 @@ paths: type: array items: *82 examples: - default: &575 + default: &576 summary: Default response value: - id: 1296269 @@ -88433,7 +88516,7 @@ paths: type: array items: *415 examples: - default: *569 + default: *570 headers: Link: *6 '304': *40 @@ -88512,7 +88595,7 @@ paths: application/json: schema: type: array - items: &570 + items: &571 title: Social account description: Social media account type: object @@ -88529,7 +88612,7 @@ paths: - provider - url examples: - default: &571 + default: &572 value: - provider: twitter url: https://twitter.com/github @@ -88592,9 +88675,9 @@ paths: application/json: schema: type: array - items: *570 + items: *571 examples: - default: *571 + default: *572 '422': *33 '304': *40 '404': *24 @@ -88682,7 +88765,7 @@ paths: application/json: schema: type: array - items: &572 + items: &573 title: SSH Signing Key description: A public SSH key used to sign Git commits type: object @@ -88702,7 +88785,7 @@ paths: - title - created_at examples: - default: &580 + default: &581 value: - key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -88769,9 +88852,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: &573 + default: &574 value: key: 2Sg8iYjAxxmI2LvUXpJjkYrMxURPc8r+dB7TJyvv1234 id: 2 @@ -88802,7 +88885,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.12/rest/users/ssh-signing-keys#get-an-ssh-signing-key-for-the-authenticated-user parameters: - - &574 + - &575 name: ssh_signing_key_id description: The unique identifier of the SSH signing key. in: path @@ -88814,9 +88897,9 @@ paths: description: Response content: application/json: - schema: *572 + schema: *573 examples: - default: *573 + default: *574 '404': *24 '304': *40 '403': *41 @@ -88839,7 +88922,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.12/rest/users/ssh-signing-keys#delete-an-ssh-signing-key-for-the-authenticated-user parameters: - - *574 + - *575 responses: '204': description: Response @@ -88868,7 +88951,7 @@ paths: description: API method documentation url: https://docs.github.com/enterprise-server@3.12/rest/activity/starring#list-repositories-starred-by-the-authenticated-user parameters: - - &581 + - &582 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 @@ -88893,11 +88976,11 @@ paths: type: array items: *82 examples: - default-response: *575 + default-response: *576 application/vnd.github.v3.star+json: schema: type: array - items: &582 + items: &583 title: Starred Repository description: Starred Repository type: object @@ -89267,10 +89350,10 @@ paths: application/json: schema: oneOf: + - *557 - *556 - - *555 examples: - default-response: &576 + default-response: &577 summary: Default response value: login: octocat @@ -89305,7 +89388,7 @@ paths: following: 0 created_at: '2008-01-14T04:33:35Z' updated_at: '2008-01-14T04:33:35Z' - response-with-git-hub-plan-information: &577 + response-with-git-hub-plan-information: &578 summary: Response with GitHub plan information value: login: octocat @@ -89417,11 +89500,11 @@ paths: application/json: schema: oneOf: + - *557 - *556 - - *555 examples: - default-response: *576 - response-with-git-hub-plan-information: *577 + default-response: *577 + response-with-git-hub-plan-information: *578 '404': *24 x-github: githubCloudOnly: false @@ -89452,7 +89535,7 @@ paths: type: array items: *206 examples: - default: *566 + default: *567 '403': *41 '401': *39 x-github: @@ -89856,9 +89939,9 @@ paths: application/json: schema: type: array - items: *558 + items: *559 examples: - default: *578 + default: *579 headers: Link: *6 x-github: @@ -90040,7 +90123,7 @@ paths: type: array items: *68 examples: - default: *564 + default: *565 headers: Link: *6 x-github: @@ -90079,7 +90162,7 @@ paths: - docker - nuget - container - - *565 + - *566 - *8 - *5 - *4 @@ -90092,10 +90175,10 @@ paths: type: array items: *206 examples: - default: *566 + default: *567 '403': *41 '401': *39 - '400': *567 + '400': *568 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90125,7 +90208,7 @@ paths: application/json: schema: *206 examples: - default: *579 + default: *580 x-github: githubCloudOnly: false enabledForGitHubApps: false @@ -90758,9 +90841,9 @@ paths: application/json: schema: type: array - items: *570 + items: *571 examples: - default: *571 + default: *572 headers: Link: *6 x-github: @@ -90790,9 +90873,9 @@ paths: application/json: schema: type: array - items: *572 + items: *573 examples: - default: *580 + default: *581 headers: Link: *6 x-github: @@ -90817,7 +90900,7 @@ paths: url: https://docs.github.com/enterprise-server@3.12/rest/activity/starring#list-repositories-starred-by-a-user parameters: - *8 - - *581 + - *582 - *9 - *4 - *5 @@ -90829,11 +90912,11 @@ paths: schema: anyOf: - type: array - items: *582 + items: *583 - type: array items: *82 examples: - default-response: *575 + default-response: *576 headers: Link: *6 x-github: @@ -91045,7 +91128,7 @@ webhooks: type: string enum: - disabled - enterprise: &583 + enterprise: &584 title: Enterprise description: |- An enterprise on GitHub. Webhook payloads contain the `enterprise` property when the webhook is configured @@ -91114,7 +91197,7 @@ webhooks: - created_at - updated_at - avatar_url - installation: &584 + installation: &585 title: Simple Installation description: |- The GitHub App installation. Webhook payloads contain the `installation` property when the event is configured @@ -91135,7 +91218,7 @@ webhooks: required: - id - node_id - organization: &585 + organization: &586 title: Organization Simple description: |- A GitHub organization. Webhook payloads contain the `organization` property when the webhook is configured for an @@ -91208,7 +91291,7 @@ webhooks: - public_members_url - avatar_url - description - repository: &586 + repository: &587 title: Repository description: |- The repository on GitHub where the event occurred. Webhook payloads contain the `repository` property @@ -92115,10 +92198,10 @@ webhooks: type: string enum: - enabled - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -92204,11 +92287,11 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 - rule: &587 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 + rule: &588 title: branch protection rule description: The branch protection rule. Includes a `name` and all the [branch protection settings](https://docs.github.com/enterprise-server@3.12/github/administering-a-repository/defining-the-mergeability-of-pull-requests/about-protected-branches#about-branch-protection-settings) @@ -92425,11 +92508,11 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 - rule: *587 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 + rule: *588 sender: *17 required: - action @@ -92607,11 +92690,11 @@ webhooks: - everyone required: - from - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 - rule: *587 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 + rule: *588 sender: *17 required: - action @@ -92696,12 +92779,12 @@ webhooks: type: string cache_location: type: string - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 ref: type: string - repository: *586 + repository: *587 sender: *17 required: - cache_location @@ -92795,7 +92878,7 @@ webhooks: type: string enum: - completed - check_run: &589 + check_run: &590 title: CheckRun description: A check performed on the code of a given code change type: object @@ -92908,7 +92991,7 @@ webhooks: - examples: - neutral - deployment: *588 + deployment: *589 details_url: type: string examples: @@ -93006,9 +93089,9 @@ webhooks: - output - app - pull_requests - installation: *584 - organization: *585 - repository: *586 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - check_run @@ -93411,10 +93494,10 @@ webhooks: type: string enum: - created - check_run: *589 - installation: *584 - organization: *585 - repository: *586 + check_run: *590 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - check_run @@ -93820,10 +93903,10 @@ webhooks: type: string enum: - requested_action - check_run: *589 - installation: *584 - organization: *585 - repository: *586 + check_run: *590 + installation: *585 + organization: *586 + repository: *587 requested_action: description: The action requested by the user. type: object @@ -94238,10 +94321,10 @@ webhooks: type: string enum: - rerequested - check_run: *589 - installation: *584 - organization: *585 - repository: *586 + check_run: *590 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - check_run @@ -95243,10 +95326,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -95941,10 +96024,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -96633,10 +96716,10 @@ webhooks: - latest_check_runs_count - check_runs_url - head_commit - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -96964,20 +97047,20 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: &590 + commit_oid: &591 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: *583 - installation: *584 - organization: *585 - ref: &591 + enterprise: *584 + installation: *585 + organization: *586 + ref: &592 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: *586 + repository: *587 sender: *17 required: - action @@ -97392,12 +97475,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *590 - enterprise: *583 - installation: *584 - organization: *585 - ref: *591 - repository: *586 + commit_oid: *591 + enterprise: *584 + installation: *585 + organization: *586 + ref: *592 + repository: *587 sender: *17 required: - action @@ -97687,12 +97770,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *590 - enterprise: *583 - installation: *584 - organization: *585 - ref: *591 - repository: *586 + commit_oid: *591 + enterprise: *584 + installation: *585 + organization: *586 + ref: *592 + repository: *587 sender: *17 required: - action @@ -98045,12 +98128,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *590 - enterprise: *583 - installation: *584 - organization: *585 - ref: *591 - repository: *586 + commit_oid: *591 + enterprise: *584 + installation: *585 + organization: *586 + ref: *592 + repository: *587 sender: *17 required: - action @@ -98340,9 +98423,9 @@ webhooks: type: - string - 'null' - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 ref: description: The Git reference of the code scanning alert. When the action is `reopened_by_user` or `closed_by_user`, the event @@ -98350,7 +98433,7 @@ webhooks: type: - string - 'null' - repository: *586 + repository: *587 sender: *17 required: - action @@ -98603,12 +98686,12 @@ webhooks: - dismissed_reason - rule - tool - commit_oid: *590 - enterprise: *583 - installation: *584 - organization: *585 - ref: *591 - repository: *586 + commit_oid: *591 + enterprise: *584 + installation: *585 + organization: *586 + ref: *592 + repository: *587 sender: *17 required: - action @@ -98880,10 +98963,10 @@ webhooks: - updated_at - author_association - body - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -98974,18 +99057,18 @@ webhooks: type: - string - 'null' - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 master_branch: description: The name of the repository's default branch (usually `main`). type: string - organization: *585 - pusher_type: &592 + organization: *586 + pusher_type: &593 description: The pusher type for the event. Can be either `user` or a deploy key. type: string - ref: &593 + ref: &594 description: The [`git ref`](https://docs.github.com/enterprise-server@3.12/rest/git/refs#get-a-reference) resource. type: string @@ -98995,7 +99078,7 @@ webhooks: enum: - tag - branch - repository: *586 + repository: *587 sender: *17 required: - ref @@ -99084,18 +99167,18 @@ webhooks: title: delete event type: object properties: - enterprise: *583 - installation: *584 - organization: *585 - pusher_type: *592 - ref: *593 + enterprise: *584 + installation: *585 + organization: *586 + pusher_type: *593 + ref: *594 ref_type: description: The type of Git ref object deleted in the repository. type: string enum: - tag - branch - repository: *586 + repository: *587 sender: *17 required: - ref @@ -99190,10 +99273,10 @@ webhooks: enum: - auto_dismissed alert: *377 - installation: *584 - organization: *585 - enterprise: *583 - repository: *586 + installation: *585 + organization: *586 + enterprise: *584 + repository: *587 sender: *17 required: - action @@ -99288,10 +99371,10 @@ webhooks: enum: - auto_reopened alert: *377 - installation: *584 - organization: *585 - enterprise: *583 - repository: *586 + installation: *585 + organization: *586 + enterprise: *584 + repository: *587 sender: *17 required: - action @@ -99386,10 +99469,10 @@ webhooks: enum: - created alert: *377 - installation: *584 - organization: *585 - enterprise: *583 - repository: *586 + installation: *585 + organization: *586 + enterprise: *584 + repository: *587 sender: *17 required: - action @@ -99482,10 +99565,10 @@ webhooks: enum: - dismissed alert: *377 - installation: *584 - organization: *585 - enterprise: *583 - repository: *586 + installation: *585 + organization: *586 + enterprise: *584 + repository: *587 sender: *17 required: - action @@ -99578,10 +99661,10 @@ webhooks: enum: - fixed alert: *377 - installation: *584 - organization: *585 - enterprise: *583 - repository: *586 + installation: *585 + organization: *586 + enterprise: *584 + repository: *587 sender: *17 required: - action @@ -99675,10 +99758,10 @@ webhooks: enum: - reintroduced alert: *377 - installation: *584 - organization: *585 - enterprise: *583 - repository: *586 + installation: *585 + organization: *586 + enterprise: *584 + repository: *587 sender: *17 required: - action @@ -99771,10 +99854,10 @@ webhooks: enum: - reopened alert: *377 - installation: *584 - organization: *585 - enterprise: *583 - repository: *586 + installation: *585 + organization: *586 + enterprise: *584 + repository: *587 sender: *17 required: - action @@ -99861,9 +99944,9 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - key: &594 + enterprise: *584 + installation: *585 + key: &595 description: The [`deploy key`](https://docs.github.com/enterprise-server@3.12/rest/deploy-keys/deploy-keys#get-a-deploy-key) resource. type: object @@ -99899,8 +99982,8 @@ webhooks: - verified - created_at - read_only - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -99987,11 +100070,11 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - key: *594 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + key: *595 + organization: *586 + repository: *587 sender: *17 required: - action @@ -100573,12 +100656,12 @@ webhooks: - updated_at - statuses_url - repository_url - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - workflow: &598 + workflow: &599 title: Workflow type: - object @@ -101330,9 +101413,9 @@ webhooks: pull_requests: type: array items: *460 - repository: *586 - organization: *585 - installation: *584 + repository: *587 + organization: *586 + installation: *585 sender: *17 responses: '200': @@ -101413,7 +101496,7 @@ webhooks: type: string enum: - approved - approver: &595 + approver: &596 type: object properties: avatar_url: @@ -101456,11 +101539,11 @@ webhooks: type: string comment: type: string - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 - reviewers: &596 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 + reviewers: &597 type: array items: type: object @@ -101541,7 +101624,7 @@ webhooks: sender: *17 since: type: string - workflow_job_run: &597 + workflow_job_run: &598 type: object properties: conclusion: @@ -102297,18 +102380,18 @@ webhooks: type: string enum: - rejected - approver: *595 + approver: *596 comment: type: string - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 - reviewers: *596 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 + reviewers: *597 sender: *17 since: type: string - workflow_job_run: *597 + workflow_job_run: *598 workflow_job_runs: type: array items: @@ -103035,13 +103118,13 @@ webhooks: type: string enum: - requested - enterprise: *583 + enterprise: *584 environment: type: string - installation: *584 - organization: *585 - repository: *586 - requestor: &603 + installation: *585 + organization: *586 + repository: *587 + requestor: &604 title: User type: - object @@ -104994,12 +105077,12 @@ webhooks: - updated_at - deployment_url - repository_url - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - workflow: *598 + workflow: *599 workflow_run: title: Deployment Workflow Run type: @@ -105700,7 +105783,7 @@ webhooks: type: string enum: - answered - answer: &601 + answer: &602 type: object properties: author_association: @@ -105860,7 +105943,7 @@ webhooks: - created_at - updated_at - body - discussion: &599 + discussion: &600 title: Discussion description: A Discussion in a repository. type: object @@ -106178,10 +106261,10 @@ webhooks: - author_association - active_lock_reason - body - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -106318,11 +106401,11 @@ webhooks: - from required: - category - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -106415,11 +106498,11 @@ webhooks: type: string enum: - closed - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -106511,7 +106594,7 @@ webhooks: type: string enum: - created - comment: &600 + comment: &601 type: object properties: author_association: @@ -106671,11 +106754,11 @@ webhooks: - updated_at - body - reactions - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -106768,12 +106851,12 @@ webhooks: type: string enum: - deleted - comment: *600 - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + comment: *601 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -106878,12 +106961,12 @@ webhooks: - from required: - body - comment: *600 - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + comment: *601 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -106977,11 +107060,11 @@ webhooks: type: string enum: - created - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107073,11 +107156,11 @@ webhooks: type: string enum: - deleted - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107187,11 +107270,11 @@ webhooks: type: string required: - from - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107283,10 +107366,10 @@ webhooks: type: string enum: - labeled - discussion: *599 - enterprise: *583 - installation: *584 - label: &602 + discussion: *600 + enterprise: *584 + installation: *585 + label: &603 title: Label type: object properties: @@ -107319,8 +107402,8 @@ webhooks: - color - default - description - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107413,11 +107496,11 @@ webhooks: type: string enum: - locked - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107509,11 +107592,11 @@ webhooks: type: string enum: - pinned - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107605,11 +107688,11 @@ webhooks: type: string enum: - reopened - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107704,16 +107787,16 @@ webhooks: changes: type: object properties: - new_discussion: *599 - new_repository: *586 + new_discussion: *600 + new_repository: *587 required: - new_discussion - new_repository - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107806,10 +107889,10 @@ webhooks: type: string enum: - unanswered - discussion: *599 - old_answer: *601 - organization: *585 - repository: *586 + discussion: *600 + old_answer: *602 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107901,12 +107984,12 @@ webhooks: type: string enum: - unlabeled - discussion: *599 - enterprise: *583 - installation: *584 - label: *602 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + label: *603 + organization: *586 + repository: *587 sender: *17 required: - action @@ -107999,11 +108082,11 @@ webhooks: type: string enum: - unlocked - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -108095,11 +108178,11 @@ webhooks: type: string enum: - unpinned - discussion: *599 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + discussion: *600 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -108340,7 +108423,7 @@ webhooks: description: A user forks a repository. type: object properties: - enterprise: *583 + enterprise: *584 forkee: description: The created [`repository`](https://docs.github.com/enterprise-server@3.12/rest/repos/repos#get-a-repository) resource. @@ -109018,9 +109101,9 @@ webhooks: type: integer watchers_count: type: integer - installation: *584 - organization: *585 - repository: *586 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - forkee @@ -109186,9 +109269,9 @@ webhooks: title: gollum event type: object properties: - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pages: description: The pages that were updated. type: array @@ -109226,7 +109309,7 @@ webhooks: - action - sha - html_url - repository: *586 + repository: *587 sender: *17 required: - pages @@ -109312,10 +109395,10 @@ webhooks: type: string enum: - created - enterprise: *583 + enterprise: *584 installation: *37 - organization: *585 - repositories: &604 + organization: *586 + repositories: &605 description: An array of repository objects that the installation can access. type: array @@ -109341,8 +109424,8 @@ webhooks: - name - full_name - private - repository: *586 - requester: *603 + repository: *587 + requester: *604 sender: *17 required: - action @@ -109427,11 +109510,11 @@ webhooks: type: string enum: - deleted - enterprise: *583 + enterprise: *584 installation: *37 - organization: *585 - repositories: *604 - repository: *586 + organization: *586 + repositories: *605 + repository: *587 requester: type: - 'null' @@ -109518,11 +109601,11 @@ webhooks: type: string enum: - new_permissions_accepted - enterprise: *583 + enterprise: *584 installation: *37 - organization: *585 - repositories: *604 - repository: *586 + organization: *586 + repositories: *605 + repository: *587 requester: type: - 'null' @@ -109609,10 +109692,10 @@ webhooks: type: string enum: - added - enterprise: *583 + enterprise: *584 installation: *37 - organization: *585 - repositories_added: &605 + organization: *586 + repositories_added: &606 description: An array of repository objects, which were added to the installation. type: array @@ -109658,15 +109741,15 @@ webhooks: private: description: Whether the repository is private or public. type: boolean - repository: *586 - repository_selection: &606 + repository: *587 + repository_selection: &607 description: Describe whether all repositories have been selected or there's a selection involved type: string enum: - all - selected - requester: *603 + requester: *604 sender: *17 required: - action @@ -109755,10 +109838,10 @@ webhooks: type: string enum: - removed - enterprise: *583 + enterprise: *584 installation: *37 - organization: *585 - repositories_added: *605 + organization: *586 + repositories_added: *606 repositories_removed: description: An array of repository objects, which were removed from the installation. @@ -109785,9 +109868,9 @@ webhooks: - name - full_name - private - repository: *586 - repository_selection: *606 - requester: *603 + repository: *587 + repository_selection: *607 + requester: *604 sender: *17 required: - action @@ -109876,11 +109959,11 @@ webhooks: type: string enum: - suspend - enterprise: *583 + enterprise: *584 installation: *37 - organization: *585 - repositories: *604 - repository: *586 + organization: *586 + repositories: *605 + repository: *587 requester: type: - 'null' @@ -110073,10 +110156,10 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 target_type: type: string @@ -110165,11 +110248,11 @@ webhooks: type: string enum: - unsuspend - enterprise: *583 + enterprise: *584 installation: *37 - organization: *585 - repositories: *604 - repository: *586 + organization: *586 + repositories: *605 + repository: *587 requester: type: - 'null' @@ -110427,8 +110510,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -111275,6 +111358,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -111618,8 +111702,8 @@ webhooks: - state - locked - assignee - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -111709,7 +111793,7 @@ webhooks: type: string enum: - deleted - comment: &607 + comment: &608 title: issue comment description: The [comment](https://docs.github.com/enterprise-server@3.12/rest/issues/comments#get-an-issue-comment) itself. @@ -111876,8 +111960,8 @@ webhooks: - performed_via_github_app - body - reactions - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -112720,6 +112804,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -113065,8 +113150,8 @@ webhooks: - state - locked - assignee - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -113156,7 +113241,7 @@ webhooks: type: string enum: - edited - changes: &626 + changes: &627 description: The changes to the comment. type: object properties: @@ -113168,9 +113253,9 @@ webhooks: type: string required: - from - comment: *607 - enterprise: *583 - installation: *584 + comment: *608 + enterprise: *584 + installation: *585 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) the comment belongs to. @@ -114016,6 +114101,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -114359,8 +114445,8 @@ webhooks: - state - locked - assignee - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -114452,10 +114538,10 @@ webhooks: type: string enum: - assigned - assignee: *603 - enterprise: *583 - installation: *584 - issue: &610 + assignee: *604 + enterprise: *584 + installation: *585 + issue: &611 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -115297,6 +115383,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -115399,8 +115486,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -115490,8 +115577,8 @@ webhooks: type: string enum: - closed - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -116338,6 +116425,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -116583,8 +116671,8 @@ webhooks: required: - state - closed_at - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -116673,8 +116761,8 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -117510,6 +117598,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -117611,8 +117700,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -117701,8 +117790,8 @@ webhooks: type: string enum: - demilestoned - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -118563,6 +118652,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -118643,7 +118733,7 @@ webhooks: format: uri user_view_type: type: string - milestone: &608 + milestone: &609 title: Milestone description: A collection of related issues and pull requests. type: object @@ -118786,8 +118876,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -118896,8 +118986,8 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -119736,6 +119826,7 @@ webhooks: timeline_url: type: string format: uri + type: *541 title: description: Title of the issue type: string @@ -119841,9 +119932,9 @@ webhooks: - active_lock_reason - body - reactions - label: *602 - organization: *585 - repository: *586 + label: *603 + organization: *586 + repository: *587 sender: *17 required: - action @@ -119933,8 +120024,8 @@ webhooks: type: string enum: - labeled - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -120772,6 +120863,7 @@ webhooks: timeline_url: type: string format: uri + type: *541 title: description: Title of the issue type: string @@ -120877,9 +120969,9 @@ webhooks: - active_lock_reason - body - reactions - label: *602 - organization: *585 - repository: *586 + label: *603 + organization: *586 + repository: *587 sender: *17 required: - action @@ -120969,8 +121061,8 @@ webhooks: type: string enum: - locked - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -121833,6 +121925,7 @@ webhooks: timeline_url: type: string format: uri + type: *541 title: description: Title of the issue type: string @@ -121915,8 +122008,8 @@ webhooks: format: uri user_view_type: type: string - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -122005,8 +122098,8 @@ webhooks: type: string enum: - milestoned - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -122866,6 +122959,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -122945,9 +123039,9 @@ webhooks: format: uri user_view_type: type: string - milestone: *608 - organization: *585 - repository: *586 + milestone: *609 + organization: *586 + repository: *587 sender: *17 required: - action @@ -124451,8 +124545,8 @@ webhooks: required: - old_issue - old_repository - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -125294,6 +125388,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -125395,8 +125490,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -125486,9 +125581,9 @@ webhooks: type: string enum: - pinned - enterprise: *583 - installation: *584 - issue: &609 + enterprise: *584 + installation: *585 + issue: &610 title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) itself. @@ -126324,6 +126419,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -126425,8 +126521,8 @@ webhooks: - active_lock_reason - body - reactions - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -126515,8 +126611,8 @@ webhooks: type: string enum: - reopened - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -127460,8 +127556,9 @@ webhooks: format: uri user_view_type: type: string - organization: *585 - repository: *586 + type: *541 + organization: *586 + repository: *587 sender: *17 required: - action @@ -128390,6 +128487,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -128965,11 +129063,11 @@ webhooks: required: - new_issue - new_repository - enterprise: *583 - installation: *584 - issue: *609 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + issue: *610 + organization: *586 + repository: *587 sender: *17 required: - action @@ -129060,7 +129158,7 @@ webhooks: type: string enum: - unassigned - assignee: &629 + assignee: &630 title: User type: - object @@ -129132,11 +129230,11 @@ webhooks: required: - login - id - enterprise: *583 - installation: *584 - issue: *610 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + issue: *611 + organization: *586 + repository: *587 sender: *17 required: - action @@ -129225,12 +129323,12 @@ webhooks: type: string enum: - unlabeled - enterprise: *583 - installation: *584 - issue: *610 - label: *602 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + issue: *611 + label: *603 + organization: *586 + repository: *587 sender: *17 required: - action @@ -129320,8 +129418,8 @@ webhooks: type: string enum: - unlocked - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 issue: title: Issue description: The [issue](https://docs.github.com/enterprise-server@3.12/rest/issues/issues#get-an-issue) @@ -130185,6 +130283,7 @@ webhooks: title: description: Title of the issue type: string + type: *541 updated_at: type: string format: date-time @@ -130264,8 +130363,8 @@ webhooks: format: uri user_view_type: type: string - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -130355,11 +130454,11 @@ webhooks: type: string enum: - unpinned - enterprise: *583 - installation: *584 - issue: *609 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + issue: *610 + organization: *586 + repository: *587 sender: *17 required: - action @@ -130448,11 +130547,11 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - label: *602 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + label: *603 + organization: *586 + repository: *587 sender: *17 required: - action @@ -130540,11 +130639,11 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - label: *602 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + label: *603 + organization: *586 + repository: *587 sender: *17 required: - action @@ -130664,11 +130763,11 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - label: *602 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + label: *603 + organization: *586 + repository: *587 sender: *17 required: - action @@ -130769,11 +130868,11 @@ webhooks: - read required: - to - enterprise: *583 - installation: *584 - member: *603 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + member: *604 + organization: *586 + repository: *587 sender: *17 required: - action @@ -130885,11 +130984,11 @@ webhooks: type: - string - 'null' - enterprise: *583 - installation: *584 - member: *603 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + member: *604 + organization: *586 + repository: *587 sender: *17 required: - action @@ -130978,11 +131077,11 @@ webhooks: type: string enum: - removed - enterprise: *583 - installation: *584 - member: *603 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + member: *604 + organization: *586 + repository: *587 sender: *17 required: - action @@ -131070,11 +131169,11 @@ webhooks: type: string enum: - added - enterprise: *583 - installation: *584 - member: *603 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + member: *604 + organization: *586 + repository: *587 scope: description: The scope of the membership. Currently, can only be `team`. @@ -131152,7 +131251,7 @@ webhooks: required: - login - id - team: &611 + team: &612 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -131355,11 +131454,11 @@ webhooks: type: string enum: - removed - enterprise: *583 - installation: *584 - member: *603 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + member: *604 + organization: *586 + repository: *587 scope: description: The scope of the membership. Currently, can only be `team`. @@ -131438,7 +131537,7 @@ webhooks: required: - login - id - team: *611 + team: *612 required: - action - scope @@ -131526,7 +131625,7 @@ webhooks: type: string enum: - deleted - enterprise: *583 + enterprise: *584 hook: description: 'The modified webhook. This will contain different keys based on the type of webhook it is: repository, organization, @@ -131634,12 +131733,12 @@ webhooks: hook_id: description: The id of the modified webhook. type: integer - installation: *584 - organization: *585 + installation: *585 + organization: *586 repository: anyOf: - type: 'null' - - *586 + - *587 sender: *17 required: - action @@ -131729,11 +131828,11 @@ webhooks: type: string enum: - closed - enterprise: *583 - installation: *584 - milestone: *608 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + milestone: *609 + organization: *586 + repository: *587 sender: *17 required: - action @@ -131822,9 +131921,9 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - milestone: &612 + enterprise: *584 + installation: *585 + milestone: &613 title: Milestone description: A collection of related issues and pull requests. type: object @@ -131966,8 +132065,8 @@ webhooks: - updated_at - due_on - closed_at - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -132056,11 +132155,11 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - milestone: *608 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + milestone: *609 + organization: *586 + repository: *587 sender: *17 required: - action @@ -132180,11 +132279,11 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - milestone: *608 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + milestone: *609 + organization: *586 + repository: *587 sender: *17 required: - action @@ -132274,11 +132373,11 @@ webhooks: type: string enum: - opened - enterprise: *583 - installation: *584 - milestone: *612 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + milestone: *613 + organization: *586 + repository: *587 sender: *17 required: - action @@ -132367,9 +132466,9 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - membership: &613 + enterprise: *584 + installation: *585 + membership: &614 title: Membership description: The membership between the user and the organization. Not present when the action is `member_invited`. @@ -132463,8 +132562,8 @@ webhooks: - role - organization_url - user - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 required: - action @@ -132552,11 +132651,11 @@ webhooks: type: string enum: - member_added - enterprise: *583 - installation: *584 - membership: *613 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + membership: *614 + organization: *586 + repository: *587 sender: *17 required: - action @@ -132645,8 +132744,8 @@ webhooks: type: string enum: - member_invited - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 invitation: description: The invitation for the user or email if the action is `member_invited`. @@ -132768,10 +132867,10 @@ webhooks: - inviter - team_count - invitation_teams_url - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 - user: *603 + user: *604 required: - action - invitation @@ -132859,11 +132958,11 @@ webhooks: type: string enum: - member_removed - enterprise: *583 - installation: *584 - membership: *613 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + membership: *614 + organization: *586 + repository: *587 sender: *17 required: - action @@ -132960,11 +133059,11 @@ webhooks: properties: from: type: string - enterprise: *583 - installation: *584 - membership: *613 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + membership: *614 + organization: *586 + repository: *587 sender: *17 required: - action @@ -133050,9 +133149,9 @@ webhooks: type: string enum: - published - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 package: description: Information about the package. type: object @@ -133575,7 +133674,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: &614 + items: &615 title: Ruby Gems metadata type: object properties: @@ -133672,7 +133771,7 @@ webhooks: - owner - package_version - registry - repository: *586 + repository: *587 sender: *17 required: - action @@ -133758,9 +133857,9 @@ webhooks: type: string enum: - updated - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 package: description: Information about the package. type: object @@ -134122,7 +134221,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *614 + items: *615 source_url: type: string format: uri @@ -134193,7 +134292,7 @@ webhooks: - owner - package_version - registry - repository: *586 + repository: *587 sender: *17 required: - action @@ -134384,12 +134483,12 @@ webhooks: - duration - created_at - updated_at - enterprise: *583 + enterprise: *584 id: type: integer - installation: *584 - organization: *585 - repository: *586 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - id @@ -134469,7 +134568,7 @@ webhooks: type: string enum: - approved - personal_access_token_request: &615 + personal_access_token_request: &616 title: Personal Access Token Request description: Details of a Personal Access Token Request. type: object @@ -134619,10 +134718,10 @@ webhooks: - token_expired - token_expires_at - token_last_used_at - enterprise: *583 - organization: *585 + enterprise: *584 + organization: *586 sender: *17 - installation: *584 + installation: *585 required: - action - personal_access_token_request @@ -134701,11 +134800,11 @@ webhooks: type: string enum: - cancelled - personal_access_token_request: *615 - enterprise: *583 - organization: *585 + personal_access_token_request: *616 + enterprise: *584 + organization: *586 sender: *17 - installation: *584 + installation: *585 required: - action - personal_access_token_request @@ -134783,11 +134882,11 @@ webhooks: type: string enum: - created - personal_access_token_request: *615 - enterprise: *583 - organization: *585 + personal_access_token_request: *616 + enterprise: *584 + organization: *586 sender: *17 - installation: *584 + installation: *585 required: - action - personal_access_token_request @@ -134864,11 +134963,11 @@ webhooks: type: string enum: - denied - personal_access_token_request: *615 - organization: *585 - enterprise: *583 + personal_access_token_request: *616 + organization: *586 + enterprise: *584 sender: *17 - installation: *584 + installation: *585 required: - action - personal_access_token_request @@ -134982,7 +135081,7 @@ webhooks: id: description: Unique identifier of the webhook. type: integer - last_response: *616 + last_response: *617 name: description: The type of webhook. The only valid value is 'web'. type: string @@ -135014,8 +135113,8 @@ webhooks: hook_id: description: The ID of the webhook that triggered the ping. type: integer - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 zen: description: Random string of GitHub zen. @@ -135270,10 +135369,10 @@ webhooks: - from required: - note - enterprise: *583 - installation: *584 - organization: *585 - project_card: &617 + enterprise: *584 + installation: *585 + organization: *586 + project_card: &618 title: Project Card type: object properties: @@ -135396,7 +135495,7 @@ webhooks: - creator - created_at - updated_at - repository: *586 + repository: *587 sender: *17 required: - action @@ -135487,11 +135586,11 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - project_card: *617 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + project_card: *618 + repository: *587 sender: *17 required: - action @@ -135581,9 +135680,9 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 project_card: title: Project Card type: object @@ -135713,7 +135812,7 @@ webhooks: repository: anyOf: - type: 'null' - - *586 + - *587 sender: *17 required: - action @@ -135817,11 +135916,11 @@ webhooks: - from required: - note - enterprise: *583 - installation: *584 - organization: *585 - project_card: *617 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + project_card: *618 + repository: *587 sender: *17 required: - action @@ -135925,9 +136024,9 @@ webhooks: - from required: - column_id - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 project_card: allOf: - title: Project Card @@ -136124,7 +136223,7 @@ webhooks: type: string required: - after_id - repository: *586 + repository: *587 sender: *17 required: - action @@ -136214,10 +136313,10 @@ webhooks: type: string enum: - closed - enterprise: *583 - installation: *584 - organization: *585 - project: &619 + enterprise: *584 + installation: *585 + organization: *586 + project: &620 title: Project type: object properties: @@ -136344,7 +136443,7 @@ webhooks: - creator - created_at - updated_at - repository: *586 + repository: *587 sender: *17 required: - action @@ -136434,10 +136533,10 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - project_column: &618 + enterprise: *584 + installation: *585 + organization: *586 + project_column: &619 title: Project Column type: object properties: @@ -136477,7 +136576,7 @@ webhooks: - name - created_at - updated_at - repository: *586 + repository: *587 sender: *17 required: - action @@ -136566,14 +136665,14 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - project_column: *618 + enterprise: *584 + installation: *585 + organization: *586 + project_column: *619 repository: anyOf: - type: 'null' - - *586 + - *587 sender: *17 required: - action @@ -136672,11 +136771,11 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - organization: *585 - project_column: *618 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + project_column: *619 + repository: *587 sender: *17 required: - action @@ -136766,11 +136865,11 @@ webhooks: type: string enum: - moved - enterprise: *583 - installation: *584 - organization: *585 - project_column: *618 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + project_column: *619 + repository: *587 sender: *17 required: - action @@ -136860,11 +136959,11 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - project: *619 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + project: *620 + repository: *587 sender: *17 required: - action @@ -136954,14 +137053,14 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - project: *619 + enterprise: *584 + installation: *585 + organization: *586 + project: *620 repository: anyOf: - type: 'null' - - *586 + - *587 sender: *17 required: - action @@ -137072,11 +137171,11 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - organization: *585 - project: *619 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + project: *620 + repository: *587 sender: *17 required: - action @@ -137165,11 +137264,11 @@ webhooks: type: string enum: - reopened - enterprise: *583 - installation: *584 - organization: *585 - project: *619 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + project: *620 + repository: *587 sender: *17 required: - action @@ -137260,9 +137359,9 @@ webhooks: type: string enum: - closed - installation: *584 - organization: *585 - projects_v2: &620 + installation: *585 + organization: *586 + projects_v2: &621 title: Projects v2 Project description: A projects v2 project type: object @@ -137420,9 +137519,9 @@ webhooks: type: string enum: - created - installation: *584 - organization: *585 - projects_v2: *620 + installation: *585 + organization: *586 + projects_v2: *621 sender: *17 required: - action @@ -137513,9 +137612,9 @@ webhooks: type: string enum: - deleted - installation: *584 - organization: *585 - projects_v2: *620 + installation: *585 + organization: *586 + projects_v2: *621 sender: *17 required: - action @@ -137646,9 +137745,9 @@ webhooks: type: string to: type: string - installation: *584 - organization: *585 - projects_v2: *620 + installation: *585 + organization: *586 + projects_v2: *621 sender: *17 required: - action @@ -137741,7 +137840,7 @@ webhooks: type: string enum: - archived - changes: &622 + changes: &623 type: object properties: archived_at: @@ -137757,9 +137856,9 @@ webhooks: - string - 'null' format: date-time - installation: *584 - organization: *585 - projects_v2_item: &621 + installation: *585 + organization: *586 + projects_v2_item: &622 title: Projects v2 Item description: An item belonging to a project type: object @@ -137908,9 +138007,9 @@ webhooks: - 'null' to: type: string - installation: *584 - organization: *585 - projects_v2_item: *621 + installation: *585 + organization: *586 + projects_v2_item: *622 sender: *17 required: - action @@ -138002,9 +138101,9 @@ webhooks: type: string enum: - created - installation: *584 - organization: *585 - projects_v2_item: *621 + installation: *585 + organization: *586 + projects_v2_item: *622 sender: *17 required: - action @@ -138095,9 +138194,9 @@ webhooks: type: string enum: - deleted - installation: *584 - organization: *585 - projects_v2_item: *621 + installation: *585 + organization: *586 + projects_v2_item: *622 sender: *17 required: - action @@ -138221,9 +138320,9 @@ webhooks: - 'null' required: - body - installation: *584 - organization: *585 - projects_v2_item: *621 + installation: *585 + organization: *586 + projects_v2_item: *622 sender: *17 required: - action @@ -138330,9 +138429,9 @@ webhooks: type: - string - 'null' - installation: *584 - organization: *585 - projects_v2_item: *621 + installation: *585 + organization: *586 + projects_v2_item: *622 sender: *17 required: - action @@ -138425,10 +138524,10 @@ webhooks: type: string enum: - restored - changes: *622 - installation: *584 - organization: *585 - projects_v2_item: *621 + changes: *623 + installation: *585 + organization: *586 + projects_v2_item: *622 sender: *17 required: - action @@ -138520,9 +138619,9 @@ webhooks: type: string enum: - reopened - installation: *584 - organization: *585 - projects_v2: *620 + installation: *585 + organization: *586 + projects_v2: *621 sender: *17 required: - action @@ -138603,10 +138702,10 @@ webhooks: title: public event type: object properties: - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - repository @@ -138693,13 +138792,13 @@ webhooks: type: string enum: - assigned - assignee: *603 - enterprise: *583 - installation: *584 - number: &623 + assignee: *604 + enterprise: *584 + installation: *585 + number: &624 description: The pull request number. type: integer - organization: *585 + organization: *586 pull_request: title: Pull Request type: object @@ -141048,7 +141147,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -141140,11 +141239,11 @@ webhooks: type: string enum: - auto_merge_disabled - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 number: type: integer - organization: *585 + organization: *586 pull_request: title: Pull Request type: object @@ -143486,7 +143585,7 @@ webhooks: - draft reason: type: string - repository: *586 + repository: *587 sender: *17 required: - action @@ -143578,11 +143677,11 @@ webhooks: type: string enum: - auto_merge_enabled - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 number: type: integer - organization: *585 + organization: *586 pull_request: title: Pull Request type: object @@ -145924,7 +146023,7 @@ webhooks: - draft reason: type: string - repository: *586 + repository: *587 sender: *17 required: - action @@ -146016,11 +146115,11 @@ webhooks: type: string enum: - closed - enterprise: *583 - installation: *584 - number: *623 - organization: *585 - pull_request: &624 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 + pull_request: &625 allOf: - *460 - type: object @@ -146084,7 +146183,7 @@ webhooks: Please use `squash_merge_commit_title` instead.** type: boolean default: false - repository: *586 + repository: *587 sender: *17 required: - action @@ -146175,12 +146274,12 @@ webhooks: type: string enum: - converted_to_draft - enterprise: *583 - installation: *584 - number: *623 - organization: *585 - pull_request: *624 - repository: *586 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 + pull_request: *625 + repository: *587 sender: *17 required: - action @@ -146270,11 +146369,11 @@ webhooks: type: string enum: - demilestoned - enterprise: *583 + enterprise: *584 milestone: *366 - number: *623 - organization: *585 - pull_request: &625 + number: *624 + organization: *586 + pull_request: &626 title: Pull Request type: object properties: @@ -148601,7 +148700,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -148733,12 +148832,12 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - number: *623 - organization: *585 - pull_request: *624 - repository: *586 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 + pull_request: *625 + repository: *587 sender: *17 required: - action @@ -148828,11 +148927,11 @@ webhooks: type: string enum: - labeled - enterprise: *583 - installation: *584 - label: *602 - number: *623 - organization: *585 + enterprise: *584 + installation: *585 + label: *603 + number: *624 + organization: *586 pull_request: title: Pull Request type: object @@ -151180,7 +151279,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -151271,10 +151370,10 @@ webhooks: type: string enum: - locked - enterprise: *583 - installation: *584 - number: *623 - organization: *585 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 pull_request: title: Pull Request type: object @@ -153620,7 +153719,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -153710,12 +153809,12 @@ webhooks: type: string enum: - milestoned - enterprise: *583 + enterprise: *584 milestone: *366 - number: *623 - organization: *585 - pull_request: *625 - repository: *586 + number: *624 + organization: *586 + pull_request: *626 + repository: *587 sender: *17 required: - action @@ -153804,12 +153903,12 @@ webhooks: type: string enum: - opened - enterprise: *583 - installation: *584 - number: *623 - organization: *585 - pull_request: *624 - repository: *586 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 + pull_request: *625 + repository: *587 sender: *17 required: - action @@ -153900,12 +153999,12 @@ webhooks: type: string enum: - ready_for_review - enterprise: *583 - installation: *584 - number: *623 - organization: *585 - pull_request: *624 - repository: *586 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 + pull_request: *625 + repository: *587 sender: *17 required: - action @@ -153995,12 +154094,12 @@ webhooks: type: string enum: - reopened - enterprise: *583 - installation: *584 - number: *623 - organization: *585 - pull_request: *624 - repository: *586 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 + pull_request: *625 + repository: *587 sender: *17 required: - action @@ -154385,9 +154484,9 @@ webhooks: - start_side - side - reactions - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pull_request: type: object properties: @@ -156617,7 +156716,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *586 + repository: *587 sender: *17 required: - action @@ -156707,7 +156806,7 @@ webhooks: type: string enum: - deleted - comment: &627 + comment: &628 title: Pull Request Review Comment description: The [comment](https://docs.github.com/enterprise-server@3.12/rest/pulls/comments#get-a-review-comment-for-a-pull-request) itself. @@ -157000,9 +157099,9 @@ webhooks: - start_side - side - reactions - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pull_request: type: object properties: @@ -159220,7 +159319,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *586 + repository: *587 sender: *17 required: - action @@ -159310,11 +159409,11 @@ webhooks: type: string enum: - edited - changes: *626 - comment: *627 - enterprise: *583 - installation: *584 - organization: *585 + changes: *627 + comment: *628 + enterprise: *584 + installation: *585 + organization: *586 pull_request: type: object properties: @@ -161535,7 +161634,7 @@ webhooks: - _links - author_association - active_lock_reason - repository: *586 + repository: *587 sender: *17 required: - action @@ -161626,9 +161725,9 @@ webhooks: type: string enum: - dismissed - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pull_request: title: Simple Pull Request type: object @@ -163861,7 +163960,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *586 + repository: *587 review: description: The review that was affected. type: object @@ -164117,9 +164216,9 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pull_request: title: Simple Pull Request type: object @@ -166233,8 +166332,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *586 - review: &628 + repository: *587 + review: &629 description: The review that was affected. type: object properties: @@ -166477,12 +166576,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 number: description: The pull request number. type: integer - organization: *585 + organization: *586 pull_request: title: Pull Request type: object @@ -168829,7 +168928,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 requested_reviewer: title: User type: @@ -168915,12 +169014,12 @@ webhooks: type: string enum: - review_request_removed - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 number: description: The pull request number. type: integer - organization: *585 + organization: *586 pull_request: title: Pull Request type: object @@ -171274,7 +171373,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 requested_team: title: Team description: Groups of organization members that gives permissions @@ -171479,12 +171578,12 @@ webhooks: type: string enum: - review_requested - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 number: description: The pull request number. type: integer - organization: *585 + organization: *586 pull_request: title: Pull Request type: object @@ -173833,7 +173932,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 requested_reviewer: title: User type: @@ -173920,12 +174019,12 @@ webhooks: type: string enum: - review_requested - enterprise: *583 - installation: *584 + enterprise: *584 + installation: *585 number: description: The pull request number. type: integer - organization: *585 + organization: *586 pull_request: title: Pull Request type: object @@ -176265,7 +176364,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 requested_team: title: Team description: Groups of organization members that gives permissions @@ -176459,9 +176558,9 @@ webhooks: type: string enum: - submitted - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pull_request: title: Simple Pull Request type: object @@ -178697,8 +178796,8 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *586 - review: *628 + repository: *587 + review: *629 sender: *17 required: - action @@ -178788,9 +178887,9 @@ webhooks: type: string enum: - resolved - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pull_request: title: Simple Pull Request type: object @@ -180921,7 +181020,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *586 + repository: *587 sender: *17 thread: type: object @@ -181323,9 +181422,9 @@ webhooks: type: string enum: - unresolved - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 pull_request: title: Simple Pull Request type: object @@ -183439,7 +183538,7 @@ webhooks: - author_association - auto_merge - active_lock_reason - repository: *586 + repository: *587 sender: *17 thread: type: object @@ -183843,10 +183942,10 @@ webhooks: type: string before: type: string - enterprise: *583 - installation: *584 - number: *623 - organization: *585 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 pull_request: title: Pull Request type: object @@ -186181,7 +186280,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -186273,11 +186372,11 @@ webhooks: type: string enum: - unassigned - assignee: *629 - enterprise: *583 - installation: *584 - number: *623 - organization: *585 + assignee: *630 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 pull_request: title: Pull Request type: object @@ -188627,7 +188726,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -188716,11 +188815,11 @@ webhooks: type: string enum: - unlabeled - enterprise: *583 - installation: *584 - label: *602 - number: *623 - organization: *585 + enterprise: *584 + installation: *585 + label: *603 + number: *624 + organization: *586 pull_request: title: Pull Request type: object @@ -191059,7 +191158,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -191150,10 +191249,10 @@ webhooks: type: string enum: - unlocked - enterprise: *583 - installation: *584 - number: *623 - organization: *585 + enterprise: *584 + installation: *585 + number: *624 + organization: *586 pull_request: title: Pull Request type: object @@ -193482,7 +193581,7 @@ webhooks: - auto_merge - active_lock_reason - draft - repository: *586 + repository: *587 sender: *17 required: - action @@ -193695,7 +193794,7 @@ webhooks: deleted: description: Whether this push deleted the `ref`. type: boolean - enterprise: *583 + enterprise: *584 forced: description: Whether this push was a force push of the `ref`. type: boolean @@ -193790,8 +193889,8 @@ webhooks: - url - author - committer - installation: *584 - organization: *585 + installation: *585 + organization: *586 pusher: title: Committer description: Metaproperties for Git author/committer information. @@ -194383,9 +194482,9 @@ webhooks: type: string enum: - published - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 registry_package: type: object properties: @@ -194862,7 +194961,7 @@ webhooks: type: string rubygems_metadata: type: array - items: *614 + items: *615 summary: type: string tag_name: @@ -194918,7 +195017,7 @@ webhooks: - owner - package_version - registry - repository: *586 + repository: *587 sender: *17 required: - action @@ -195006,9 +195105,9 @@ webhooks: type: string enum: - updated - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 registry_package: type: object properties: @@ -195320,7 +195419,7 @@ webhooks: - published_at rubygems_metadata: type: array - items: *614 + items: *615 summary: type: string tag_name: @@ -195370,7 +195469,7 @@ webhooks: - owner - package_version - registry - repository: *586 + repository: *587 sender: *17 required: - action @@ -195457,10 +195556,10 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - release: &630 + enterprise: *584 + installation: *585 + organization: *586 + release: &631 title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) object. @@ -195776,7 +195875,7 @@ webhooks: - tarball_url - zipball_url - body - repository: *586 + repository: *587 sender: *17 required: - action @@ -195863,11 +195962,11 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - release: *630 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + release: *631 + repository: *587 sender: *17 required: - action @@ -195994,11 +196093,11 @@ webhooks: type: boolean required: - to - enterprise: *583 - installation: *584 - organization: *585 - release: *630 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + release: *631 + repository: *587 sender: *17 required: - action @@ -196086,9 +196185,9 @@ webhooks: type: string enum: - prereleased - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 release: title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) @@ -196409,7 +196508,7 @@ webhooks: - string - 'null' format: uri - repository: *586 + repository: *587 sender: *17 required: - action @@ -196495,10 +196594,10 @@ webhooks: type: string enum: - published - enterprise: *583 - installation: *584 - organization: *585 - release: &631 + enterprise: *584 + installation: *585 + organization: *586 + release: &632 title: Release description: The [release](https://docs.github.com/enterprise-server@3.12/rest/releases/releases/#get-a-release) object. @@ -196816,7 +196915,7 @@ webhooks: - string - 'null' format: uri - repository: *586 + repository: *587 sender: *17 required: - action @@ -196902,11 +197001,11 @@ webhooks: type: string enum: - released - enterprise: *583 - installation: *584 - organization: *585 - release: *630 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + release: *631 + repository: *587 sender: *17 required: - action @@ -196992,11 +197091,11 @@ webhooks: type: string enum: - unpublished - enterprise: *583 - installation: *584 - organization: *585 - release: *631 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + release: *632 + repository: *587 sender: *17 required: - action @@ -197082,10 +197181,10 @@ webhooks: type: string enum: - anonymous_access_disabled - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197170,10 +197269,10 @@ webhooks: type: string enum: - anonymous_access_enabled - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197258,10 +197357,10 @@ webhooks: type: string enum: - archived - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197348,10 +197447,10 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197439,10 +197538,10 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197537,10 +197636,10 @@ webhooks: additionalProperties: true description: The `client_payload` that was specified in the `POST /repos/{owner}/{repo}/dispatches` request body. - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197665,10 +197764,10 @@ webhooks: - 'null' items: type: string - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197756,10 +197855,10 @@ webhooks: type: string enum: - privatized - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197846,10 +197945,10 @@ webhooks: type: string enum: - publicized - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -197953,10 +198052,10 @@ webhooks: - name required: - repository - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -198036,10 +198135,10 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 repository_ruleset: *232 sender: *17 required: @@ -198118,10 +198217,10 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 repository_ruleset: *232 sender: *17 required: @@ -198200,10 +198299,10 @@ webhooks: type: string enum: - edited - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 repository_ruleset: *232 changes: type: object @@ -198521,10 +198620,10 @@ webhooks: - from required: - owner - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -198612,10 +198711,10 @@ webhooks: type: string enum: - unarchived - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -198703,7 +198802,7 @@ webhooks: type: string enum: - create - alert: &632 + alert: &633 title: Repository Vulnerability Alert Alert description: The security alert of the vulnerable dependency. type: object @@ -198827,10 +198926,10 @@ webhooks: type: string enum: - open - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -199050,10 +199149,10 @@ webhooks: type: string enum: - dismissed - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -199141,11 +199240,11 @@ webhooks: type: string enum: - reopen - alert: *632 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + alert: *633 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -199357,10 +199456,10 @@ webhooks: enum: - fixed - open - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -199448,7 +199547,7 @@ webhooks: type: string enum: - created - alert: &633 + alert: &634 type: object properties: number: *91 @@ -199520,10 +199619,10 @@ webhooks: format: date-time description: 'The time that push protection was bypassed in ISO 8601 format: `YYYY-MM-DDTHH:MM:SSZ`.' - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -199614,11 +199713,11 @@ webhooks: type: string enum: - created - alert: *633 - installation: *584 - location: *634 - organization: *585 - repository: *586 + alert: *634 + installation: *585 + location: *635 + organization: *586 + repository: *587 sender: *17 required: - location @@ -199861,11 +199960,11 @@ webhooks: type: string enum: - reopened - alert: *633 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + alert: *634 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -199953,11 +200052,11 @@ webhooks: type: string enum: - resolved - alert: *633 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + alert: *634 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -200043,11 +200142,11 @@ webhooks: type: string enum: - published - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 - security_advisory: &635 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 + security_advisory: &636 description: The details of the security advisory, including summary, description, and severity. type: object @@ -200243,11 +200342,11 @@ webhooks: type: string enum: - updated - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 - security_advisory: *635 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 + security_advisory: *636 sender: *17 required: - action @@ -200330,10 +200429,10 @@ webhooks: type: string enum: - withdrawn - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 security_advisory: description: The details of the security advisory, including summary, description, and severity. @@ -200530,9 +200629,9 @@ webhooks: type: object properties: security_and_analysis: *226 - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 repository: *277 sender: *17 required: @@ -200621,12 +200720,12 @@ webhooks: type: string enum: - cancelled - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - sponsorship: &636 + sponsorship: &637 type: object properties: created_at: @@ -200941,12 +201040,12 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - sponsorship: *636 + sponsorship: *637 required: - action - sponsorship @@ -201044,12 +201143,12 @@ webhooks: type: string required: - from - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - sponsorship: *636 + sponsorship: *637 required: - action - changes @@ -201136,17 +201235,17 @@ webhooks: type: string enum: - pending_cancellation - effective_date: &637 + effective_date: &638 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: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - sponsorship: *636 + sponsorship: *637 required: - action - sponsorship @@ -201230,7 +201329,7 @@ webhooks: type: string enum: - pending_tier_change - changes: &638 + changes: &639 type: object properties: tier: @@ -201274,13 +201373,13 @@ webhooks: - from required: - tier - effective_date: *637 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + effective_date: *638 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - sponsorship: *636 + sponsorship: *637 required: - action - changes @@ -201367,13 +201466,13 @@ webhooks: type: string enum: - tier_changed - changes: *638 - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + changes: *639 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - sponsorship: *636 + sponsorship: *637 required: - action - changes @@ -201457,10 +201556,10 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 starred_at: description: 'The time the star was created. This is a timestamp @@ -201554,10 +201653,10 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 starred_at: description: 'The time the star was created. This is a timestamp @@ -201996,15 +202095,15 @@ webhooks: type: - string - 'null' - enterprise: *583 + enterprise: *584 id: description: The unique identifier of the status. type: integer - installation: *584 + installation: *585 name: type: string - organization: *585 - repository: *586 + organization: *586 + repository: *587 sender: *17 sha: description: The Commit SHA. @@ -202117,12 +202216,12 @@ webhooks: title: team_add event type: object properties: - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - team: &639 + team: &640 title: Team description: Groups of organization members that gives permissions on specified repositories. @@ -202325,9 +202424,9 @@ webhooks: type: string enum: - added_to_repository - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 repository: title: Repository description: A git repository @@ -202791,7 +202890,7 @@ webhooks: - topics - visibility sender: *17 - team: *639 + team: *640 required: - action - team @@ -202877,9 +202976,9 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 repository: title: Repository description: A git repository @@ -203343,7 +203442,7 @@ webhooks: - topics - visibility sender: *17 - team: *639 + team: *640 required: - action - team @@ -203430,9 +203529,9 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 repository: title: Repository description: A git repository @@ -203896,7 +203995,7 @@ webhooks: - topics - visibility sender: *17 - team: *639 + team: *640 required: - action - team @@ -204050,9 +204149,9 @@ webhooks: - from required: - permissions - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 repository: title: Repository description: A git repository @@ -204516,7 +204615,7 @@ webhooks: - topics - visibility sender: *17 - team: *639 + team: *640 required: - action - changes @@ -204604,9 +204703,9 @@ webhooks: type: string enum: - removed_from_repository - enterprise: *583 - installation: *584 - organization: *585 + enterprise: *584 + installation: *585 + organization: *586 repository: title: Repository description: A git repository @@ -205070,7 +205169,7 @@ webhooks: - topics - visibility sender: *17 - team: *639 + team: *640 required: - action - team @@ -205153,12 +205252,12 @@ webhooks: type: string enum: - created - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - user: *603 + user: *604 required: - action responses: @@ -205236,12 +205335,12 @@ webhooks: type: string enum: - deleted - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 - user: *603 + user: *604 required: - action responses: @@ -205322,10 +205421,10 @@ webhooks: type: string enum: - started - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 sender: *17 required: - action @@ -205408,17 +205507,17 @@ webhooks: title: workflow_dispatch event type: object properties: - enterprise: *583 + enterprise: *584 inputs: type: - object - 'null' additionalProperties: true - installation: *584 - organization: *585 + installation: *585 + organization: *586 ref: type: string - repository: *586 + repository: *587 sender: *17 workflow: type: string @@ -205510,10 +205609,10 @@ webhooks: type: string enum: - completed - enterprise: *583 - installation: *584 - organization: *585 - repository: *586 + enterprise: *584 + installation: *585 + organization: *586 + repository: *587 {"code":"internal","msg":"git-diff-tree: context deadline exceeded","meta":{"cause":"*fmt.wrapError"}}